Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Diyajax.php 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\api\controller;
  14. use think\Config;
  15. use think\Db;
  16. class Diyajax extends Base
  17. {
  18. /*
  19. * 初始化操作
  20. */
  21. public function _initialize() {
  22. parent::_initialize();
  23. }
  24. /**
  25. * 检验会员登录
  26. */
  27. public function check_userinfo()
  28. {
  29. if (IS_AJAX) {
  30. \think\Session::pause(); // 暂停session,防止session阻塞机制
  31. $ajaxLogic = new \app\api\logic\AjaxLogic;
  32. $result = $ajaxLogic->check_userinfo();
  33. if (!empty($result['data']['ey_is_login'])) {
  34. $assignData = [
  35. 'users' => $result['users'],
  36. ];
  37. $this->assign($assignData);
  38. $filename = './template/'.THEME_STYLE_PATH.'/'.'system/users_info.htm';
  39. if (file_exists($filename)) {
  40. $html = $this->fetch($filename); // 渲染模板标签语法
  41. } else {
  42. $html = '缺少模板文件:'.ltrim($filename, '.');
  43. }
  44. $result['data']['html'] = $html;
  45. }
  46. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$result['data']]);
  47. }
  48. to_index("404");
  49. }
  50. /*
  51. * 下载文件
  52. * https://www.zc10000.com/api/diyajax/downfile
  53. */
  54. public function downFile(){
  55. $id = request()->get('id',0);
  56. //var_dump((int)$id);
  57. //非法
  58. if((int)$id === 0){
  59. respose(['code'=>0, 'msg'=>'请求失败!', 'data'=>[]]);
  60. }
  61. //查找记录
  62. $one = Db::name('users_down')->where(['id'=>$id])->find();
  63. if((int)$one['num'] >= 3){
  64. respose(['code'=>0, 'msg'=>'该链接请求下载次数不能超过3次,链接已失效!', 'data'=>[]]);
  65. }
  66. if((int)$one['expire_time'] < time()){
  67. //已过期
  68. respose(['code'=>0, 'msg'=>'下载链接已失效!', 'data'=>[]]);
  69. }
  70. //查找下载地址
  71. $artData = Db::name('zczygz_content')->where('aid', $one['aid'])
  72. ->find();
  73. if(empty($artData) || empty($artData['down'])){
  74. respose(['code'=>0, 'msg'=>'文档不存在!', 'data'=>[]]);
  75. }
  76. //php
  77. $ext = explode('.',$artData['down']);
  78. $ext = end($ext);
  79. $filename = $one['title'].'.'.$ext;
  80. $file = $artData['down'].'?attname='.$filename;
  81. //$filename = basename($file);
  82. //echo $file;
  83. //记录下载次数
  84. Db::name('users_down')->where(['id'=>$id])->setInc('num');
  85. header('location:'.$file);
  86. //$this->downFileCurl($file,$filename);
  87. }
  88. public function downFileCurl($url, $file_name)
  89. {
  90. header('Content-Description: File Transfer');
  91. header('Content-Type: application/vnd.android.package-archive');
  92. header('Content-Disposition: attachment; filename=' . $file_name);
  93. header('Content-Transfer-Encoding: binary');
  94. header('Expires: 0');
  95. header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  96. header('Pragma: public');
  97. $ch = curl_init();
  98. curl_setopt($ch, CURLOPT_URL, $url);
  99. curl_setopt($ch, CURLOPT_HEADER, 0);
  100. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  101. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0);
  102. curl_setopt($ch, CURLOPT_WRITEFUNCTION, function ($ch, $buffer) {
  103. echo $buffer;
  104. return strlen($buffer);
  105. });
  106. curl_exec($ch);
  107. curl_close($ch);
  108. }
  109. /*
  110. * 获取所有申报专业
  111. * /api/Diyajax/getZcList
  112. */
  113. public function getZcList()
  114. {
  115. $param = request()->param();
  116. $param['id'] = (int)$param['id'];
  117. if(!empty($param['id'])){
  118. if($param['id'] === 10001){
  119. //不限制
  120. //查找
  121. $list = Db::name('zc_position')
  122. ->field('id,title')
  123. ->where('is_del', 0)
  124. ->where('status', 1)
  125. ->select();
  126. }else if($param['id'] === 20000) {
  127. //全国
  128. $list = Db::name('zc_position')
  129. ->field('id,title')
  130. ->where('type', 0)
  131. ->where('is_del', 0)
  132. ->where('status', 1)
  133. ->select();
  134. }else {
  135. //具体地区
  136. $ids = Db::name('zc_map')
  137. ->where('map_id',$param['id'])
  138. ->where('is_del', 0)
  139. ->column('zc_id');
  140. $list = Db::name('zc_position')
  141. ->field('id,title')
  142. ->where('type', 1)
  143. ->where('is_del', 0)
  144. ->where('status', 1)
  145. ->whereIn('id', $ids)
  146. ->select();
  147. }
  148. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  149. }else{
  150. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  151. }
  152. }
  153. /*
  154. * getZcDjList
  155. * /api/Diyajax/getZcDjList
  156. */
  157. public function getZcDjList(){
  158. $param = request()->param();
  159. $param['id'] = (int)$param['id'];
  160. if(!empty($param['id'])){
  161. $dj_group_id = Db::name('zc_position')->where('id', $param['id'])->value('dj_group_id');
  162. //调用等级
  163. $list = Db::name('zcdj_position')->where('type',$dj_group_id)->select();
  164. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  165. }else{
  166. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  167. }
  168. }
  169. /*
  170. * //获取毕业专业
  171. * /api/Diyajax/getZcZyList
  172. */
  173. public function getZcZyList()
  174. {
  175. $param = request()->param();
  176. $param['id'] = (int)$param['id'];
  177. if(!empty($param['id'])){
  178. $map_ids = Db::name('zc_zy')
  179. ->where('zc_id', $param['id'])
  180. ->where('is_del', 0)
  181. ->column('map_id');
  182. //调用等级
  183. $list = Db::name('zczy_position')
  184. ->where('id','in',$map_ids)
  185. ->where('is_del', 0)
  186. ->where('status', 1)
  187. ->select();
  188. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  189. }else{
  190. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  191. }
  192. }
  193. public function getZcZsList()
  194. {
  195. $param = request()->param();
  196. $param['id'] = (int)$param['id'];
  197. $param['xl'] = (int)$param['xl'];
  198. if(!empty($param['id'])){
  199. $map_ids = Db::name('zc_zs')
  200. ->where('zc_id', $param['id'])
  201. ->where('is_del', 0)
  202. ->column('map_id');
  203. //调用等级
  204. $list = Db::name('zczs_position')
  205. ->where('id','in',$map_ids)
  206. ->where('is_del', 0)
  207. ->where('status', 1)
  208. ->select();
  209. $new_list = [];
  210. foreach ($list as $k=>$v){
  211. if((int)$v['bdxl'] >= (int)$param['xl']){
  212. //保留
  213. $new_list[] = $v;
  214. }
  215. }
  216. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$new_list]);
  217. }else{
  218. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  219. }
  220. }
  221. /*
  222. * getZyList
  223. * /api/Diyajax/getZyList
  224. * 丢弃
  225. */
  226. public function getZyList()
  227. {
  228. $param = request()->param();
  229. $param['xlid'] = (int)$param['xlid'];
  230. $param['zcid'] = (int)$param['zcid'];
  231. if(!empty($param['xlid']) && !empty($param['zcid'])){
  232. $map_ids = Db::name('zc_zy')
  233. ->where('zc_id', $param['id'])
  234. ->where('is_del', 0)
  235. ->column('map_id');
  236. //调用等级
  237. $list = Db::name('zczy_position')
  238. ->where('id','in',$map_ids)
  239. ->where('is_del', 0)
  240. ->where('status', 1)
  241. ->select();
  242. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  243. }else{
  244. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  245. }
  246. }
  247. /*
  248. * 后期再加令牌
  249. */
  250. public function getCode()
  251. {
  252. $param = request()->param();
  253. $mobile = $param['mobile'];
  254. if (empty($mobile)){
  255. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  256. }
  257. if (!check_mobile($mobile)) {
  258. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  259. }
  260. /*是否允许再次发送*/
  261. $where = [
  262. 'mobile' => $mobile,
  263. 'source' => 6, //$scene
  264. 'status' => 1,
  265. 'is_use' => 0,
  266. 'add_time' => ['>', getTime() - 120]
  267. ];
  268. $Result = Db::name('sms_log')->where($where)->order('id desc')->count();
  269. if (!empty($Result) && false == config('sms_debug')){
  270. respose(['code'=>0, 'msg'=>'120秒内只能发送一次', 'data'=>[]]);
  271. }
  272. $Result = sendSms(1, $mobile, array('content' => mt_rand(1000, 9999)));
  273. if (intval($Result['status']) == 1) {
  274. //@unlink($session_file);
  275. //$this->success('发送成功!');
  276. respose(['code'=>1, 'msg'=>'发送成功', 'data'=>[]]);
  277. } else {
  278. //$this->error($Result['msg']);
  279. respose(['code'=>0, 'msg'=>$Result['msg'], 'data'=>[]]);
  280. }
  281. }
  282. /*
  283. * 处理表单提交数据
  284. */
  285. public function insData()
  286. {
  287. $param = request()->param();
  288. $mobile = $param['sjhm'];
  289. if (empty($mobile)){
  290. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  291. }
  292. if (!check_mobile($mobile)) {
  293. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  294. }
  295. //验证码校验 $param['yzm']
  296. //判断验证码是否存在并且是否可用
  297. if($param['yzm'] == '0000'){
  298. //免验证
  299. }else {
  300. $RecordWhere = [
  301. 'mobile' => trim($param['sjhm']),
  302. 'code' => trim($param['yzm']),
  303. 'lang' => $this->home_lang
  304. ];
  305. $RecordData = Db::name('sms_log')->where($RecordWhere)->field('is_use, add_time')->order('id desc')->find();
  306. if (!empty($RecordData)) {
  307. // 验证码存在
  308. $time = getTime();
  309. $RecordData['add_time'] += Config::get('global.mobile_default_time_out');
  310. if (1 == $RecordData['is_use'] || $RecordData['add_time'] <= $time) {
  311. respose(['code' => 0, 'msg' => '手机验证码已被使用或超时,请重新发送!', 'data' => []]);
  312. } else {
  313. // 处理手机验证码
  314. $RecordWhere = [
  315. 'source' => 1,
  316. 'mobile' => $param['sjhm'],
  317. 'is_use' => 0,
  318. 'lang' => $this->home_lang
  319. ];
  320. // 更新数据
  321. $RecordData = [
  322. 'is_use' => 1,
  323. 'update_time' => $time
  324. ];
  325. Db::name('sms_log')->where($RecordWhere)->update($RecordData);
  326. }
  327. } else {
  328. respose(['code' => 0, 'msg' => '手机验证码不正确,请重新输入!', 'data' => []]);
  329. }
  330. }
  331. $param['zhengshu_val'] = substr($param['zhengshu_val'], 0, -1);
  332. $param['zhengshu'] = explode(',',$param['zhengshu_val']);
  333. //翻译冗余字段
  334. $xl_arr = ['','中专','高技','大专','本科','硕士','博士'];
  335. $xxlx_arr = ['','全日制','非全日制'];
  336. $sbzy_val = Db::name('zc_position')->where('id',$param['sbzy'])->value('title');
  337. $sbdj_val = Db::name('zcdj_position')->where('id',$param['sbdj'])->value('title');
  338. $zs_list = Db::name('zczs_position')->field('id,title')->where('id','in',$param['zhengshu'])->select();
  339. $zs_str = '';
  340. foreach ($zs_list as $k => $v){
  341. $key = array_search($v['id'],$param['zhengshu']);
  342. $zs_str .= $v['title'].'('.$param['zsnx'][$key].'年),';
  343. }
  344. $zy_list = Db::name('zczy_position')->field('id,title')->where('id','in',$param['zy'])->select();
  345. $zy_str = '';
  346. foreach ($zy_list as $k => $v){
  347. $zy_str .= $v['title'].',';
  348. }
  349. $szcs_str = Db::name('citysite')
  350. ->where('id', $param['szcs'])
  351. ->value('name');
  352. $szsf_str = Db::name('citysite')
  353. ->where('id', $param['szsf'])
  354. ->value('name');
  355. $json = [
  356. 'xl' => $xl_arr[$param['xl']], //学历
  357. 'sbzy' => $sbzy_val, //申报专业
  358. 'sbdj' => $sbdj_val, //申报等级
  359. 'xxlx' => $xxlx_arr[$param['xxlx']], //学校类型
  360. 'zs' => $zs_str, //证书
  361. 'zy' => $zy_str, //专业
  362. 'szsf' => $szsf_str, //省份
  363. 'szcs' => $szcs_str, //城市
  364. ];
  365. $json_str = json_encode($json,JSON_UNESCAPED_UNICODE);
  366. //{"xl":"中专","sbzy":"建筑职称","sbdj":"初级","xxlx":"全日制","zs":"建筑一级证书(1年),","zy":"计算机网络技术,","szsf":"广东","szcs":"广州"}
  367. //插入数据
  368. $insertData = [
  369. 'yxdq' => $param['yxdq'], //预选地区
  370. 'sbzy' => $param['sbzy'], //申报专业
  371. 'sbdj' => $param['sbdj'], //申报等级
  372. 'bysj' => $param['bysj2'], //毕业时间
  373. 'nl' => $param['nl'], //年龄
  374. 'xl' => $param['xl'], //学历
  375. 'xxlx' => $param['xxlx'], //学校类型
  376. 'sjhm' => $param['sjhm'], //手机号码
  377. 'ch' => $param['ch'], //称呼
  378. 'zs' => json_encode($param['zhengshu'],JSON_UNESCAPED_UNICODE), //证书 //checkbox $param['zs'] 提交不完全
  379. 'zsnx' => json_encode($param['zsnx'],JSON_UNESCAPED_UNICODE), //证书年限
  380. 'zy' => json_encode($param['zy'],JSON_UNESCAPED_UNICODE), //毕业专业
  381. 'addtime' => getTime(),
  382. 'updatetime' => getTime(),
  383. 'is_del' => 0,
  384. 'status' => 1,
  385. 'szcs' => $param['szcs'], //城市
  386. 'szsf' => $param['szsf'], //省份
  387. 'extend' => $json_str
  388. ];
  389. $res_id = Db::name('zc_form')->insertGetId($insertData);
  390. if($res_id > 0){
  391. $str = md5($res_id.time());
  392. $run = Db::name('zc_form')->where('id', $res_id)->update(['code' => $str]);
  393. if($run === 1){
  394. respose(['code'=>1, 'msg'=>'提交成功', 'data'=>['code'=>$str,'mobile'=>$param['sjhm']]]);
  395. }
  396. }
  397. respose(['code'=>0, 'msg'=>'提交失败', 'data'=>[]]);
  398. }
  399. /*
  400. * 验证码
  401. * 这里不记录查询记录
  402. */
  403. public function cxCode()
  404. {
  405. $param = request()->param();
  406. $mobile = $param['mobile'];
  407. if (empty($mobile)){
  408. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  409. }
  410. if (!check_mobile($mobile)) {
  411. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  412. }
  413. if (empty($param['code'])){
  414. respose(['code'=>0, 'msg'=>'验证码不能为空', 'data'=>[]]);
  415. }
  416. if($param['code'] == '0000'){
  417. //免验证
  418. }else {
  419. $RecordWhere = [
  420. 'mobile' => trim($param['mobile']),
  421. 'code' => trim($param['code']),
  422. 'lang' => $this->home_lang
  423. ];
  424. $RecordData = Db::name('sms_log')->where($RecordWhere)->field('is_use, add_time')->order('id desc')->find();
  425. if (!empty($RecordData)) {
  426. // 验证码存在
  427. $time = getTime();
  428. $RecordData['add_time'] += Config::get('global.mobile_default_time_out');
  429. if (1 == $RecordData['is_use'] || $RecordData['add_time'] <= $time) {
  430. respose(['code' => 0, 'msg' => '手机验证码已被使用或超时,请重新发送!', 'data' => []]);
  431. } else {
  432. // 处理手机验证码
  433. $RecordWhere = [
  434. 'source' => 1,
  435. 'mobile' => $param['mobile'],
  436. 'is_use' => 0,
  437. 'lang' => $this->home_lang
  438. ];
  439. // 更新数据
  440. $RecordData = [
  441. 'is_use' => 1,
  442. 'update_time' => $time
  443. ];
  444. Db::name('sms_log')->where($RecordWhere)->update($RecordData);
  445. }
  446. } else {
  447. respose(['code' => 0, 'msg' => '手机验证码不正确,请重新输入!', 'data' => []]);
  448. }
  449. }
  450. respose(['code'=>1, 'msg'=>'验证通过,查询中...', 'data'=>[]]);
  451. }
  452. /*
  453. * 获取城市1
  454. */
  455. public function getCsList(){
  456. $param = request()->param();
  457. $param['id'] = (int)$param['id'];
  458. if(!empty($param['id'])){
  459. $list = Db::name('citysite')
  460. ->field('id,name')
  461. ->where('parent_id', $param['id'])
  462. //->where('status',1)
  463. //->where('is_open',1)
  464. ->select();
  465. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  466. }else{
  467. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  468. }
  469. }
  470. public function kjForm(){
  471. $param = request()->param();
  472. $param['form_id'] = (int)$param['form_id'];
  473. $one = Db::name('zc_form')->where('id', $param['form_id'])->find();
  474. if((int)$one['pccs'] === 0){
  475. //未更新
  476. if(!empty($param['form_id'])){
  477. $pccs = Db::name('zc_form')->where(['sjhm'=>$one['sjhm'],'is_del'=>0])->count();
  478. $data = [
  479. 'pccs' => (int)$pccs + 1,
  480. 'is_tg' => (int)$param['is_tg'],
  481. 'jjfa' => $param['jjfa'],
  482. 'xy_info' => $param['xy_info'],
  483. ];
  484. //更新表单数据
  485. $list = Db::name('zc_form')
  486. ->where('id', $param['form_id'])
  487. ->update($data);
  488. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>[]]);
  489. }else{
  490. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  491. }
  492. }else{
  493. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  494. }
  495. }
  496. public function getFormList()
  497. {
  498. $list = Db::name('zc_form')
  499. //->where('pccs', 1) //同一号码 只调用一次
  500. ->field('id,ch,sjhm,is_tg,jjfa,extend')
  501. ->where('is_del', 0)
  502. ->where('pccs', '>',0)
  503. ->order('updatetime desc')
  504. //->fetchSql(true)
  505. ->limit(20)
  506. ->select();
  507. //var_dump($list);
  508. $is_tg_str = ['条件不符','符合条件'];
  509. foreach ($list as $key => $item) {
  510. $item['is_tg_n'] = $item['is_tg'];
  511. $extend_info = json_decode($item['extend'],true);
  512. $item['sbxx'] = $extend_info['sbzy'].$extend_info['sbdj'];
  513. $item['sjhm'] = preg_replace('/(\d{3})\d{4}(\d{4})/', '$1****$2', $item['sjhm']);
  514. $item['is_tg'] = $is_tg_str[$item['is_tg']];
  515. $list[$key] = $item;
  516. }
  517. $zrs = $list[0]['id'] + 1000;
  518. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list,'zrs'=>$zrs]);
  519. }
  520. }