123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551 |
- <?php
- /**
- * 易优CMS
- * ============================================================================
- * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
- * 网站地址: http://www.eyoucms.com
- * ----------------------------------------------------------------------------
- * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
- * ============================================================================
- * Author: 小虎哥 <1105415366@qq.com>
- * Date: 2018-4-3
- */
-
- namespace app\api\controller;
-
- use think\Config;
- use think\Db;
-
- class Diyajax extends Base
- {
- /*
- * 初始化操作
- */
- public function _initialize() {
- parent::_initialize();
- }
-
- /**
- * 检验会员登录
- */
- public function check_userinfo()
- {
- if (IS_AJAX) {
- \think\Session::pause(); // 暂停session,防止session阻塞机制
- $ajaxLogic = new \app\api\logic\AjaxLogic;
- $result = $ajaxLogic->check_userinfo();
- if (!empty($result['data']['ey_is_login'])) {
- $assignData = [
- 'users' => $result['users'],
- ];
- $this->assign($assignData);
-
- $filename = './template/'.THEME_STYLE_PATH.'/'.'system/users_info.htm';
- if (file_exists($filename)) {
- $html = $this->fetch($filename); // 渲染模板标签语法
- } else {
- $html = '缺少模板文件:'.ltrim($filename, '.');
- }
- $result['data']['html'] = $html;
- }
- respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$result['data']]);
- }
- to_index("404");
- }
-
- /*
- * 下载文件
- * https://www.zc10000.com/api/diyajax/downfile
- */
- public function downFile(){
-
- $id = request()->get('id',0);
- //var_dump((int)$id);
- //非法
- if((int)$id === 0){
- respose(['code'=>0, 'msg'=>'请求失败!', 'data'=>[]]);
- }
- //查找记录
- $one = Db::name('users_down')->where(['id'=>$id])->find();
-
- if((int)$one['num'] >= 3){
- respose(['code'=>0, 'msg'=>'该链接请求下载次数不能超过3次,链接已失效!', 'data'=>[]]);
- }
-
- if((int)$one['expire_time'] < time()){
- //已过期
- respose(['code'=>0, 'msg'=>'下载链接已失效!', 'data'=>[]]);
- }
-
- //查找下载地址
- $artData = Db::name('zczygz_content')->where('aid', $one['aid'])
- ->find();
- if(empty($artData) || empty($artData['down'])){
- respose(['code'=>0, 'msg'=>'文档不存在!', 'data'=>[]]);
- }
-
- //php
- $ext = explode('.',$artData['down']);
- $ext = end($ext);
- $filename = $one['title'].'.'.$ext;
- $file = $artData['down'].'?attname='.$filename;
- //$filename = basename($file);
- //echo $file;
-
-
- //记录下载次数
- Db::name('users_down')->where(['id'=>$id])->setInc('num');
-
- header('location:'.$file);
- //$this->downFileCurl($file,$filename);
-
- }
-
- public function downFileCurl($url, $file_name)
- {
- header('Content-Description: File Transfer');
- header('Content-Type: application/vnd.android.package-archive');
- header('Content-Disposition: attachment; filename=' . $file_name);
- header('Content-Transfer-Encoding: binary');
- header('Expires: 0');
- header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
- header('Pragma: public');
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0);
- curl_setopt($ch, CURLOPT_WRITEFUNCTION, function ($ch, $buffer) {
- echo $buffer;
- return strlen($buffer);
- });
- curl_exec($ch);
- curl_close($ch);
- }
-
- /*
- * 获取所有申报专业
- * /api/Diyajax/getZcList
- */
- public function getZcList()
- {
- $param = request()->param();
- $param['id'] = (int)$param['id'];
- if(!empty($param['id'])){
- if($param['id'] === 10001){
- //不限制
- //查找
- $list = Db::name('zc_position')
- ->field('id,title')
- ->where('is_del', 0)
- ->where('status', 1)
- ->select();
- }else if($param['id'] === 20000) {
- //全国
- $list = Db::name('zc_position')
- ->field('id,title')
- ->where('type', 0)
- ->where('is_del', 0)
- ->where('status', 1)
- ->select();
- }else {
- //具体地区
- $ids = Db::name('zc_map')
- ->where('map_id',$param['id'])
- ->where('is_del', 0)
- ->column('zc_id');
- $list = Db::name('zc_position')
- ->field('id,title')
- ->where('type', 1)
- ->where('is_del', 0)
- ->where('status', 1)
- ->whereIn('id', $ids)
- ->select();
- }
- respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
- }else{
- respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
- }
- }
-
- /*
- * getZcDjList
- * /api/Diyajax/getZcDjList
- */
- public function getZcDjList(){
- $param = request()->param();
- $param['id'] = (int)$param['id'];
- if(!empty($param['id'])){
- $dj_group_id = Db::name('zc_position')->where('id', $param['id'])->value('dj_group_id');
- //调用等级
- $list = Db::name('zcdj_position')->where('type',$dj_group_id)->select();
- respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
- }else{
- respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
- }
- }
-
- /*
- * //获取毕业专业
- * /api/Diyajax/getZcZyList
- */
- public function getZcZyList()
- {
- $param = request()->param();
- $param['id'] = (int)$param['id'];
- if(!empty($param['id'])){
- $map_ids = Db::name('zc_zy')
- ->where('zc_id', $param['id'])
- ->where('is_del', 0)
- ->column('map_id');
- //调用等级
- $list = Db::name('zczy_position')
- ->where('id','in',$map_ids)
- ->where('is_del', 0)
- ->where('status', 1)
- ->select();
- respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
- }else{
- respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
- }
- }
-
- public function getZcZsList()
- {
- $param = request()->param();
- $param['id'] = (int)$param['id'];
- if(!empty($param['id'])){
- $map_ids = Db::name('zc_zs')
- ->where('zc_id', $param['id'])
- ->where('is_del', 0)
- ->column('map_id');
- //调用等级
- $list = Db::name('zczs_position')
- ->where('id','in',$map_ids)
- ->where('is_del', 0)
- ->where('status', 1)
- ->select();
- respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
- }else{
- respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
- }
- }
-
-
-
- /*
- * getZyList
- * /api/Diyajax/getZyList
- * 丢弃
- */
- public function getZyList()
- {
- $param = request()->param();
- $param['xlid'] = (int)$param['xlid'];
- $param['zcid'] = (int)$param['zcid'];
- if(!empty($param['xlid']) && !empty($param['zcid'])){
- $map_ids = Db::name('zc_zy')
- ->where('zc_id', $param['id'])
- ->where('is_del', 0)
- ->column('map_id');
- //调用等级
- $list = Db::name('zczy_position')
- ->where('id','in',$map_ids)
- ->where('is_del', 0)
- ->where('status', 1)
- ->select();
- respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
- }else{
- respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
- }
- }
-
- /*
- * 后期再加令牌
- */
- public function getCode()
- {
- $param = request()->param();
- $mobile = $param['mobile'];
- if (empty($mobile)){
- respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
- }
- if (!check_mobile($mobile)) {
- respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
- }
-
- /*是否允许再次发送*/
- $where = [
- 'mobile' => $mobile,
- 'source' => 6, //$scene
- 'status' => 1,
- 'is_use' => 0,
- 'add_time' => ['>', getTime() - 120]
- ];
- $Result = Db::name('sms_log')->where($where)->order('id desc')->count();
- if (!empty($Result) && false == config('sms_debug')){
- respose(['code'=>0, 'msg'=>'120秒内只能发送一次', 'data'=>[]]);
- }
-
- $Result = sendSms(1, $mobile, array('content' => mt_rand(1000, 9999)));
- if (intval($Result['status']) == 1) {
- //@unlink($session_file);
- //$this->success('发送成功!');
- respose(['code'=>1, 'msg'=>'发送成功', 'data'=>[]]);
- } else {
- //$this->error($Result['msg']);
- respose(['code'=>0, 'msg'=>$Result['msg'], 'data'=>[]]);
- }
- }
-
- /*
- * 处理表单提交数据
- */
- public function insData()
- {
- $param = request()->param();
-
- $mobile = $param['sjhm'];
- if (empty($mobile)){
- respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
- }
- if (!check_mobile($mobile)) {
- respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
- }
-
- //验证码校验 $param['yzm']
- //判断验证码是否存在并且是否可用
- if($param['yzm'] == '0000'){
- //免验证
- }else {
- $RecordWhere = [
- 'mobile' => trim($param['sjhm']),
- 'code' => trim($param['yzm']),
- 'lang' => $this->home_lang
- ];
- $RecordData = Db::name('sms_log')->where($RecordWhere)->field('is_use, add_time')->order('id desc')->find();
- if (!empty($RecordData)) {
- // 验证码存在
- $time = getTime();
- $RecordData['add_time'] += Config::get('global.mobile_default_time_out');
- if (1 == $RecordData['is_use'] || $RecordData['add_time'] <= $time) {
- respose(['code' => 0, 'msg' => '手机验证码已被使用或超时,请重新发送!', 'data' => []]);
- } else {
- // 处理手机验证码
- $RecordWhere = [
- 'source' => 1,
- 'mobile' => $param['sjhm'],
- 'is_use' => 0,
- 'lang' => $this->home_lang
- ];
- // 更新数据
- $RecordData = [
- 'is_use' => 1,
- 'update_time' => $time
- ];
- Db::name('sms_log')->where($RecordWhere)->update($RecordData);
- }
- } else {
- respose(['code' => 0, 'msg' => '手机验证码不正确,请重新输入!', 'data' => []]);
- }
- }
-
- $param['zhengshu_val'] = substr($param['zhengshu_val'], 0, -1);
- $param['zhengshu'] = explode(',',$param['zhengshu_val']);
-
-
- //翻译冗余字段
- $xl_arr = ['','中专','高技','大专','本科','硕士','博士'];
- $xxlx_arr = ['','全日制','非全日制'];
- $sbzy_val = Db::name('zc_position')->where('id',$param['sbzy'])->value('title');
- $sbdj_val = Db::name('zcdj_position')->where('id',$param['sbdj'])->value('title');
- $zs_list = Db::name('zczs_position')->field('id,title')->where('id','in',$param['zhengshu'])->select();
- $zs_str = '';
- foreach ($zs_list as $k => $v){
- $key = array_search($v['id'],$param['zhengshu']);
- $zs_str .= $v['title'].'('.$param['zsnx'][$key].'年),';
- }
- $zy_list = Db::name('zczy_position')->field('id,title')->where('id','in',$param['zy'])->select();
- $zy_str = '';
- foreach ($zy_list as $k => $v){
- $zy_str .= $v['title'].',';
- }
- $szcs_str = Db::name('citysite')
- ->where('id', $param['szcs'])
- ->value('name');
- $szsf_str = Db::name('citysite')
- ->where('id', $param['szsf'])
- ->value('name');
- $json = [
- 'xl' => $xl_arr[$param['xl']], //学历
- 'sbzy' => $sbzy_val, //申报专业
- 'sbdj' => $sbdj_val, //申报等级
- 'xxlx' => $xxlx_arr[$param['xxlx']], //学校类型
- 'zs' => $zs_str, //证书
- 'zy' => $zy_str, //专业
- 'szsf' => $szsf_str, //省份
- 'szcs' => $szcs_str, //城市
- ];
- $json_str = json_encode($json,JSON_UNESCAPED_UNICODE);
- //{"xl":"中专","sbzy":"建筑职称","sbdj":"初级","xxlx":"全日制","zs":"建筑一级证书(1年),","zy":"计算机网络技术,","szsf":"广东","szcs":"广州"}
-
- //插入数据
- $insertData = [
- 'yxdq' => $param['yxdq'], //预选地区
- 'sbzy' => $param['sbzy'], //申报专业
- 'sbdj' => $param['sbdj'], //申报等级
- 'bysj' => $param['bysj2'], //毕业时间
- 'nl' => $param['nl'], //年龄
- 'xl' => $param['xl'], //学历
- 'xxlx' => $param['xxlx'], //学校类型
- 'sjhm' => $param['sjhm'], //手机号码
- 'ch' => $param['ch'], //称呼
- 'zs' => json_encode($param['zhengshu'],JSON_UNESCAPED_UNICODE), //证书 //checkbox $param['zs'] 提交不完全
- 'zsnx' => json_encode($param['zsnx'],JSON_UNESCAPED_UNICODE), //证书年限
- 'zy' => json_encode($param['zy'],JSON_UNESCAPED_UNICODE), //毕业专业
- 'addtime' => getTime(),
- 'updatetime' => getTime(),
- 'is_del' => 0,
- 'status' => 1,
- 'szcs' => $param['szcs'], //城市
- 'szsf' => $param['szsf'], //省份
- 'extend' => $json_str
- ];
- $res_id = Db::name('zc_form')->insertGetId($insertData);
- if($res_id > 0){
- $str = md5($res_id.time());
- $run = Db::name('zc_form')->where('id', $res_id)->update(['code' => $str]);
- if($run === 1){
- respose(['code'=>1, 'msg'=>'提交成功', 'data'=>['code'=>$str,'mobile'=>$param['sjhm']]]);
- }
- }
- respose(['code'=>0, 'msg'=>'提交失败', 'data'=>[]]);
- }
-
- /*
- * 验证码
- * 这里不记录查询记录
- */
- public function cxCode()
- {
- $param = request()->param();
-
- $mobile = $param['mobile'];
- if (empty($mobile)){
- respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
- }
- if (!check_mobile($mobile)) {
- respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
- }
- if (empty($param['code'])){
- respose(['code'=>0, 'msg'=>'验证码不能为空', 'data'=>[]]);
- }
-
- if($param['code'] == '0000'){
- //免验证
- }else {
- $RecordWhere = [
- 'mobile' => trim($param['mobile']),
- 'code' => trim($param['code']),
- 'lang' => $this->home_lang
- ];
- $RecordData = Db::name('sms_log')->where($RecordWhere)->field('is_use, add_time')->order('id desc')->find();
- if (!empty($RecordData)) {
- // 验证码存在
- $time = getTime();
- $RecordData['add_time'] += Config::get('global.mobile_default_time_out');
- if (1 == $RecordData['is_use'] || $RecordData['add_time'] <= $time) {
- respose(['code' => 0, 'msg' => '手机验证码已被使用或超时,请重新发送!', 'data' => []]);
- } else {
- // 处理手机验证码
- $RecordWhere = [
- 'source' => 1,
- 'mobile' => $param['mobile'],
- 'is_use' => 0,
- 'lang' => $this->home_lang
- ];
- // 更新数据
- $RecordData = [
- 'is_use' => 1,
- 'update_time' => $time
- ];
- Db::name('sms_log')->where($RecordWhere)->update($RecordData);
- }
- } else {
- respose(['code' => 0, 'msg' => '手机验证码不正确,请重新输入!', 'data' => []]);
- }
- }
- respose(['code'=>1, 'msg'=>'验证通过,查询中...', 'data'=>[]]);
- }
-
-
- /*
- * 获取城市1
- */
- public function getCsList(){
- $param = request()->param();
- $param['id'] = (int)$param['id'];
- if(!empty($param['id'])){
- $list = Db::name('citysite')
- ->field('id,name')
- ->where('parent_id', $param['id'])
- //->where('status',1)
- //->where('is_open',1)
- ->select();
- respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
- }else{
- respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
- }
- }
-
- public function kjForm(){
- $param = request()->param();
- $param['form_id'] = (int)$param['form_id'];
- $one = Db::name('zc_form')->where('id', $param['form_id'])->find();
- if((int)$one['pccs'] === 0){
- //未更新
- if(!empty($param['form_id'])){
- $pccs = Db::name('zc_form')->where(['sjhm'=>$one['sjhm'],'is_del'=>0])->count();
- $data = [
- 'pccs' => (int)$pccs + 1,
- 'is_tg' => (int)$param['is_tg'],
- 'jjfa' => $param['jjfa'],
- 'xy_info' => $param['xy_info'],
- ];
- //更新表单数据
- $list = Db::name('zc_form')
- ->where('id', $param['form_id'])
- ->update($data);
- respose(['code'=>1, 'msg'=>'请求成功', 'data'=>[]]);
- }else{
- respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
- }
- }else{
- respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
- }
- }
-
- public function getFormList()
- {
- $list = Db::name('zc_form')
- //->where('pccs', 1) //同一号码 只调用一次
- ->field('id,ch,sjhm,is_tg,jjfa,extend')
- ->where('is_del', 0)
- ->where('pccs', '>',0)
- ->order('updatetime desc')
- //->fetchSql(true)
- ->limit(20)
- ->select();
- //var_dump($list);
- $is_tg_str = ['条件不符','符合条件'];
- foreach ($list as $key => $item) {
- $item['is_tg_n'] = $item['is_tg'];
- $extend_info = json_decode($item['extend'],true);
- $item['sbxx'] = $extend_info['sbzy'].$extend_info['sbdj'];
- $item['sjhm'] = preg_replace('/(\d{3})\d{4}(\d{4})/', '$1****$2', $item['sjhm']);
- $item['is_tg'] = $is_tg_str[$item['is_tg']];
- $list[$key] = $item;
- }
- respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
- }
- }
|