1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Ems;
- use app\common\library\Sms;
- use fast\Random;
- use think\Db;
- use think\Validate;
- /**
- * 会员接口
- */
- class User extends Api
- {
- protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third','sendPhone'];
- protected $noNeedRight = '*';
- public function _initialize()
- {
- parent::_initialize();
- }
- /**
- * 会员登录
- *
- * @param string $account 账号
- * @param string $password 密码
- */
- public function login()
- {
- $account = $this->request->request('account');
- $password = $this->request->request('password');
- if (!$account || !$password) {
- $this->error(__('Invalid parameters'));
- }
- $ret = $this->auth->login($account, $password);
- if ($ret) {
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Logged in successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 手机验证码登录
- *
- * @param string $mobile 手机号
- * @param string $captcha 验证码
- */
- public function mobilelogin()
- {
- $mobile = $this->request->request('mobile');
- $captcha = $this->request->request('captcha');
- if (!$mobile || !$captcha) {
- $this->error(__('Invalid parameters'));
- }
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- // $ret = session($mobile);
- $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find();
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- if ($ret) {
- if ($ret['number'] != $captcha) {
- $this->error('验证码不正确');
- }
- if(time()-$ret['create_time'] > 300) {
- $this->error('验证码超时');
- }
- }
- $user = \app\common\model\User::getByMobile($mobile);
- if ($user) {
- if ($user->status != '1') {
- $this->error(__('Account is locked'));
- }
- //如果已经有账号则直接登录
- $ret = $this->auth->direct($user->id);
- if ($ret) {
- Sms::flush($mobile, 'mobilelogin');
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Logged in successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- } else {
- return $this->error('暂无账此号请去注册');
- // $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []);
- }
- }
- /**
- * 注册会员
- *
- * @param string $password 密码
- * @param string $group_id 身份012
- * @param string $mobile 手机号
- * @param string $code 验证码
- */
- public function register()
- {
- $password = $this->request->request('password');
- $mobile = $this->request->request('mobile');
- $group_id = $this->request->request('group_id');
- $username = $mobile;
- $code = $this->request->request('code');
- if (!$username || !$password) {
- $this->error(__('Invalid parameters'));
- }
- if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- // $ret = session($mobile);
- $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find();
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- if ($ret) {
- if ($ret['number'] != $code) {
- $this->error('验证码不正确');
- }
- if(time()-$ret['create_time'] > 300) {
- $this->error('验证码超时');
- }
- }
- if (!$group_id) {
- $group_id = 0;
- }
- $ret = $this->auth->register($username, $password, '', $mobile, [], $group_id);
- if ($ret) {
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Sign up successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 授权登录
- * @param string $group_id 身份012
- */
- public function wechatLogin()
- {
- $data = input('post.');
- $appid = "wxe02aa578255f9184 ";
- $secret = "39ec8add0b8d4ed794e9cb330a334538";
- $js_code = $data['js_code'];
- $url = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js_code=$js_code&grant_type=authorization_code";
- $ch = curl_init(); //初始化
- curl_setopt($ch, CURLOPT_URL, $url); //设置访问的URL
- curl_setopt($ch, CURLOPT_HEADER, false); //设置不需要头信息
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);//只获取页面内容,但不输出
- $str = curl_exec($ch); //执行访问,返回结果
- curl_close($ch); //关闭curl,释放资源
- dump($str);
- $openid = json_decode($str, true);
- $data["user_openid"] = $openid["openid"];
- dump($data);
- }
- /**
- * 重置密码
- *
- * @param string $mobile 手机号
- * @param string $newpassword 新密码
- * @param string $captcha 验证码
- */
- public function resetpwd()
- {
- $mobile = $this->request->request("mobile");
- $newpassword = $this->request->request("newpassword");
- $captcha = $this->request->request("captcha");
- if (!$newpassword || !$captcha) {
- $this->error(__('Invalid parameters'));
- }
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- $user = \app\common\model\User::getByMobile($mobile);
- if (!$user) {
- $this->error(__('User not found'));
- }
- // $ret = session($mobile);
- $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find();
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- if ($ret) {
- if ($ret['number'] != $captcha) {
- $this->error('验证码不正确');
- }
- if(time()-$ret['create_time'] > 300) {
- $this->error('验证码超时');
- }
- }
- //模拟一次登录
- $this->auth->direct($user->id);
- $rets = $this->auth->changepwd($newpassword, '', true);
- if ($rets) {
- $this->success(__('Reset password successful'));
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 发送验证码
- *
- * @param string $mobile 手机号
- * @param string $type 1注册2忘记3修改密码
- */
- public function sendPhone()
- {
- $mobile = $this->request->param('mobile');
- $type = $this->request->param('type');
- if (!isset($type) || empty($type)) return $this->error('参数错误');
- if ($type == 1) {
- $issetphone = Db::name('user')->where('mobile', $mobile)->find();
- if (isset($issetphone)) return $this->error('此账号已存在');
- }
- if ($type == 3) {
- $user = $this->auth->getUser();
- $isuseourphone = Db::name('user')->where('id', $user['id'])->where('mobile', $mobile)->find();
- if (!$isuseourphone) return $this->error('请使用本账号手机号修改密码');
- }
- $number = rand(1000, 9999);
- $res = send_sms($mobile, 1, ['code' => $number]);
- if (isset($res['Message']) && $res['Message'] == "OK") {
- $data = [
- 'mobile' =>$mobile,
- 'number' =>$number,
- 'create_time' =>time(),
- ];
- Db::name('captcha')->insert($data);
- return $this->success('发送成功', $number);
- } else {
- return $this->error('发送失败');
- }
- }
- /**
- * 用户信息
- */
- public function userInfo()
- {
- $user = $this->auth->getUser();
- $data['id'] = $user['id'];
- $data['group_id'] = $user['group_id'];
- $data['level'] = $user['level'];
- $data['company'] = $user['company'];
- $data['mobile'] = $user['mobile'];
- $data['position'] = $user['position'];
- $data['shenhe_status'] = $user['shenhe_status'];
- $data['fuwu'] = $user['fuwu'];
- $data['luntan'] = $user['luntan'];
- $data['huodong'] = $user['huodong'];
- $data['avatar'] = $user['avatar']?$user['avatar']:config('site.httpurl')."/assets/img/qrcode.png";
- $domain = strstr($data['avatar'], 'http');
- if (!$domain) {
- $data['avatar'] = config('site.httpurl').$data['avatar'];
- }
- $data['username'] = $user['username'];
- $data['nickname'] = $user['nickname'];
- if ($user['group_id'] == 0 ) {
- unset($data['shenhe_status']);
- $data['zhiye'] = '个人';
- $data['wanshan_status'] = 1;
- if (empty($user['nickname']) || empty($user['position']) || empty($user['company'])) {
- $data['wanshan_status'] = 0;
- }
- $data['fensi'] = Db::name('follow')->where('be_uid',$user['id'])->count();
- $data['guanzhu'] = Db::name('follow')->where('uid',$user['id'])->count();
- if (!empty($user['company'])) {
- $data['tongshi'] = Db::name('user')->where('id','neq',$user['id'])->where('company',$user['company'])->count();
- } else {
- $data['tongshi'] = 0;
- }
- }
- if ($user['group_id'] == 1 ) {
- $data['zhiye'] = '商家';
- // $data['wanshan_status'] = 1;
- //
- // $iswansahn = Db::name('user_shangjia')->where('uid',$user['id'])->find();
- //
- // $data['shangjia_wanshang_status'] = 1;
- //
- // if (!$iswansahn) {
- // $data['shangjia_wanshang_status'] = 0;
- // }
- // if (empty($user['nickname']) || empty($user['position']) || empty($user['company']) ) {
- //
- // }
- $data['fensi'] = Db::name('follow')->where('be_uid',$user['id'])->count();
- $data['guanzhu'] = Db::name('follow')->where('uid',$user['id'])->count();
- if (!empty($user['company'])) {
- $data['tongshi'] = Db::name('user')->where('id','neq',$user['id'])->where('company',$user['company'])->count();
- } else {
- $data['tongshi'] = 0;
- }
- }
- if ($user['group_id'] == 2 ) {
- $data['zhiye'] = '企业';
- // $data['wanshan_status'] = 1;
- //
- // $iswansahn = Db::name('user_qiye')->where('uid',$user['id'])->find();
- //
- // $data['shangjia_wanshang_status'] = 1;
- //
- // if (!$iswansahn) {
- // $data['shangjia_wanshang_status'] = 0;
- // }
- //
- // if (empty($user['nickname']) || empty($user['position']) || empty($user['company'])) {
- // $data['wanshan_status'] = 0;
- // }
- $data['fensi'] = Db::name('follow')->where('be_uid',$user['id'])->count();
- $data['guanzhu'] = Db::name('follow')->where('uid',$user['id'])->count();
- if (!empty($user['company'])) {
- $data['tongshi'] = Db::name('user')->where('id','neq',$user['id'])->where('company',$user['company'])->count();
- } else {
- $data['tongshi'] = 0;
- }
- }
- return $this->success('',$data);
- }
- /**
- * 修改会员个人信息
- *
- * @param string $avatar 头像地址
- * @param string $username 用户名
- * @param string $position 职位
- * @param string $company 职位
- */
- public function profile()
- {
- $user = $this->auth->getUser();
- $username = $this->request->request('username');
- $position = $this->request->request('position');
- $company = $this->request->request('company');
- $avatar = $this->request->request('avatar');
- if ($username) {
- $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
- if ($exists) {
- $this->error(__('Username already exists'));
- }
- $user->username = $username;
- }
- $user->position = $position;
- $user->company = $company;
- $user->avatar = $avatar;
- $user->save();
- $this->success('成功');
- }
- /**
- * 公司标签
- *
- */
- public function leabel()
- {
- $data = Db::name('label')->order('sort desc')->select();
- return $this->success('',$data);
- }
- /**
- * 完善企业信息
- *
- * @ApiMethod (POST)
- * @param string $category 所属范畴
- * @param string $company_label 公司标签
- * @param string $company_address 公司地址
- * @param string $company_mobile 联系方式
- * @param string $notice 企业简介
- * @param string $fuwu_str 企业服务
- * @param string $fuwu_images 服务多图
- * @param string $wall_images 照片墙
- * @param string $license_image 营业执照
- */
- public function qiye()
- {
- $data = $this->request->post();
- if (!isset($data['category']) || empty($data['category'])) return $this->error('参数错误101');
- if (!isset($data['company_label']) || empty($data['company_label'])) return $this->error('参数错误102');
- if (!isset($data['company_address']) || empty($data['company_address'])) return $this->error('参数错误103');
- if (!isset($data['company_mobile']) || empty($data['company_mobile'])) return $this->error('参数错误104');
- if (!isset($data['notice']) || empty($data['notice'])) return $this->error('参数错误105');
- if (!isset($data['license_image']) || empty($data['license_image'])) return $this->error('参数错误106');
- $user = $this->auth->getUser();
- $isset = Db::name('user_qiye')->where('uid',$user['id'])->find();
- if ($isset) {
- return $this->error('您的审核已经提交过了');
- }
- $data['uid'] = $user['id'];
- $add = Db::name('user_qiye')->insert($data);
- if ($add) {
- Db::name('user')->where('id',$user['id'])->update(['shenhe_status' => 1]);
- return $this->success('提交成功');
- } else {
- return $this->error('提价失败');
- }
- }
- /**
- * 完善商家信息
- *
- * @ApiMethod (POST)
- * @param string $address 商家地址
- * @param string $str 商家简介
- * @param string $str_images 多图多图
- * @param string $wall_images 照片墙
- * @param string $license_image 营业执照
- */
- public function shangjia()
- {
- $data = $this->request->post();
- if (!isset($data['address']) || empty($data['address'])) return $this->error('参数错误103');
- if (!isset($data['str']) || empty($data['str'])) return $this->error('参数错误104');
- // if (!isset($data['notice']) || empty($data['notice'])) return $this->error('参数错误105');
- if (!isset($data['license_image']) || empty($data['license_image'])) return $this->error('参数错误106');
- $user = $this->auth->getUser();
- $isset = Db::name('user_shangjia')->where('uid',$user['id'])->find();
- if ($isset) {
- return $this->error('您的审核已经提交过了');
- }
- $data['uid'] = $user['id'];
- $add = Db::name('user_shangjia')->insert($data);
- if ($add) {
- Db::name('user')->where('id',$user['id'])->update(['shenhe_status' => 1]);
- return $this->success('提交成功');
- } else {
- return $this->error('提价失败');
- }
- }
- /**
- * 我的粉丝
- */
- public function fensi()
- {
- $user = $this->auth->getUser();
- $page = $this->request->get('page');
- $limit = $this->request->get('limit');
- if (!$page) {
- $pages = '0,10';
- } else {
- $page = $page - 1;
- if ($page < 0) $page = 0;
- $pages = $page . ',' . $limit;
- }
- $fensi = Db::name('follow')->where('be_uid',$user['id'])->limit($pages)->select();
- if (!$fensi) return $this->success('',[]);
- $res = [];
- foreach ($fensi as $k=>$v) {
- $userInfo = Db::name('user')->where('id',$v['uid'])->find();
- $res[$k]['username'] = $userInfo['username'];
- $res[$k]['avatar'] = $userInfo['avatar'];
- $res[$k]['uid'] = $userInfo['id'];
- $res[$k]['position'] = $userInfo['position'];
- $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find();
- $res[$k]['company'] = $userInfo['company'];
- if ($userCompany && $userCompany['group_id'] == 1) {
- $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find();
- if ($shangjia) {
- $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10);
- } else {
- $res[$k]['notice_str'] = '';
- }
- } else if ($userCompany && $userCompany['group_id'] == 2) {
- $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find();
- if ($qiye) {
- $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10);
- } else {
- $res[$k]['notice_str'] = '';
- }
- } else {
- $res[$k]['notice_str'] = '';
- }
- }
- return $this->success('',$res);
- }
- /**
- * 我的关注
- */
- public function follow()
- {
- $user = $this->auth->getUser();
- $page = $this->request->get('page');
- $limit = $this->request->get('limit');
- if (!$page) {
- $pages = '0,10';
- } else {
- $page = $page - 1;
- if ($page < 0) $page = 0;
- $pages = $page . ',' . $limit;
- }
- $fensi = Db::name('follow')->where('uid',$user['id'])->limit($pages)->select();
- if (!$fensi) return $this->success('',[]);
- $res = [];
- foreach ($fensi as $k=>$v) {
- $userInfo = Db::name('user')->where('id',$v['be_uid'])->find();
- $res[$k]['username'] = $userInfo['username'];
- $res[$k]['avatar'] = $userInfo['avatar'];
- $res[$k]['uid'] = $userInfo['id'];
- $res[$k]['position'] = $userInfo['position'];
- $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find();
- $res[$k]['company'] = $userInfo['company'];
- if ($userCompany && $userCompany['group_id'] == 1) {
- $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find();
- if ($shangjia) {
- $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10);
- } else {
- $res[$k]['notice_str'] = '';
- }
- } else if ($userCompany && $userCompany['group_id'] == 2) {
- $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find();
- if ($qiye) {
- $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10);
- } else {
- $res[$k]['notice_str'] = '';
- }
- } else {
- $res[$k]['notice_str'] = '';
- }
- }
- return $this->success('',$res);
- }
- /**
- * 我的同事
- */
- public function tongshi()
- {
- $user = $this->auth->getUser();
- if (empty($user['company'])) return $this->error('',[]);
- $page = $this->request->get('page');
- $limit = $this->request->get('limit');
- if (!$page) {
- $pages = '0,10';
- } else {
- $page = $page - 1;
- if ($page < 0) $page = 0;
- $pages = $page . ',' . $limit;
- }
- $fensi = Db::name('user')->where('company',$user['company'])->where('id','neq',$user['id'])->limit($pages)->select();
- if (!$fensi) return $this->success('',[]);
- $res = [];
- foreach ($fensi as $k=>$v) {
- $userInfo = Db::name('user')->where('id',$v['id'])->find();
- $res[$k]['username'] = $userInfo['username'];
- $res[$k]['avatar'] = $userInfo['avatar'];
- $res[$k]['uid'] = $userInfo['id'];
- $res[$k]['position'] = $userInfo['position'];
- $userCompany = Db::name('user')->where('company',$userInfo['company'])->where('group_id','>',0)->find();
- $res[$k]['company'] = $userInfo['company'];
- if ($userCompany && $userCompany['group_id'] == 1) {
- $shangjia = Db::name('user_shangjia')->where('uid',$userCompany['id'])->find();
- if ($shangjia) {
- $res[$k]['notice_str'] = mb_substr($shangjia['str'],0,10);
- } else {
- $res[$k]['notice_str'] = '';
- }
- } else if ($userCompany && $userCompany['group_id'] == 2) {
- $qiye = Db::name('user_qiye')->where('uid',$userCompany['id'])->find();
- if ($qiye) {
- $res[$k]['notice_str'] = mb_substr($qiye['notice'],0,10);
- } else {
- $res[$k]['notice_str'] = '';
- }
- } else {
- $res[$k]['notice_str'] = '';
- }
- }
- return $this->success('',$res);
- }
- /**
- * 安全中心
- */
- public function anquan()
- {
- $data =Db::name('xieyi')->select();
- $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[2]['value']);
- return $this->success('',$res);
- }
- /**
- * 在线反馈
- *
- * @param string $notice 在线反馈
- */
- public function fankui()
- {
- $notice = $this->request->get('notice');
- if(empty($notice)) return $this->error('参数错误');
- $user = $this->auth->getUser();
- $data['uid'] = $user['id'];
- $data['notice'] = $notice;
- $data['create_time'] = date('Y-m-d H:i:s',time());
- $add = Db::name('fankui')->insert($data);
- if ($add) {
- return $this->success('提交成功');
- } else {
- return $this->error('提交失败');
- }
- }
- /**
- * 服务协议
- */
- public function fuwu()
- {
- $data =Db::name('xieyi')->select();
- $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[0]['value']);
- return $this->success('',$res);
- }
- /**
- * 隐私政策
- *
- */
- public function yinsi()
- {
- $data =Db::name('xieyi')->select();
- $res['content'] = str_replace('src="','src="'.config('site.httpurl'),$data[1]['value']);
- return $this->success('',$res);
- }
- /**
- * 退出登录
- */
- public function logout()
- {
- $this->auth->logout();
- $this->success(__('Logout successful'));
- }
- /**
- * 注销账号
- *
- */
- public function zhuxiao()
- {
- $user = $this->auth->getUser();
- $this->auth->logout();
- Db::name('user')->where('id',$user['id'])->delete();
- $this->success('注销成功');
- }
- /**
- * 修改密码
- *
- * @param string $oldpwd 旧密码
- * @param string $nowpwd 新密码
- * @param string $querenpwd 确认密码
- */
- public function newPwd()
- {
- $user = $this->auth->getUser();
- $newpassword = $this->request->get('nowpwd');
- $oldpwd = $this->request->get('oldpwd');
- $querenpwd = $this->request->get('querenpwd');
- if (empty($newpassword)) return $this->error('请输入新密码');
- if (empty($oldpwd)) return $this->error('请输入旧密码');
- if (empty($querenpwd)) return $this->error('请输入确认密码');
- if ($newpassword != $querenpwd) {
- return $this->error('两次密码输入不一致');
- }
- //模拟一次登录
- $this->auth->direct($user->id);
- $rets = $this->auth->changepwd($newpassword, $oldpwd, true);
- if ($rets) {
- $this->success(__('Reset password successful'));
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 消息管理
- *
- * @param string $luntan 论坛1开启2关闭
- * @param string $huodong 活动1开启2关闭
- * @param string $fuwu 服务1开启2关闭
- */
- public function message()
- {
- $luntan = $this->request->get('luntan');
- $huodong = $this->request->get('huodong');
- $fuwu = $this->request->get('fuwu');
- $user = $this->auth->getUser();
- $upd = [];
- if(!empty($luntan)) $upd['luntan'] = $luntan;
- if(!empty($huodong)) $upd['huodong'] = $huodong;
- if(!empty($fuwu)) $upd['fuwu'] = $fuwu;
- $upd = Db::name('user')->where('id',$user['id'])->update($upd);
- if ($upd) {
- return $this->success('操作成功');
- } else {
- return $this->error('操作失败');
- }
- }
- /**
- * 公司信息
- * @param string $uid 用户id
- */
- public function companyInfo()
- {
- $user = $this->auth->getUser();
- $uid = $this->request->get('uid');
- if($user['id'] !=$uid) return $this->error('错误');
- if (empty($user['company'])) return $this->error('您还未填入自己的公司名称');
- $qiyejia = Db::name('user')->where('company',$user['company'])->where('group_id',2)->where('shenhe_status','>',0)->find();
- if (!$qiyejia) return $this->error('暂未找到此公司详细信息');
- $uid = $qiyejia['id'];
- $data = Db::name('user_qiye')->where('uid',$uid)->find();
- $data['license_image'] = config('site.httpurl').$data['license_image'];
- $data['avatar_image'] = config('site.httpurl').$data['avatar_image'];
- $data['fuwu_images'] = explode(',',$data['fuwu_images']);
- $data['company'] = $user['company'];
- foreach ($data['fuwu_images'] as &$v) {
- $v = config('site.httpurl').$v;
- }
- $data['wall_images'] = explode(',',$data['wall_images']);
- foreach ($data['wall_images'] as &$v) {
- $v = config('site.httpurl').$v;
- }
- return $this->success('',$data);
- }
- /**
- * 编辑企业信息
- *
- * @ApiMethod (POST)
- * @param string $avatar_image 头像
- * @param string $category 所属范畴
- * @param string $company_label 公司标签
- * @param string $company_address 公司地址
- * @param string $company_mobile 联系方式
- * @param string $notice 企业简介
- * @param string $fuwu_str 企业服务
- * @param string $fuwu_images 服务多图
- * @param string $wall_images 照片墙
- * @param string $license_image 营业执照
- */
- public function updCompany()
- {
- $data = $this->request->post();
- if (!isset($data['category']) || empty($data['category'])) return $this->error('参数错误101');
- if (!isset($data['company_label']) || empty($data['company_label'])) return $this->error('参数错误102');
- if (!isset($data['company_address']) || empty($data['company_address'])) return $this->error('参数错误103');
- if (!isset($data['company_mobile']) || empty($data['company_mobile'])) return $this->error('参数错误104');
- if (!isset($data['notice']) || empty($data['notice'])) return $this->error('参数错误105');
- if (!isset($data['license_image']) || empty($data['license_image'])) return $this->error('参数错误106');
- $user = $this->auth->getUser();
- if ($user['group_id'] !=2 || $user['shenhe_status'] <1) return $this->error('对不起,请联系企业负责人修改企业信息');
- $data['uid'] = $user['id'];
- $add = Db::name('user_qiye')->where('uid',$user['id'])->update($data);
- if ($add) {
- return $this->success('提交成功');
- } else {
- return $this->error('提价失败');
- }
- }
- /**
- * 修改手机号
- *
- * @param string $mobile 手机号
- * @param string $captcha 验证码
- */
- public function changemobile()
- {
- $user = $this->auth->getUser();
- $mobile = $this->request->request('mobile');
- $captcha = $this->request->request('captcha');
- if (!$mobile || !$captcha) {
- $this->error(__('Invalid parameters'));
- }
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
- $this->error(__('Mobile already exists'));
- }
- $result = Sms::check($mobile, $captcha, 'changemobile');
- if (!$result) {
- $this->error(__('Captcha is incorrect'));
- }
- $verification = $user->verification;
- $verification->mobile = 1;
- $user->verification = $verification;
- $user->mobile = $mobile;
- $user->save();
- Sms::flush($mobile, 'changemobile');
- $this->success();
- }
- /**
- * 微信登录
- *
- * @param string $code Code码
- */
- // public function third()
- //
- // {
- //
- // $wchat = new WeChat();
- //
- //
- // $code = request()->param('code', "");
- //
- // $user = $wchat->getUserAccessUserInfo($code);
- // dump($user);die;
- //
- // }
- //微信登录
- public function third(){
- $code = request()->param('code', "");//获取code
- $appid ="wxe02aa578255f9184";
- $secret = "39ec8add0b8d4ed794e9cb330a334538";
- $url = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js_code=$code&grant_type=authorization_code";
- //通过code换取网页授权access_token
- $weixin = file_get_contents($url);
- dump($weixin);die;
- $jsondecode = json_decode($weixin); //对JSON格式的字符串进行编码
- $array = get_object_vars($jsondecode);//转换成数组
- $openid = $array['openid'];//输出openid
- return $openid;
- }
- }
|