User.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\library\Ems;
  5. use app\common\library\Sms;
  6. use fast\Random;
  7. use think\Db;
  8. use think\Validate;
  9. /**
  10. * 会员接口
  11. */
  12. class User extends Api
  13. {
  14. protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third','sendPhone'];
  15. protected $noNeedRight = '*';
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. }
  20. /**
  21. * 会员登录
  22. *
  23. * @param string $account 账号
  24. * @param string $password 密码
  25. */
  26. public function login()
  27. {
  28. $account = $this->request->request('account');
  29. $password = $this->request->request('password');
  30. if (!$account || !$password) {
  31. $this->error(__('Invalid parameters'));
  32. }
  33. $ret = $this->auth->login($account, $password);
  34. if ($ret) {
  35. $data = ['userinfo' => $this->auth->getUserinfo()];
  36. $this->success(__('Logged in successful'), $data);
  37. } else {
  38. $this->error($this->auth->getError());
  39. }
  40. }
  41. /**
  42. * 手机验证码登录
  43. *
  44. * @param string $mobile 手机号
  45. * @param string $captcha 验证码
  46. */
  47. public function mobilelogin()
  48. {
  49. $mobile = $this->request->request('mobile');
  50. $captcha = $this->request->request('captcha');
  51. if (!$mobile || !$captcha) {
  52. $this->error(__('Invalid parameters'));
  53. }
  54. if (!Validate::regex($mobile, "^1\d{10}$")) {
  55. $this->error(__('Mobile is incorrect'));
  56. }
  57. // $ret = session($mobile);
  58. $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find();
  59. if (!$ret) {
  60. $this->error(__('Captcha is incorrect'));
  61. }
  62. if ($ret) {
  63. if ($ret['number'] != $captcha) {
  64. $this->error('验证码不正确');
  65. }
  66. if(time()-$ret['create_time'] > 300) {
  67. $this->error('验证码超时');
  68. }
  69. }
  70. $user = \app\common\model\User::getByMobile($mobile);
  71. if ($user) {
  72. if ($user->status != '1') {
  73. $this->error(__('Account is locked'));
  74. }
  75. //如果已经有账号则直接登录
  76. $ret = $this->auth->direct($user->id);
  77. if ($ret) {
  78. Sms::flush($mobile, 'mobilelogin');
  79. $data = ['userinfo' => $this->auth->getUserinfo()];
  80. $this->success(__('Logged in successful'), $data);
  81. } else {
  82. $this->error($this->auth->getError());
  83. }
  84. } else {
  85. return $this->error('暂无账此号请去注册');
  86. // $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []);
  87. }
  88. }
  89. /**
  90. * 注册会员
  91. *
  92. * @param string $password 密码
  93. * @param string $group_id 身份012
  94. * @param string $mobile 手机号
  95. * @param string $code 验证码
  96. */
  97. public function register()
  98. {
  99. $password = $this->request->request('password');
  100. $mobile = $this->request->request('mobile');
  101. $group_id = $this->request->request('group_id');
  102. $username = $mobile;
  103. $code = $this->request->request('code');
  104. if (!$username || !$password) {
  105. $this->error(__('Invalid parameters'));
  106. }
  107. if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
  108. $this->error(__('Mobile is incorrect'));
  109. }
  110. // $ret = session($mobile);
  111. $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find();
  112. if (!$ret) {
  113. $this->error(__('Captcha is incorrect'));
  114. }
  115. if ($ret) {
  116. if ($ret['number'] != $code) {
  117. $this->error('验证码不正确');
  118. }
  119. if(time()-$ret['create_time'] > 300) {
  120. $this->error('验证码超时');
  121. }
  122. }
  123. if (!$group_id) {
  124. $group_id = 0;
  125. }
  126. $ret = $this->auth->register($username, $password, '', $mobile, [], $group_id);
  127. if ($ret) {
  128. $data = ['userinfo' => $this->auth->getUserinfo()];
  129. $this->success(__('Sign up successful'), $data);
  130. } else {
  131. $this->error($this->auth->getError());
  132. }
  133. }
  134. /**
  135. * 重置密码
  136. *
  137. * @param string $mobile 手机号
  138. * @param string $newpassword 新密码
  139. * @param string $captcha 验证码
  140. */
  141. public function resetpwd()
  142. {
  143. $mobile = $this->request->request("mobile");
  144. $newpassword = $this->request->request("newpassword");
  145. $captcha = $this->request->request("captcha");
  146. if (!$newpassword || !$captcha) {
  147. $this->error(__('Invalid parameters'));
  148. }
  149. if (!Validate::regex($mobile, "^1\d{10}$")) {
  150. $this->error(__('Mobile is incorrect'));
  151. }
  152. $user = \app\common\model\User::getByMobile($mobile);
  153. if (!$user) {
  154. $this->error(__('User not found'));
  155. }
  156. // $ret = session($mobile);
  157. $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find();
  158. if (!$ret) {
  159. $this->error(__('Captcha is incorrect'));
  160. }
  161. if ($ret) {
  162. if ($ret['number'] != $captcha) {
  163. $this->error('验证码不正确');
  164. }
  165. if(time()-$ret['create_time'] > 300) {
  166. $this->error('验证码超时');
  167. }
  168. }
  169. //模拟一次登录
  170. $this->auth->direct($user->id);
  171. $rets = $this->auth->changepwd($newpassword, '', true);
  172. if ($rets) {
  173. $this->success(__('Reset password successful'));
  174. } else {
  175. $this->error($this->auth->getError());
  176. }
  177. }
  178. /**
  179. * 发送验证码
  180. *
  181. * @param string $mobile 手机号
  182. * @param string $type 1注册2忘记3修改密码
  183. */
  184. public function sendPhone()
  185. {
  186. $mobile = $this->request->param('mobile');
  187. $type = $this->request->param('type');
  188. if (!isset($type) || empty($type)) return $this->error('参数错误');
  189. if ($type == 1) {
  190. $issetphone = Db::name('user')->where('mobile', $mobile)->find();
  191. if (isset($issetphone)) return $this->error('此账号已存在');
  192. }
  193. if ($type == 3) {
  194. $user = $this->auth->getUser();
  195. $isuseourphone = Db::name('user')->where('id', $user['id'])->where('mobile', $mobile)->find();
  196. if (!$isuseourphone) return $this->error('请使用本账号手机号修改密码');
  197. }
  198. $number = rand(1000, 9999);
  199. $res = send_sms($mobile, 1, ['code' => $number]);
  200. if (isset($res['Message']) && $res['Message'] == "OK") {
  201. $data = [
  202. 'mobile' =>$mobile,
  203. 'number' =>$number,
  204. 'create_time' =>time(),
  205. ];
  206. Db::name('captcha')->insert($data);
  207. return $this->success('发送成功', $number);
  208. } else {
  209. return $this->error('发送失败');
  210. }
  211. }
  212. /**
  213. * 用户信息
  214. */
  215. public function userInfo()
  216. {
  217. $user = $this->auth->getUser();
  218. dump($user);
  219. }
  220. /**
  221. * 退出登录
  222. */
  223. public function logout()
  224. {
  225. $this->auth->logout();
  226. $this->success(__('Logout successful'));
  227. }
  228. /**
  229. * 修改会员个人信息
  230. *
  231. * @param string $avatar 头像地址
  232. * @param string $username 用户名
  233. * @param string $nickname 昵称
  234. * @param string $bio 个人简介
  235. */
  236. public function profile()
  237. {
  238. $user = $this->auth->getUser();
  239. $username = $this->request->request('username');
  240. $nickname = $this->request->request('nickname');
  241. $bio = $this->request->request('bio');
  242. $avatar = $this->request->request('avatar', '', 'trim,strip_tags,htmlspecialchars');
  243. if ($username) {
  244. $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
  245. if ($exists) {
  246. $this->error(__('Username already exists'));
  247. }
  248. $user->username = $username;
  249. }
  250. if ($nickname) {
  251. $exists = \app\common\model\User::where('nickname', $nickname)->where('id', '<>', $this->auth->id)->find();
  252. if ($exists) {
  253. $this->error(__('Nickname already exists'));
  254. }
  255. $user->nickname = $nickname;
  256. }
  257. $user->bio = $bio;
  258. $user->avatar = $avatar;
  259. $user->save();
  260. $this->success();
  261. }
  262. /**
  263. * 修改手机号
  264. *
  265. * @param string $mobile 手机号
  266. * @param string $captcha 验证码
  267. */
  268. public function changemobile()
  269. {
  270. $user = $this->auth->getUser();
  271. $mobile = $this->request->request('mobile');
  272. $captcha = $this->request->request('captcha');
  273. if (!$mobile || !$captcha) {
  274. $this->error(__('Invalid parameters'));
  275. }
  276. if (!Validate::regex($mobile, "^1\d{10}$")) {
  277. $this->error(__('Mobile is incorrect'));
  278. }
  279. if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
  280. $this->error(__('Mobile already exists'));
  281. }
  282. $result = Sms::check($mobile, $captcha, 'changemobile');
  283. if (!$result) {
  284. $this->error(__('Captcha is incorrect'));
  285. }
  286. $verification = $user->verification;
  287. $verification->mobile = 1;
  288. $user->verification = $verification;
  289. $user->mobile = $mobile;
  290. $user->save();
  291. Sms::flush($mobile, 'changemobile');
  292. $this->success();
  293. }
  294. /**
  295. * 微信登录
  296. *
  297. * @param string $code Code码
  298. */
  299. // public function third()
  300. //
  301. // {
  302. //
  303. // $wchat = new WeChat();
  304. //
  305. //
  306. // $code = request()->param('code', "");
  307. //
  308. // $user = $wchat->getUserAccessUserInfo($code);
  309. // dump($user);die;
  310. //
  311. // }
  312. //微信登录
  313. public function third(){
  314. $code = request()->param('code', "");//获取code
  315. $appid ="wxe02aa578255f9184";
  316. $secret = "39ec8add0b8d4ed794e9cb330a334538";
  317. $url = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js_code=$code&grant_type=authorization_code";
  318. //通过code换取网页授权access_token
  319. $weixin = file_get_contents($url);
  320. dump($weixin);die;
  321. $jsondecode = json_decode($weixin); //对JSON格式的字符串进行编码
  322. $array = get_object_vars($jsondecode);//转换成数组
  323. $openid = $array['openid'];//输出openid
  324. return $openid;
  325. }
  326. }