Login.php 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\api\controller;
  15. use think\cache\driver\Redis;
  16. use think\Db;
  17. use Firebase\JWT\JWT;
  18. use think\facade\Validate;
  19. /**
  20. * @title 用户登录
  21. * @controller Login
  22. * @group worker
  23. */
  24. class Login extends Base
  25. {
  26. /**
  27. * @title 注册
  28. * @desc 注册
  29. * @url /api/Login/Register
  30. * @method POST
  31. * @tag 基础
  32. * @header
  33. * @param name:phone type:string require:1 desc:手机号
  34. * @param name:ver_code type:string require:1 desc:验证码
  35. * @param name:password type:string require:1 desc:密码
  36. * @param name:invite_code type:string require:0 desc:邀请码
  37. *
  38. */
  39. public function Register(){
  40. $phone = input('phone');
  41. $ver_code = input('ver_code');
  42. $password = input('password');
  43. // $confirm_password = input('confirm_password','');
  44. // $second_password = input('second_password','');
  45. // $confirm_second_password = input('confirm_second_password','');
  46. $invite_code = input('invite_code');
  47. if (!$phone || !$ver_code || !$password){
  48. $this->error('参数错误');
  49. }
  50. if (!Validate::regex($phone, "^1\d{10}$")) {
  51. $this->error('手机号格式错误');
  52. }
  53. //验证短信验证码
  54. $time = time()-60;
  55. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'register'])
  56. ->where('createtime','>',$time)
  57. ->order('id', 'DESC')
  58. ->find();
  59. if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
  60. $user = Db::name('store_member')
  61. ->where('is_deleted',0)
  62. ->where('phone',$phone)
  63. ->find();
  64. if ($user) $this->error('手机号已注册');
  65. if (!preg_match('/^[0-9a-z]{6,12}$/i',$password)) $this->error('密码格式错误,请输入6-12位数字+字母');
  66. // if ($password!=$confirm_password) $this->error('密码与确认密码不一致');
  67. // if (!preg_match('/^[0-9]{6}$/i',$second_password)) $this->error('二级密码格式错误,请输入6位纯数字');
  68. // if ($second_password!=$confirm_second_password) $this->error('二级密码与确认密码不一致');
  69. if ($invite_code){
  70. $isset = Db::name('store_member')->where('is_deleted',0)->where('invite_code',$invite_code)->find();
  71. if (!$isset) $this->error('邀请码不存在');
  72. $invitecode = $isset['id'];
  73. }else{
  74. $invitecode = 0;
  75. }
  76. $accountName = $phone;
  77. // $wallet_address = get32Str(64);
  78. $hz = substr($phone,-4);
  79. $data = [
  80. 'phone'=>$phone,
  81. 'pid'=>$invitecode,
  82. 'password'=>md5($password),
  83. // 'second_password'=>md5($second_password),
  84. // 'wallet_address'=>$wallet_address,
  85. 'accountName'=>$accountName
  86. ];
  87. $member_id = Db::name('store_member')->insertGetId($data);
  88. if ($member_id){
  89. $code = get32Str(8);
  90. $invite_img = setintivecode($code);
  91. $invite_address = getintiveaddress($code);
  92. Db::name('store_member')->where('id',$member_id)->update(['name'=>'收藏家'.$hz,'invite_img'=>$invite_img,'invite_address'=>$invite_address,'invite_code'=>$code]);
  93. //邀请好友送积分
  94. if ($invite_code>0){
  95. $invite_friends_integral = getConfigValue('invite_friends_integral');
  96. memberMoneyChange($invite_friends_integral,1,$invite_code,'邀请好友',1,$member_id);
  97. }
  98. $this->success('注册成功');
  99. }
  100. $this->error('注册失败');
  101. }
  102. /**
  103. * @title 登录
  104. * @desc 登录
  105. * @url /api/Login/passwordLogin
  106. * @method POST
  107. * @tag 基础
  108. * @header
  109. * @param name:phone type:int require:1 default:-- desc:手机号
  110. * @param name:password type:string require:1 default:-- desc:密码
  111. * @return name:token type:string default:-- desc:用户登录成功后的token值
  112. */
  113. public function passwordLogin()
  114. {
  115. $phone = input('phone');
  116. $password = input('password');
  117. if (empty($password) || empty($phone)) {
  118. $this->error('参数错误');
  119. }
  120. $member = Db::name('store_member')
  121. ->where('phone', $phone)
  122. ->where('is_deleted',0)
  123. ->find();
  124. if (!$member) $this->error('手机号未注册');
  125. if ($member['password']!=md5($password)) $this->error('密码错误');
  126. $token = self::create_jwt($member['id']);
  127. setMemberInfoHash($member['id']);
  128. $this->success('登录成功', $token);
  129. /*$phone = input('phone');
  130. // $password = input('password');
  131. $ver_code = input('ver_code');
  132. if (empty($ver_code) || empty($phone)) {
  133. $this->error('参数错误');
  134. }
  135. $member = Db::name('store_member')
  136. ->where('phone', $phone)
  137. ->where('is_deleted',0)
  138. ->find();
  139. if (!$member) $this->error('手机号未注册');
  140. //验证短信验证码
  141. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'login'])->order('id', 'DESC')->find();
  142. //if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
  143. $token = self::create_jwt($member['id']);
  144. setMemberInfoHash($member['id']);
  145. $this->success('登录成功', $token);*/
  146. }
  147. //token加密
  148. public function create_jwt($uid)
  149. {
  150. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  151. $time = time(); //签发时间
  152. $expire = $time + config('app.jwt_time'); //过期时间
  153. $token = array(
  154. "uid" => $uid,
  155. "iss" => "https://zain.com",//签发组织
  156. "aud" => "https://zain.com", //签发作者
  157. "iat" => $time,
  158. "nbf" => $time,
  159. "exp" => $expire
  160. );
  161. $jwt = JWT::encode($token, $key);
  162. return $jwt;
  163. }
  164. /**
  165. * @title 找回密码
  166. * @desc 找回密码
  167. * @url /api/Login/ForgetPassword
  168. * @method POST
  169. * @tag 基础
  170. * @header
  171. * @param name:phone type:int require:1 default:-- desc:手机号
  172. * @param name:ver_code type:string require:1 desc:验证码
  173. * @param name:password type:string require:1 default:-- desc:密码
  174. */
  175. public function ForgetPassword(){
  176. $phone = input('phone');
  177. $ver_code = input('ver_code');
  178. $password = input('password');
  179. $confirm_password = input('confirm_password');
  180. if (!$phone || !$ver_code || !$password || !$confirm_password) $this->error('参数错误');
  181. $member = Db::name('store_member')
  182. ->where('phone', $phone)
  183. ->where('is_deleted',0)
  184. ->find();
  185. if (!$member) $this->error('手机号未注册');
  186. //验证短信验证码
  187. $time = time()-60;
  188. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'forgetpwd'])
  189. ->where('createtime','>',$time)
  190. ->order('id', 'DESC')
  191. ->find();
  192. if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
  193. if (!preg_match('/^[0-9a-z]{6,12}$/i',$password)) $this->error('密码格式错误,请输入6-12位数字+字母');
  194. // if ($password!=$confirm_password) $this->error('密码与确认密码不一致');
  195. $data = [
  196. 'password'=>md5($password),
  197. 'update_at'=>date('Y-m-d H:i:s')
  198. ];
  199. if (Db::name('store_member')->where('id',$member['id'])->update($data)) $this->success('修改成功');
  200. $this->error('修改失败');
  201. }
  202. public function test(){
  203. $list = Db::name('store_member')->select();
  204. $redis = new Redis();
  205. foreach ($list as &$v){
  206. $redis->del('UserByCount_'.$v['id'].'1');
  207. }
  208. die;
  209. $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=wxa6980453638c9c78&secret=de7267bf7616bd73d867535642196fed';
  210. $res=curlRequest($url);
  211. $res = json_decode($res,true);
  212. $url2 ="https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=".$res['access_token']."&type=jsapi";
  213. $res2=curlRequest($url2);
  214. $res2 = json_decode($res2,true);
  215. $timestamp = time();
  216. $noncestr = get32Str(15);
  217. $url = 'http://jybl.hdlkeji.com/web/h5/';
  218. $string = "jsapi_ticket=".$res2['ticket']."&noncestr=$noncestr&timestamp=$timestamp&url=".$url;
  219. $result = sha1($string);
  220. echo $result;die;
  221. }
  222. public function add(){
  223. $list = Db::name('store_member')->where('is_deleted',0)->select();
  224. foreach ($list as $k=>$v){
  225. $invite_img = setintivecode($v['invite_code']);
  226. $invite_address = getintiveaddress($v['invite_code']);
  227. Db::name('store_member')->where('id',$v['id'])->update(['invite_img'=>$invite_img,'invite_address'=>$invite_address]);
  228. }
  229. }
  230. }