|
@@ -5,29 +5,183 @@ namespace app\api\controller;
|
|
|
use app\common\controller\Api;
|
|
|
use app\common\library\Ems;
|
|
|
use app\common\library\Sms;
|
|
|
+use app\common\library\Wechat;
|
|
|
use fast\Random;
|
|
|
use think\Config;
|
|
|
use think\Validate;
|
|
|
+use think\Db;
|
|
|
|
|
|
/**
|
|
|
* 会员接口
|
|
|
*/
|
|
|
class User extends Api
|
|
|
{
|
|
|
- protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third'];
|
|
|
+ protected $noNeedLogin = [''];
|
|
|
protected $noNeedRight = '*';
|
|
|
|
|
|
public function _initialize()
|
|
|
{
|
|
|
parent::_initialize();
|
|
|
+ }
|
|
|
+
|
|
|
+ //用户详细资料
|
|
|
+ public function getuserinfo(){
|
|
|
+ $info = $this->auth->getUserinfo();
|
|
|
|
|
|
- if (!Config::get('fastadmin.usercenter')) {
|
|
|
- $this->error(__('User center already closed'));
|
|
|
+ $this->success(__('success'),$info);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 退出登录
|
|
|
+ * @ApiMethod (POST)
|
|
|
+ */
|
|
|
+ public function logout()
|
|
|
+ {
|
|
|
+ if (!$this->request->isPost()) {
|
|
|
+ $this->error(__('Invalid parameters'));
|
|
|
}
|
|
|
+ $this->auth->logout();
|
|
|
+ $this->success(__('Logout successful'));
|
|
|
+ }
|
|
|
|
|
|
+ /**
|
|
|
+ * 修改会员个人信息
|
|
|
+ *
|
|
|
+ * @ApiMethod (POST)
|
|
|
+ * @param string $avatar 头像地址
|
|
|
+ * @param string $username 用户名
|
|
|
+ * @param string $nickname 昵称
|
|
|
+ * @param string $bio 个人简介
|
|
|
+ */
|
|
|
+ public function profile()
|
|
|
+ {
|
|
|
+ $user = $this->auth->getUser();
|
|
|
+ $username = $this->request->post('username');
|
|
|
+ $nickname = $this->request->post('nickname');
|
|
|
+ $bio = $this->request->post('bio');
|
|
|
+ $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+ if ($nickname) {
|
|
|
+ $exists = \app\common\model\User::where('nickname', $nickname)->where('id', '<>', $this->auth->id)->find();
|
|
|
+ if ($exists) {
|
|
|
+ $this->error(__('Nickname already exists'));
|
|
|
+ }
|
|
|
+ $user->nickname = $nickname;
|
|
|
+ }
|
|
|
+ $user->bio = $bio;
|
|
|
+ $user->avatar = $avatar;
|
|
|
+ $user->save();
|
|
|
+ $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());
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 微信小程序登录+注册
|
|
|
+ * 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());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 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 index()
|
|
@@ -136,54 +290,7 @@ class User extends Api
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 退出登录
|
|
|
- * @ApiMethod (POST)
|
|
|
- */
|
|
|
- public function logout()
|
|
|
- {
|
|
|
- if (!$this->request->isPost()) {
|
|
|
- $this->error(__('Invalid parameters'));
|
|
|
- }
|
|
|
- $this->auth->logout();
|
|
|
- $this->success(__('Logout successful'));
|
|
|
- }
|
|
|
|
|
|
- /**
|
|
|
- * 修改会员个人信息
|
|
|
- *
|
|
|
- * @ApiMethod (POST)
|
|
|
- * @param string $avatar 头像地址
|
|
|
- * @param string $username 用户名
|
|
|
- * @param string $nickname 昵称
|
|
|
- * @param string $bio 个人简介
|
|
|
- */
|
|
|
- public function profile()
|
|
|
- {
|
|
|
- $user = $this->auth->getUser();
|
|
|
- $username = $this->request->post('username');
|
|
|
- $nickname = $this->request->post('nickname');
|
|
|
- $bio = $this->request->post('bio');
|
|
|
- $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
|
|
|
- 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;
|
|
|
- }
|
|
|
- if ($nickname) {
|
|
|
- $exists = \app\common\model\User::where('nickname', $nickname)->where('id', '<>', $this->auth->id)->find();
|
|
|
- if ($exists) {
|
|
|
- $this->error(__('Nickname already exists'));
|
|
|
- }
|
|
|
- $user->nickname = $nickname;
|
|
|
- }
|
|
|
- $user->bio = $bio;
|
|
|
- $user->avatar = $avatar;
|
|
|
- $user->save();
|
|
|
- $this->success();
|
|
|
- }
|
|
|
|
|
|
/**
|
|
|
* 修改邮箱
|