123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Ems;
- use app\common\library\Sms;
- use app\common\library\WxPublic;
- use app\common\model\Area;
- use app\common\model\Guest;
- use app\common\model\User as U;
- use app\common\model\UserSign;
- use app\common\service\ScoreSend;
- use app\service\byte_dance\ByteDanceCode2Session;
- use app\service\byte_dance\ByteDanceDecrypt;
- use EasyWeChat\Kernel\Exceptions\DecryptException;
- use EasyWeChat\Kernel\Exceptions\InvalidConfigException;
- use fast\Mini;
- use fast\Random;
- use think\Config;
- use think\Db;
- use think\Log;
- use think\Validate;
- use app\common\model\User as UserModel;
- /**
- * 会员接口
- */
- class User extends Api
- {
- protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'third','userminilogin','minilogin','wxp','dy_login','dy_loginn'];
- protected $noNeedRight='*';
- public function _initialize()
- {
- parent::_initialize();
- if (!Config::get('fastadmin.usercenter')) {
- $this->error(__('User center already closed'));
- }
- }
- /**
- * 会员信息
- * @ApiReturnParams (name=id,description=用户ID)
- * @ApiReturnParams (name=username,description=用户名)
- * @ApiReturnParams (name=nickname,description=昵称)
- * @ApiReturnParams (name=mobile,description=手机号)
- * @ApiReturnParams (name=avatar,description=头像)
- * @ApiReturnParams (name=age,description=年龄)
- * @ApiReturnParams (name=gender,description="性别1男2女")
- * @ApiReturnParams (name=level_text,description=会员级别标题)
- * @ApiReturnParams (name=level,description="会员级别,0游客10安检员20正式会员")
- * @ApiReturnParams (name=money,description=余额)
- * @ApiReturnParams (name=has_follow,description=是否关注)
- * @ApiReturnParams (name=verification,description=认证信息)
- * @ApiReturnParams (name=province,description=省对象)
- * @ApiReturnParams (name=city,description=市对象)
- * @ApiReturnParams (name=county,description=县对象)
- * @ApiReturnParams (name=wenda_num,description=问答记录数量)
- * @ApiReturnParams (name=follow_count,description=关注数量)
- * @ApiReturnParams (name=has_answered,description=是否已答过题)
- * @ApiReturnParams (name=userinfo[custom][key],description=自定义资料key)
- * @ApiReturnParams (name=userinfo[custom][title],description=自定义资料名称)
- * @ApiReturnParams (name=userinfo[custom][value],description=自定义资料值)
- */
- public function index()
- {
- $user=$this->auth->getUser();
- if(!$user['userinfo']){
- $user->userinfo()->save([]);
- }
- $this->success('', $user);
- }
- /**
- * 会员登录
- *
- * @ApiMethod (POST)
- * @param string $account 账号
- * @param string $password 密码
- */
- public function login()
- {
- $account = $this->request->post('account');
- $password = $this->request->post('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());
- }
- }
- /**
- * 手机验证码登录
- *
- * @ApiMethod (POST)
- * @param string $mobile 手机号
- * @param string $captcha 验证码
- */
- public function mobilelogin()
- {
- $mobile = $this->request->post('mobile');
- $captcha = $this->request->post('captcha');
- if (!$mobile || !$captcha) {
- $this->error(__('Invalid parameters'));
- }
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
- $this->error(__('Captcha is incorrect'));
- }
- $user = UserModel::getByMobile($mobile);
- if ($user) {
- if ($user->status != 'normal') {
- $this->error(__('Account is locked'));
- }
- //如果已经有账号则直接登录
- $ret = $this->auth->direct($user->id);
- } else {
- $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []);
- }
- if ($ret) {
- Sms::flush($mobile, 'mobilelogin');
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Logged in successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 注册会员
- *
- * @ApiMethod (POST)
- * @ApiParams (name=username,description="用户名")
- * @ApiParams (name=password,description="密码")
- * @ApiParams (name=email,description="邮箱")
- * @ApiParams (name=mobile,description="手机号")
- * @ApiParams (name=code,description="验证码")
- */
- public function register()
- {
- $username = $this->request->post('username');
- $password = $this->request->post('password');
- $email = $this->request->post('email');
- $mobile = $this->request->post('mobile');
- $code = $this->request->post('code');
- if (!$username || !$password) {
- $this->error(__('Invalid parameters'));
- }
- if ($email && !Validate::is($email, "email")) {
- $this->error(__('Email is incorrect'));
- }
- if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- $ret = Sms::check($mobile, $code, 'register');
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- $ret = $this->auth->register($username, $password, $email, $mobile);
- if ($ret) {
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Sign up successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 修改会员个人信息
- *
- * @ApiMethod (POST)
- * @ApiParams (name=avatar,description=头像地址)
- * @ApiParams (name=nickname,description=昵称)
- * @ApiParams (name=bio,description=个人简介)
- * @ApiParams (name=age,description=年龄)
- * @ApiParams (name=gender,description="性别1男2女")
- * @ApiParams (name=county_id,description=区县ID)
- * @ApiParams (name="custom[xxxx]",description="自定义资料放这里")
- * @ApiReturnParams (name=score,description="赠送的积分数量")
- */
- public function profile(ScoreSend $score)
- {
- $data=$this->_validate([
- 'avatar|头像'=>['require','url'],
- 'nickname|昵称'=>['require','max:12'],
- 'age|年龄'=>['require','integer','gt:0'],
- //'county_id|地区'=>['require','integer','gt:0'],
- 'county_id|地区'=>['require'],
- 'gender|性别'=>['require','integer','in:1,2'],
- 'bio|性别'=>['max:100'],
- ]);
- $user = $this->auth->getUser();
- Db::startTrans();
- $user= UserModel::lock(true)->find($user->id);
- $nickname = $data['nickname']??'';
- $bio = $data['bio'];
- $avatar = $data['avatar']??'';
- if ($nickname) {
- /*$exists = UserModel::where('nickname', $nickname)->where('id', '<>', $this->auth->id)->find();
- if ($exists) {
- $this->error(__('Nickname already exists'));
- }*/
- $user->nickname = $nickname;
- }
- if($bio) {
- $user->bio = $bio;
- }
- if($avatar) {
- $user->avatar = $avatar;
- }
- if(!empty($data['age'])){
- $user->age=$data['age'];
- }
- if(isset($data['gender'])){
- $user->gender=$data['gender'];
- }
- if(!empty($data['county_id'])){
- $county=Area::area()->where('name|shortname',$data['county_id'])->find();
- if(!$county) {
- $this->error('地区不存在');
- }
- $user->county_id=$county['id'];
- $user->city_id=$county['pid'];
- $user->province_id=Area::where('id',$county['pid'])->value('pid');
- }
- $user->save();
- $custom=array_column($user->userinfo->custom,'value','key');
- foreach (config('site.userApprove')?:[] as $key=>$value){
- if(!empty($data['custom'][$key])){
- $custom[$key]=$data['custom'][$key];
- }
- }
- if($custom) {
- $user->userinfo->save(['custom' => $custom]);
- }
- $scoreNum=$score->setUser($user)->setField('score')->setMemo('完善资料')->setConfig('score_editInfo')->onlyOne();
- Db::commit();
- $this->success('',[
- 'score'=>$scoreNum,
- ]);
- }
- /**
- * 抖音小程序登陆
- * @ApiParams (name=code,description=code)
- * @ApiParams (name=encryptedData,description=encryptedData)
- * @ApiParams (name=iv,description=iv)
- */
- public function dy_login(){
- $data=$this->_validate([
- 'code'=>['require'],
- 'encryptedData'=>['require'],
- 'iv'=>['require'],
- ]);
- $code2Session=new ByteDanceCode2Session();
- $byteDanceDecrypt=new ByteDanceDecrypt();
- $info=$code2Session->setCode($data['code'])->get();
- $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
- $byteDanceDecrypt->setIv($data['iv']);
- $byteDanceDecrypt->setSessionKey($info['session_key']);
- $mobileInfo=$byteDanceDecrypt->get();
- Db::startTrans();
- $user= UserModel::where('openid',$info['openid'])->find();
- if($user){
- $this->auth->direct($user['id']);
- }else{
- $this->auth->register(session_create_id(),'',null, $mobileInfo['phoneNumber']??null,[
- 'openid'=>$info['openid'],
- 'unionid'=>$info['unionid'],
- 'avatar'=>$mobileInfo['avatarUrl'],
- 'nickname'=>$mobileInfo['nickName'],
- ]);
- }
- $data = ['userinfo' => $this->auth->getUserinfo()];
- Db::commit();
- $this->success(__('Logged in successful'), $data);
- }
- /**
- * 抖音小程序登陆
- * @ApiParams (name=code,description=code)
- * @ApiParams (name=encryptedData,description=encryptedData)
- * @ApiParams (name=iv,description=iv)
- */
- public function dy_loginn(){
- $data=$this->_validate([
- 'code'=>['require'],
- 'encryptedData'=>['require'],
- 'iv'=>['require'],
- ]);
- $appid = $this->request->get('appid');
- $code2Session = new ByteDanceCode2Session();
- $byteDanceDecrypt = new ByteDanceDecrypt();
- if($appid){
- $info = $code2Session->setCodeTwo($data['code'])->getTwo();
- $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
- $byteDanceDecrypt->setIv($data['iv']);
- $byteDanceDecrypt->setSessionKey($info['session_key']);
- $mobileInfo = $byteDanceDecrypt->get();
- Db::startTrans();
- $user = UserModel::where('openid', $info['openid'])->find();
- if ($user) {
- $this->auth->direct($user['id']);
- } else {
- $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
- 'openid' => $info['openid'],
- 'unionid' => $info['unionid'],
- 'avatar' => $mobileInfo['avatarUrl'],
- 'nickname' => $mobileInfo['nickName'],
- ]);
- }
- $data = ['userinfo' => $this->auth->getUserinfo()];
- Db::commit();
- $this->success(__('Logged in successful'), $data);
- }else {
- $info = $code2Session->setCode($data['code'])->get();
- $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
- $byteDanceDecrypt->setIv($data['iv']);
- $byteDanceDecrypt->setSessionKey($info['session_key']);
- $mobileInfo = $byteDanceDecrypt->get();
- Db::startTrans();
- $user = UserModel::where('openid', $info['openid'])->find();
- if ($user) {
- $this->auth->direct($user['id']);
- } else {
- $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
- 'openid' => $info['openid'],
- 'unionid' => $info['unionid'],
- 'avatar' => $mobileInfo['avatarUrl'],
- 'nickname' => $mobileInfo['nickName'],
- ]);
- }
- $data = ['userinfo' => $this->auth->getUserinfo()];
- Db::commit();
- $this->success(__('Logged in successful'), $data);
- }
- }
- }
|