12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Ems;
- use app\common\library\Sms;
- use EasyWeChat\Factory;
- 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 = $this->request->request('nickname');
- $avatar = $this->request->request('avatar');
- $openid = $this->request->request('openid');
- if (!isset($username) || empty($username)) $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,$openid,$avatar);
- 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()
- {
- $config = [
- 'app_id' => 'wxe02aa578255f9184',
- 'secret' => '5e184a450e2cb5331826ead2fd95157e',
- // 下面为可选项
- // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
- 'response_type' => 'array',
- ];
- $app=Factory::miniProgram($config);
- $data = input('get.');
- $res=$app->auth->session($data['js_code']);
- if (!isset($res['openid'])) return $this->error('请求失败');
- $userInfo = Db::name('user')->where('openid',$res['openid'])->find();
- if (!$userInfo) {
- return json(['code' => 101,'msg'=>'请先注册','data'=>$data]);
- } else {
- $user = \app\common\model\User::getByMobile($userInfo['mobile']);
- if ($user) {
- if ($user->status != '1') {
- $this->error(__('Account is locked'));
- }
- //如果已经有账号则直接登录
- $ret = $this->auth->direct($user->id);
- if ($ret) {
- Sms::flush($userInfo['mobile'], 'mobilelogin');
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Logged in successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }
- }
- }
- /**
- * 绑定微信
- * @param string $username 微信昵称
- * @param string $avatar 微信头像
- */
- public function bin()
- {
- $user = $this->auth->getUser();
- if (!empty($user['openid'])) return $this->error('您已经绑定过微信了');
- $config = [
- 'app_id' => 'wxe02aa578255f9184',
- 'secret' => '5e184a450e2cb5331826ead2fd95157e',
- // 下面为可选项
- // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
- 'response_type' => 'array',
- ];
- $app=Factory::miniProgram($config);
- $data = input('get.');
- $res=$app->auth->session($data['js_code']);
- if (!isset($res['openid'])) return $this->error('请求失败');
- $data = input('get.');
- $ins = [
- 'openid' => $res['openid'],
- 'username' => $data['username'],
- 'avatar' => $data['avatar'],
- ];
- $upd= Db::name('user')->where('id',$user['id'])->update($ins);
- if ($upd) {
- return $this->success('绑定成功');
- } else {
- return $this->error('绑定失败');
- }
- }
- /**
- * 重置密码
- *
- * @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;
- }
- }
|