123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050 |
- <?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','wechatLogin'];
- 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 $js_code code
- */
- public function wechatLogin()
- {
- $data = input('get.');
- $appid = "wxe02aa578255f9184 ";
- $secret = "5e184a450e2cb5331826ead2fd95157e";
- $js_code = $data['js_code'];
- $headerArray = array(
- "Content-type:application/json",
- "Accept:application/json"
- );
- $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_HTTPHEADER,$headerArray);
- curl_setopt($ch, CURLOPT_URL, $url); //设置访问的URL
- curl_setopt($ch, CURLOPT_HEADER, false); //设置不需要头信息
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);//只获取页面内容,但不输出
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
- curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
- $str = curl_exec($ch); //执行访问,返回结果
- curl_close($ch); //关闭curl,释放资源
- dump($str);die;
- $openid = json_decode($str, true);
- $data["user_openid"] = $openid["openid"];
- }
- /**
- * 重置密码
- *
- * @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;
- }
- }
|