123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Sms;
- use think\Validate;
- use think\Db;
- /**
- * 会员接口
- */
- class User extends Api
- {
- protected $noNeedLogin = ['mobilelogin','enum_avatar','jssdkBuildConfig'];
- protected $noNeedRight = '*';
- public function _initialize()
- {
- parent::_initialize();
- }
- /**
- * 手机验证码登录
- *
- * @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 = \app\common\model\User::getByMobile($mobile);
- if ($user) {
- if ($user->status != 1) {
- $this->error(__('Account is locked'));
- }
- //如果已经有账号则直接登录
- $ret = $this->auth->direct($user->id);
- } else {
- $ret = $this->auth->register('', '', '', $mobile, []);
- }
- if ($ret) {
- Sms::flush($mobile, 'mobilelogin');
- $this->success(__('Logged in successful'), $this->auth->getUserinfo());
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 退出登录
- * @ApiMethod (POST)
- */
- public function logout()
- {
- if (!$this->request->isPost()) {
- $this->error(__('Invalid parameters'));
- }
- $this->auth->logout();
- $this->success(__('Logout successful'));
- }
- //备选头像
- public function enum_avatar(){
- $list = Db::name('enum_avatar')->order('id desc')->select();
- $list = list_domain_image($list,['avatar']);
- $this->success(1,$list);
- }
- /**
- * 修改会员个人信息
- *
- * @ApiMethod (POST)
- * @param string $avatar 头像地址
- * @param string $nickname 昵称
- */
- public function profile()
- {
- $avatar = input('avatar', '', 'trim,strip_tags,htmlspecialchars');
- $nickname = input('nickname', '');
- //修改用户
- $data = [];
- if(!empty($avatar))
- {
- $data['avatar'] = $avatar;
- }
- if(!empty($nickname))
- {
- $data['nickname'] = $nickname;
- }
- if(!empty($data)){
- $update_rs = Db::name('user')->where('id',$this->auth->id)->update($data);
- }
- $this->success();
- }
- //用户详细资料
- public function getuserinfo(){
- $info = $this->auth->getUserinfo();
- $this->success(__('success'),$info);
- }
- /**
- * 微信内H5-JSAPI支付
- */
- public function jssdkBuildConfig() {
- $url = $this->request->request("url");
- $wechat = new \app\common\library\Wechatshare;
- $sign = $wechat->getSignPackage(urldecode($url));
- $this->success("获取成功!",$sign);
- }
- }
|