Login.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <?php
  2. namespace app\data\controller\api;
  3. use AlibabaCloud\Client\AlibabaCloud;
  4. use AlibabaCloud\Client\Exception\ClientException;
  5. use AlibabaCloud\Client\Exception\ServerException;
  6. use app\common\model\Config;
  7. use app\common\model\Sms;
  8. use app\data\model\DataUser;
  9. use app\data\service\MessageService;
  10. use app\data\service\UserAdminService;
  11. use Carbon\Carbon;
  12. use hg\apidoc\annotation\Method;
  13. use hg\apidoc\annotation\Param;
  14. use hg\apidoc\annotation\Returned;
  15. use hg\apidoc\annotation\Title;
  16. use think\Request;
  17. /**
  18. * @Title("用户登录注册接口")
  19. */
  20. class Login extends Auth
  21. {
  22. protected $noNeedLogin=['in','hx','register','sendsms','findpwd','sms','getOpenid','getloginset'];
  23. /**
  24. * @Title("手机号或用户名+密码登陆")
  25. * @Method("post")
  26. * @Param("phone",desc="手机号或用户名")
  27. * @Param("password",desc="密码")
  28. * @Param("openid",desc="openid,小程序登录时传")
  29. * @Returned("token.token",desc="token")
  30. */
  31. public function in()
  32. {
  33. $data = $this->_vali([
  34. //'phone.mobile' => '手机号码格式错误!',
  35. 'phone.require' => '登录名不能为空!',
  36. 'password.require' => '登录密码不能为空!',
  37. 'openid.default' => '',
  38. ],'post');
  39. $map = ['deleted' => 0, 'phone|username' => $data['phone']];
  40. $user = DataUser::mk()->where($map)->findOrEmpty();
  41. if ($user->isEmpty()) $this->error('该手机号还没有注册哦!');
  42. if (empty($user['status'])) $this->error('该用户账号状态异常!');
  43. if (md5($data['password']) === $user['password']) {
  44. $user->openid1 = $data['openid'];
  45. $user->update_at = date('Y-m-d H:i:s');
  46. $user->huanxinID = 'cbz_'.$user->id;
  47. $user->jgalias = 'user_'.$user->id;
  48. $user->save();
  49. huanxin_zhuce('cbz_'.$user->id,$user->nickname);
  50. $this->success('手机登录成功!', UserAdminService::set($map, [], $this->type, true));
  51. } else {
  52. $this->error('账号登录失败,请稍候再试!');
  53. }
  54. }
  55. public function hx(){
  56. huanxin_zhuce('cbz-1','张三');
  57. }
  58. /**
  59. * @Title("用户统一注册入口")
  60. * @Method("post")
  61. * @Param("nickname",desc="昵称")
  62. * @Param("phone",desc="手机号")
  63. * @Param("verify",desc="验证码")
  64. * @Param("password",desc="密码")
  65. */
  66. public function register()
  67. {
  68. $data = $this->_vali([
  69. 'region_province.default' => '',
  70. 'region_city.default' => '',
  71. 'region_area.default' => '',
  72. 'username.default' => '',
  73. 'phone.mobile' => '手机格式错误!',
  74. 'phone.require' => '手机不能为空!',
  75. 'nickname.require' => '昵称必须!',
  76. 'verify.require' => '验证码不能为空!',
  77. 'password.require' => '登录密码不能为空!',
  78. ]);
  79. if (!MessageService::instance()->checkCode($data['verify'], $data['phone'],2)) {
  80. $this->error('手机短信验证失败!');
  81. }
  82. $map = ['phone' => $data['phone'], 'deleted' => 0];
  83. if (DataUser::mk()->where($map)->count() > 0) {
  84. $this->error('手机号已注册,请使用其它手机号!');
  85. }
  86. $data['password'] = md5($data['password']);
  87. $user = UserAdminService::set($map, $data, $this->type, true);
  88. $huanxinID = 'cbz_'.$user['id'];
  89. $jgalias = 'user_'.$user['id'];
  90. DataUser::mk()->where('id',$user['id'])->update(['huanxinID'=>$huanxinID,'jgalias'=>$jgalias]);
  91. huanxin_zhuce('cbz_'.$user['id'],$user['nickname']);
  92. empty($user) ? $this->error('手机注册失败!') : $this->success('用户注册成功!', $user);
  93. }
  94. /**
  95. * @Title("发送短信验证码")
  96. * @Param("phone",desc="手机号")
  97. * @Param("type",desc="1登陆2注册3找回密码4发布应聘5商家登录6商家找回密码")
  98. */
  99. public function sendsms()
  100. {
  101. $data = $this->_vali([
  102. 'phone.mobile' => '手机号格式错误!',
  103. 'phone.require' => '手机号不能为空!',
  104. 'type.require' => '类型不能为空!',
  105. 'type.in:1,2,3,4,5,6' => '类型有误!',
  106. ]);
  107. $needLogin=[];
  108. if(in_array($data['type'],$needLogin) && !$this->uuid){
  109. $this->error('请登录');
  110. }
  111. MessageService::instance()->sendCode($data['phone'],$data['type']);
  112. $this->success('发送成功');
  113. }
  114. /**
  115. * @Title("找回密码")
  116. * @Method("post")
  117. * @Param("phone",desc="手机号")
  118. * @Param("verify",desc="验证码")
  119. * @Param("password",desc="密码")
  120. */
  121. public function findpwd(){
  122. $data=$this->_vali([
  123. 'phone.mobile'=>'手机号必须',
  124. 'phone.require'=>'手机号必须',
  125. 'verify.require'=>'验证码必须',
  126. 'password.require'=>'密码必须',
  127. ],'post');
  128. if (!MessageService::instance()->checkCode($data['verify'], $data['phone'],3)) {
  129. $this->error('手机短信验证失败!');
  130. }
  131. $user=DataUser::where('phone',$data['phone'])->find();
  132. if(!$user){
  133. $this->error('用户不存在');
  134. }
  135. $user['password']=md5($data['password']);
  136. $user->save();
  137. $this->success('修改成功');
  138. }
  139. /**
  140. * @Title ("验证码登陆")
  141. * @Method ("post")
  142. * @Param("phone",desc="手机号")
  143. * @Param("verify",desc="验证码")
  144. * @Param("openid",desc="openid,小程序登录时传")
  145. * @Returned("registered",type="boolean",desc="是否已注册")
  146. */
  147. public function sms(){
  148. $data=$this->_vali([
  149. 'phone.mobile'=>'手机号必须',
  150. 'phone.require'=>'手机号必须',
  151. 'verify.require'=>'验证码必须',
  152. 'openid.default' => '',
  153. ],'post');
  154. if (!MessageService::instance()->checkCode($data['verify'], $data['phone'],1)) {
  155. $this->error('手机短信验证失败!');
  156. }
  157. $user=DataUser::where('phone',$data['phone'])->find();
  158. if(!$user){
  159. $this->error('用户未注册',[
  160. 'registered'=>false
  161. ]);
  162. }
  163. if(!$user['status']){
  164. $this->error('用户被禁用');
  165. }
  166. $user->openid1 = $data['openid'];
  167. $user->update_at = date('Y-m-d H:i:s');
  168. $user->huanxinID = 'cbz_'.$user['id'];
  169. $user->jgalias = 'user_'.$user->id;
  170. $user->save();
  171. huanxin_zhuce('cbz_'.$user['id'],$user['nickname']);
  172. $user = UserAdminService::set(['id'=>$user['id']], [], $this->type, true);
  173. $this->success('登录成功',$user);
  174. }
  175. /**
  176. * @Title ("小程序根据code获取openid")
  177. * @Method ("post")
  178. * @Param("code",desc="code")
  179. */
  180. public function getOpenid(){
  181. $data=$this->_vali([
  182. 'code.require'=>'code必须',
  183. ],'post');
  184. $code = $data['code'];
  185. $appid = 'wxa5033cf91977e574';
  186. $secret = '2a36bfbced93a2c4256e7b6b15922990';
  187. $url = "https://api.weixin.qq.com/sns/jscode2session?appid=" . $appid . "&secret=" . $secret . "&js_code=" . $code . "&grant_type=authorization_code";
  188. $session_key = curlRequest($url);
  189. if (!empty($session_key['session_key'])) {
  190. $re['openid'] = $session_key['openid'];
  191. $this->success('成功',$re);
  192. }else{
  193. $this->error('获取session_key失败!');
  194. }
  195. }
  196. /**
  197. * @Title("获取用户服务协议和个人保护政策")
  198. * @Method("post")
  199. * @Returned("service_agreement",desc="用户服务协议")
  200. * @Returned("protection_policy",desc="个人信息保护政策")
  201. */
  202. public function getloginset(){
  203. $info= [
  204. 'service_agreement'=>htmlspecialchars_decode(sysconf('user_login.service_agreement')),
  205. 'protection_policy'=>htmlspecialchars_decode(sysconf('user.privacy_policy')),
  206. ];
  207. $this->success('成功',$info);
  208. }
  209. }