|
@@ -15,17 +15,12 @@ use think\Db;
|
|
|
*/
|
|
|
class User extends Api
|
|
|
{
|
|
|
- protected $noNeedLogin = ['login', 'mobilelogin', 'wxmini_openid_login', 'resetpwd', 'changemobile'];
|
|
|
+ protected $noNeedLogin = ['mobilelogin'];
|
|
|
protected $noNeedRight = '*';
|
|
|
|
|
|
public function _initialize()
|
|
|
{
|
|
|
parent::_initialize();
|
|
|
-
|
|
|
- if (!Config::get('fastadmin.usercenter')) {
|
|
|
- $this->error(__('User center already closed'));
|
|
|
- }
|
|
|
-
|
|
|
}
|
|
|
|
|
|
|
|
@@ -103,46 +98,6 @@ class User extends Api
|
|
|
}
|
|
|
|
|
|
|
|
|
- /**
|
|
|
- * 微信小程序登录+注册
|
|
|
- * code得到注册手机号,此手机号登录+注册
|
|
|
- */
|
|
|
- public function wxmini_regmobile_login(){
|
|
|
- $code = input('code');
|
|
|
- if (!$code) {
|
|
|
- $this->error(__('Invalid parameters'));
|
|
|
- }
|
|
|
-
|
|
|
- $config = config('wxMiniProgram');
|
|
|
- $wechat = new Wechat($config['appid'],$config['secret']);
|
|
|
- $getuserphonenumber = $wechat->getuserphonenumber($code);
|
|
|
-
|
|
|
- if(!isset($getuserphonenumber['phone_info']['purePhoneNumber'])){
|
|
|
- $this->error('授权获取手机号失败');
|
|
|
- }
|
|
|
-
|
|
|
- $mobile = $getuserphonenumber['phone_info']['purePhoneNumber'];
|
|
|
-
|
|
|
- $userInfo = Db::name('user')->where('mobile',$mobile)->find();
|
|
|
- // 判断用户是否已经存在
|
|
|
- if($userInfo) { // 登录
|
|
|
- if ($userInfo['status'] != 1) {
|
|
|
- $this->error(__('Account is locked'));
|
|
|
- }
|
|
|
- //如果已经有账号则直接登录
|
|
|
- $res = $this->auth->direct($userInfo['id']);
|
|
|
- } else {
|
|
|
- $res = $this->auth->register('', '', '',$mobile, []);
|
|
|
- }
|
|
|
- if($res) {
|
|
|
- $this->success("登录成功!",$this->auth->getUserinfo());
|
|
|
- } else {
|
|
|
- $this->error($this->auth->getError());
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- //////////////////////上面的没用到/////////////////////
|
|
|
-
|
|
|
|
|
|
/**
|
|
|
* 退出登录
|
|
@@ -162,15 +117,11 @@ class User extends Api
|
|
|
*
|
|
|
* @ApiMethod (POST)
|
|
|
* @param string $avatar 头像地址
|
|
|
- * @param string $username 用户名
|
|
|
* @param string $nickname 昵称
|
|
|
- * @param string $bio 个人简介
|
|
|
*/
|
|
|
public function profile()
|
|
|
{
|
|
|
-
|
|
|
- $avatar = input('avatar', '', 'trim,strip_tags,htmlspecialchars');
|
|
|
- $mobile = input('mobile', '');
|
|
|
+ $avatar = input('avatar', '', 'trim,strip_tags,htmlspecialchars');
|
|
|
$nickname = input('nickname', '');
|
|
|
|
|
|
//修改用户
|
|
@@ -181,93 +132,18 @@ class User extends Api
|
|
|
$data['avatar'] = $avatar;
|
|
|
}
|
|
|
|
|
|
- if(!empty($mobile))
|
|
|
- {
|
|
|
- if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $this->auth->id)->find()) {
|
|
|
- $this->error('手机号已被占用');
|
|
|
- }
|
|
|
- $data['mobile'] = $mobile;
|
|
|
- }
|
|
|
-
|
|
|
- //未通过实名认证的才能改昵称
|
|
|
- if(!empty($nickname) && $this->auth->idcard_status != 1)
|
|
|
+ if(!empty($nickname))
|
|
|
{
|
|
|
$data['nickname'] = $nickname;
|
|
|
- $data['nickname_time'] = time();
|
|
|
}
|
|
|
|
|
|
if(!empty($data)){
|
|
|
$update_rs = Db::name('user')->where('id',$this->auth->id)->update($data);
|
|
|
- if($update_rs === false){
|
|
|
- $this->error('修改资料失败');
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
$this->success();
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 微信小程序登录+注册
|
|
|
- * code得到openid
|
|
|
- */
|
|
|
- public function wxmini_openid_login() {
|
|
|
- $code = input('code');
|
|
|
- if (!$code) {
|
|
|
- $this->error(__('Invalid parameters'));
|
|
|
- }
|
|
|
-
|
|
|
- $config = config('wxMiniProgram');
|
|
|
- $getopenid = 'https://api.weixin.qq.com/sns/jscode2session?appid='.$config['appid'].'&secret='.$config['secret'].'&js_code='.$code.'&grant_type=authorization_code';
|
|
|
- $openidInfo = $this->getJson($getopenid);
|
|
|
- if(!isset($openidInfo['openid'])) {
|
|
|
- $this->error('用户openid获取失败',$openidInfo);
|
|
|
- }
|
|
|
-
|
|
|
- $openid = $openidInfo['openid'];
|
|
|
- if (!$openid) {
|
|
|
- $this->error('用户openid获取失败');
|
|
|
- }
|
|
|
-
|
|
|
- //用户信息
|
|
|
- $userInfo = Db::name('user')->where(['mini_openid'=>$openid])->find();
|
|
|
-
|
|
|
- if($userInfo) {
|
|
|
- if ($userInfo['status'] == 0) {
|
|
|
- $this->error('账号已被禁用');
|
|
|
- }
|
|
|
- if ($userInfo['status'] == -1) {
|
|
|
- $this->error('账号已被注销');
|
|
|
- }
|
|
|
- //如果已经有账号则直接登录
|
|
|
- $res = $this->auth->direct($userInfo['id']);
|
|
|
- } else {
|
|
|
- $res = $this->auth->openid_register($openid);
|
|
|
- }
|
|
|
- if($res) {
|
|
|
- $this->success("登录成功!",$this->auth->getUserinfo());
|
|
|
- } else {
|
|
|
- $this->error($this->auth->getError());
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
- /**
|
|
|
- * json 请求
|
|
|
- * @param $url
|
|
|
- * @return mixed
|
|
|
- */
|
|
|
- private function getJson($url){
|
|
|
- $ch = curl_init();
|
|
|
- curl_setopt($ch, CURLOPT_URL, $url);
|
|
|
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
|
|
|
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
|
|
|
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
|
- $output = curl_exec($ch);
|
|
|
- curl_close($ch);
|
|
|
- return json_decode($output, true);
|
|
|
- }
|
|
|
-
|
|
|
//用户详细资料
|
|
|
public function getuserinfo(){
|
|
|
$info = $this->auth->getUserinfo();
|