123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Ems;
- use app\common\library\Sms;
- use fast\Random;
- use think\Db;
- use think\Validate;
- /**
- * 会员接口
- */
- class User extends Api
- {
- protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third','sendPhone'];
- 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 = $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);
- if ($ret) {
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Sign up successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 重置密码
- *
- * @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();
- dump($user);
- }
- /**
- * 退出登录
- */
- public function logout()
- {
- $this->auth->logout();
- $this->success(__('Logout successful'));
- }
- /**
- * 修改会员个人信息
- *
- * @param string $avatar 头像地址
- * @param string $username 用户名
- * @param string $nickname 昵称
- * @param string $bio 个人简介
- */
- public function profile()
- {
- $user = $this->auth->getUser();
- $username = $this->request->request('username');
- $nickname = $this->request->request('nickname');
- $bio = $this->request->request('bio');
- $avatar = $this->request->request('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();
- }
- /**
- * 修改手机号
- *
- * @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;
- }
- }
|