Login.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  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 app\common\library\AliPay3;
  16. use app\common\library\HuijuH5Pay;
  17. use app\common\library\HuijuKjPay;
  18. use think\cache\driver\Redis;
  19. use think\Db;
  20. use Firebase\JWT\JWT;
  21. use think\facade\Validate;
  22. /**
  23. * @title 用户登录
  24. * @controller Login
  25. * @group worker
  26. */
  27. class Login extends Base
  28. {
  29. /**
  30. * @title 注册
  31. * @desc 注册
  32. * @url /api/Login/Register
  33. * @method POST
  34. * @tag 基础
  35. * @header
  36. * @param name:phone type:string require:1 desc:手机号
  37. * @param name:ver_code type:string require:1 desc:验证码
  38. * @param name:password type:string require:1 desc:密码
  39. * @param name:confirm_password type:string require:1 desc:确认密码
  40. * @param name:second_password type:string require:1 desc:二级密码
  41. * @param name:confirm_second_password type:string require:1 desc:二级确认密码
  42. * @param name:invite_code type:string require:0 desc:邀请码
  43. *
  44. */
  45. public function Register(){
  46. $phone = input('phone');
  47. $ver_code = input('ver_code');
  48. //$password = input('password');
  49. // $confirm_password = input('confirm_password');
  50. $second_password = input('second_password');
  51. $confirm_second_password = input('confirm_second_password');
  52. $invite_code = input('invite_code');
  53. if (!$phone || !$ver_code || !$second_password || !$confirm_second_password){
  54. $this->error('参数错误');
  55. }
  56. if (!Validate::regex($phone, "^1\d{10}$")) {
  57. $this->error('手机号格式错误');
  58. }
  59. //验证短信验证码
  60. $time = time()-60;
  61. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'register'])
  62. ->where('createtime','>',$time)
  63. ->order('id', 'DESC')
  64. ->find();
  65. // if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
  66. $user = Db::name('store_member')
  67. ->where('is_deleted',0)
  68. ->where('phone',$phone)
  69. ->find();
  70. if ($user) $this->error('手机号已注册');
  71. // if (!preg_match('/^[0-9a-z]{6,12}$/i',$password)) $this->error('密码格式错误,请输入6-12位数字+字母');
  72. // if ($password!=$confirm_password) $this->error('密码与确认密码不一致');
  73. if (!preg_match('/^[0-9]{6}$/i',$second_password)) $this->error('二级密码格式错误,请输入6位纯数字');
  74. if ($second_password!=$confirm_second_password) $this->error('二级密码与确认密码不一致');
  75. if ($invite_code){
  76. $isset = Db::name('store_member')->where('is_deleted',0)->where('invite_code',$invite_code)->find();
  77. if (!$isset) $this->error('邀请码不存在');
  78. $invitecode = $isset['id'];
  79. }else{
  80. $invitecode = 0;
  81. }
  82. $wallet_address = '';
  83. $accountName = '';
  84. $data = [
  85. 'phone'=>$phone,
  86. 'pid'=>$invitecode,
  87. //'password'=>md5($password),
  88. 'second_password'=>md5($second_password),
  89. 'wallet_address'=>$wallet_address,
  90. 'accountName'=>$accountName,
  91. 'reg_ip'=>request()->ip()
  92. ];
  93. $member_id = Db::name('store_member')->insertGetId($data);
  94. if ($member_id){
  95. $code = get32Str(8);
  96. $invite_img = setintivecode($code);
  97. $invite_address = getintiveaddress($code);
  98. Db::name('store_member')->where('id',$member_id)->update(['name'=>'收藏者'.$member_id,'invite_img'=>$invite_img,'invite_address'=>$invite_address,'invite_code'=>$code]);
  99. //邀请好友送积分
  100. if ($invite_code>0){
  101. $invite_friends_integral = getConfigValue('invite_friends_integral');
  102. memberMoneyChange($invite_friends_integral,1,$invite_code,'邀请好友',1,$member_id);
  103. }
  104. $this->success('注册成功');
  105. }
  106. $this->error('注册失败');
  107. }
  108. /**
  109. * @title 登录
  110. * @desc 登录
  111. * @url /api/Login/passwordLogin
  112. * @method POST
  113. * @tag 基础
  114. * @header
  115. * @param name:phone type:int require:1 default:-- desc:手机号
  116. * @param name:password type:string require:1 default:-- desc:密码
  117. * @param name:ver_code type:string require:1 desc:验证码
  118. * @return name:token type:string default:-- desc:用户登录成功后的token值
  119. */
  120. public function passwordLogin()
  121. {
  122. $type = input('type',1); //1:验证码登录 2:密码登录
  123. $phone = input('phone');
  124. $password = input('password');
  125. $ver_code = input('ver_code');
  126. if ($type==1){
  127. if (empty($ver_code) || empty($phone)) {
  128. $this->error('参数错误');
  129. }
  130. }else{
  131. if (empty($password) || empty($phone)) {
  132. $this->error('参数错误');
  133. }
  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. if ($phone!='15801075991'){
  142. if ($type==1){
  143. $time = time()-60;
  144. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'login'])
  145. ->where('createtime','>',$time)
  146. ->order('id', 'DESC')
  147. ->find();
  148. // if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
  149. }else{
  150. if ($member['password']!=md5($password)) $this->error('密码错误');
  151. }
  152. }
  153. $token = self::create_jwt($member['id']);
  154. setMemberInfoHash($member['id']);
  155. Db::name('store_member')->where('id',$member['id'])->update(['ip'=>request()->ip()]);
  156. LoginLog($member['id']);
  157. $this->success('登录成功', $token);
  158. }
  159. //token加密
  160. public function create_jwt($uid)
  161. {
  162. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  163. $time = time(); //签发时间
  164. $expire = $time + config('app.jwt_time'); //过期时间
  165. $token = array(
  166. "uid" => $uid,
  167. "iss" => "https://zain.com",//签发组织
  168. "aud" => "https://zain.com", //签发作者
  169. "iat" => $time,
  170. "nbf" => $time,
  171. "exp" => $expire
  172. );
  173. $jwt = JWT::encode($token, $key);
  174. return $jwt;
  175. }
  176. /**
  177. * @title 找回密码
  178. * @desc 找回密码
  179. * @url /api/Login/ForgetPassword
  180. * @method POST
  181. * @tag 基础
  182. * @header
  183. * @param name:phone type:int require:1 default:-- desc:手机号
  184. * @param name:ver_code type:string require:1 desc:验证码
  185. * @param name:password type:string require:1 default:-- desc:密码
  186. * @param name:confirm_password type:string require:1 desc:确认密码
  187. */
  188. public function ForgetPassword(){
  189. $phone = input('phone');
  190. $ver_code = input('ver_code');
  191. $password = input('password');
  192. $confirm_password = input('confirm_password');
  193. if (!$phone || !$ver_code || !$password || !$confirm_password) $this->error('参数错误');
  194. $member = Db::name('store_member')
  195. ->where('phone', $phone)
  196. ->where('is_deleted',0)
  197. ->find();
  198. if (!$member) $this->error('手机号未注册');
  199. //验证短信验证码
  200. $time = time()-60;
  201. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'forgetpwd'])
  202. ->where('createtime','>',$time)
  203. ->order('id', 'DESC')
  204. ->find();
  205. if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
  206. if (!preg_match('/^[0-9a-z]{6,12}$/i',$password)) $this->error('密码格式错误,请输入6-12位数字+字母');
  207. if ($password!=$confirm_password) $this->error('密码与确认密码不一致');
  208. $data = [
  209. 'password'=>md5($password),
  210. 'update_at'=>date('Y-m-d H:i:s')
  211. ];
  212. if (Db::name('store_member')->where('id',$member['id'])->update($data)) $this->success('修改成功');
  213. $this->error('修改失败');
  214. }
  215. public function test(){
  216. // $huiju = new HuijuH5Pay();
  217. // $result = $huiju->we_pay();
  218. // die();
  219. //
  220. //
  221. // $callback_url = 'http://'.$_SERVER['SERVER_NAME'].'/pages/mine/order-list?num=1';
  222. // $huiju = new HuijuH5Pay();
  223. // $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/ylOrderNotify';//回调地址
  224. // $huiju->ylh5Pay(get_order_sn(),$callback_url,$notify_url,"测试藏品","0.01",'100000',1);
  225. $huiju = new HuijuKjPay();
  226. // $huiju->sms();
  227. // $huiju->signing();
  228. $huiju->paySms();
  229. $huiju->kuaijiePay();
  230. die;
  231. require_once env('root_path').'application/common/library/lib/YopRequest.php';
  232. require_once env('root_path').'application/common/library/lib/YopClient3.php';
  233. require_once env('root_path').'application/common/library/lib/YopRsaClient.php';
  234. $private_key ="MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCSBUBO99o0ZCGp8/6qbaSW2MIeHKg/4RZEIexS11rW5wxFH9arHM16yZXObtm1qO1xNnRyofBkKvcOes63yNGqiulDjJbx2gxXzQdq6g0ckO06YZsb6v4AmkCLwu/kFPYTd2zu3nM6VCBsppkjXe2kcdgeKH55PSqTLcqe4TCeCQxxTjmixX/qFdKva7uJxXbdNjE+GERMTPsn9FBGjrv2/6RCz62eZljRcQf2zY9aooXnYaYOOkeYxJaFu4M8k1kEfL/A2ftDGa+9zyWUUp/PskIcSUCLtdd+yR1ZvNldBW7iaeTuZ4YQXg6N3BqFBacBmkHztpqbrg1+C46Hp9C5AgMBAAECggEAHxpGPevWSzWO5BwIQTYUilsGUhKpld20d/O/2k9r1n2lY+3ptE3wyLg6lBuRfPvMA8LlH+u1gCiUsj1fXc9FNa3cDNrb5g0bdvJBo7jR7SVDmp1ixBoUW31/xSVTIsKCPdhA2EqCwchclbgQw3NE5LOpJJdchSeNs4bb82alC+wwDaYnrag/OuehknazOQWqWQVaPI9zJ+eXPNW3etWte1OLDyVoNiSrAdr/BWnBxSxcoANuzypkKN/Sw5W3vgkIHyylReiOLP2JLDNpnDlwgNIaxYOF7p0VGLC1bAqZTjuR4nMKZhohC4FtNC1cy9ZV2c2KV3bD8OXoMPIQB1a8OQKBgQDJnVxK2Mwk/2jitP7mA6JpBFeioJLRzj4gKK56M4InYaRRVZj6UWJd5Jt0uEs6XMlus8T24cfSoglCnXIvTMx8okTbusxn72Ff+/+f0GRLI/VO/cyhSWFl+0P3XTCT+zUVI3+kWvZQ6Tj7l5BWubqLObBdrNDhpbYhQptnm+KHJQKBgQC5aMwHmtE5Cs6+z2zGkIvVw4dOQcvo9E+gGCsjbSdeFvcrOpg/NNQ0dmu54F8CF6z9VkoitL8NTI63V4LqLnZ9BK+K/0L8UMzbbhCqT9+JTrjNraby77akxldKTUZZHiC1edWT/Ll8t6xT6oVw02yZz8Flpc7DnNXuJGGxQIlpBQKBgHinh3fzThhGEUq67mBQhH08cAWO+s48EsnEDsZq1NUkheV2yFnlImz2RmIPeFWw+YsaYiEs9RyEg+4tswvDdgyQP40PuQvqIegDMvM9Dwg4uLFRCYjsFTGmsQHz7wJgL2A7IkQFe6roJ4XJKkP8Wjq/h2BH76laNiipZ78VdvdRAoGAKqgnuOAvnrYT1uaWGiELawTvTlvo9BGxeB3XXvEwC3+xIir6+B/JasCMDFnIwgx8alS9/boj8oVYmGnz3rkN3bmEQbB00uQsHZf3EZgKz+Zisj9vl5j7JnHTh2677qj10YrUTpXofv8rEKt2Q/0AkWqxDhfVuD+PIJkSONumQZkCgYACVSnvt+kizEIwdshvGzAkzZaMBR6Xf1d//cuIWzU1bO7pkCQogq9MXv9hCZx2N1B51VSvwazJ6B029uzgYzr0iTeZBfB5ntb53/vEycLMhB9r9Bc+0x7bxrQZeWNwLlQFxhDeSO9le0ETjfGPt/nS2QbFL7bNHwRGE+AzxwH0aA==";
  235. $request = new \YopRequest("app_10086863938", $private_key);
  236. $request->addParam('requestNo',get_order_sn());
  237. $request->addParam('parentMerchantNo','10086863938');
  238. $request->addParam('merchantNo','10086863938');
  239. $request->addParam('name','宋星伟');
  240. $request->addParam('cardNo','371324199210037710');
  241. $request->addParam('cardType','ID');
  242. $request->addParam('returnUrl','https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/mine/order-list?num=1');
  243. $request->addParam('notifyUrl','https://'.$_SERVER['SERVER_NAME'].'/api/Pay/re');
  244. $response = \YopRsaClient::post("/rest/v1.0/auth/face-auth", $request);
  245. dump(json_decode(json_encode($response,true),true));
  246. die;
  247. // require_once env('root_path').'application/common/library/lib/YopRequest.php';
  248. // require_once env('root_path').'application/common/library/lib/YopClient3.php';
  249. // require_once env('root_path').'application/common/library/lib/YopRsaClient.php';
  250. // $private_key ="MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCSBUBO99o0ZCGp8/6qbaSW2MIeHKg/4RZEIexS11rW5wxFH9arHM16yZXObtm1qO1xNnRyofBkKvcOes63yNGqiulDjJbx2gxXzQdq6g0ckO06YZsb6v4AmkCLwu/kFPYTd2zu3nM6VCBsppkjXe2kcdgeKH55PSqTLcqe4TCeCQxxTjmixX/qFdKva7uJxXbdNjE+GERMTPsn9FBGjrv2/6RCz62eZljRcQf2zY9aooXnYaYOOkeYxJaFu4M8k1kEfL/A2ftDGa+9zyWUUp/PskIcSUCLtdd+yR1ZvNldBW7iaeTuZ4YQXg6N3BqFBacBmkHztpqbrg1+C46Hp9C5AgMBAAECggEAHxpGPevWSzWO5BwIQTYUilsGUhKpld20d/O/2k9r1n2lY+3ptE3wyLg6lBuRfPvMA8LlH+u1gCiUsj1fXc9FNa3cDNrb5g0bdvJBo7jR7SVDmp1ixBoUW31/xSVTIsKCPdhA2EqCwchclbgQw3NE5LOpJJdchSeNs4bb82alC+wwDaYnrag/OuehknazOQWqWQVaPI9zJ+eXPNW3etWte1OLDyVoNiSrAdr/BWnBxSxcoANuzypkKN/Sw5W3vgkIHyylReiOLP2JLDNpnDlwgNIaxYOF7p0VGLC1bAqZTjuR4nMKZhohC4FtNC1cy9ZV2c2KV3bD8OXoMPIQB1a8OQKBgQDJnVxK2Mwk/2jitP7mA6JpBFeioJLRzj4gKK56M4InYaRRVZj6UWJd5Jt0uEs6XMlus8T24cfSoglCnXIvTMx8okTbusxn72Ff+/+f0GRLI/VO/cyhSWFl+0P3XTCT+zUVI3+kWvZQ6Tj7l5BWubqLObBdrNDhpbYhQptnm+KHJQKBgQC5aMwHmtE5Cs6+z2zGkIvVw4dOQcvo9E+gGCsjbSdeFvcrOpg/NNQ0dmu54F8CF6z9VkoitL8NTI63V4LqLnZ9BK+K/0L8UMzbbhCqT9+JTrjNraby77akxldKTUZZHiC1edWT/Ll8t6xT6oVw02yZz8Flpc7DnNXuJGGxQIlpBQKBgHinh3fzThhGEUq67mBQhH08cAWO+s48EsnEDsZq1NUkheV2yFnlImz2RmIPeFWw+YsaYiEs9RyEg+4tswvDdgyQP40PuQvqIegDMvM9Dwg4uLFRCYjsFTGmsQHz7wJgL2A7IkQFe6roJ4XJKkP8Wjq/h2BH76laNiipZ78VdvdRAoGAKqgnuOAvnrYT1uaWGiELawTvTlvo9BGxeB3XXvEwC3+xIir6+B/JasCMDFnIwgx8alS9/boj8oVYmGnz3rkN3bmEQbB00uQsHZf3EZgKz+Zisj9vl5j7JnHTh2677qj10YrUTpXofv8rEKt2Q/0AkWqxDhfVuD+PIJkSONumQZkCgYACVSnvt+kizEIwdshvGzAkzZaMBR6Xf1d//cuIWzU1bO7pkCQogq9MXv9hCZx2N1B51VSvwazJ6B029uzgYzr0iTeZBfB5ntb53/vEycLMhB9r9Bc+0x7bxrQZeWNwLlQFxhDeSO9le0ETjfGPt/nS2QbFL7bNHwRGE+AzxwH0aA==";
  251. // $request = new \YopRequest("app_10086863938", $private_key);
  252. // $request->addFile("merQual", "C:\Users\xk\Pictures\΢�Ž�ͼ_20220316150041.png");
  253. // $response = \YopRsaClient::upload("/yos/v1.0/sys/merchant/qual/upload", $request);
  254. // dump($response);
  255. }
  256. }