User.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  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 app\common\library\Sms as Smslib;
  7. use app\common\model\Leave;
  8. use fast\Random;
  9. use think\Config;
  10. use think\Validate;
  11. /**
  12. * 会员接口
  13. */
  14. class User extends Api
  15. {
  16. protected $noNeedLogin = ['login', 'mobile_login', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third'];
  17. protected $noNeedRight = '*';
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. if (!Config::get('fastadmin.usercenter')) {
  22. $this->error(__('User center already closed'));
  23. }
  24. }
  25. /**
  26. * 会员中心
  27. */
  28. public function index()
  29. {
  30. $this->success('', ['welcome' => $this->auth->nickname]);
  31. }
  32. /**
  33. * 手机验证码登录
  34. *
  35. * @ApiMethod (POST)
  36. * @param string $mobile 手机号
  37. * @param string $captcha 验证码
  38. */
  39. public function mobile_login()
  40. {
  41. $mobile = $this->request->post('mobile');
  42. $captcha = $this->request->post('captcha');
  43. if (!$mobile || !$captcha) {
  44. $this->error(__('Invalid parameters'));
  45. }
  46. if (!Validate::regex($mobile, "^1\d{10}$")) {
  47. $this->error(__('Mobile is incorrect'));
  48. }
  49. if (!Sms::check($mobile, $captcha, 'register')) {
  50. $this->error(__('Captcha is incorrect'));
  51. }
  52. $user = \app\common\model\User::getByMobile($mobile);
  53. if ($user) {
  54. if ($user->status != 'normal') {
  55. $this->error(__('Account is locked'));
  56. }
  57. //如果已经有账号则直接登录
  58. $ret = $this->auth->direct($user->id);
  59. } else {
  60. $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []);
  61. }
  62. if ($ret) {
  63. Sms::flush($mobile, 'mobilelogin');
  64. $data = ['userinfo' => $this->auth->getUserinfo()];
  65. $this->success(__('Logged in successful'), $data);
  66. } else {
  67. $this->error($this->auth->getError());
  68. }
  69. }
  70. /**
  71. * 注册会员
  72. *
  73. * @ApiMethod (POST)
  74. * @param string $username 用户名
  75. * @param string $password 密码
  76. * @param string $email 邮箱
  77. * @param string $mobile 手机号
  78. * @param string $code 验证码
  79. */
  80. public function register()
  81. {
  82. $username = $this->request->post('username');
  83. $password = $this->request->post('password');
  84. $email = $this->request->post('email');
  85. $mobile = $this->request->post('mobile');
  86. $code = $this->request->post('code');
  87. if (!$username || !$password) {
  88. $this->error(__('Invalid parameters'));
  89. }
  90. if ($email && !Validate::is($email, "email")) {
  91. $this->error(__('Email is incorrect'));
  92. }
  93. if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
  94. $this->error(__('Mobile is incorrect'));
  95. }
  96. $ret = Sms::check($mobile, $code, 'register');
  97. if (!$ret) {
  98. $this->error(__('Captcha is incorrect'));
  99. }
  100. $ret = $this->auth->register($username, $password, $email, $mobile, []);
  101. if ($ret) {
  102. $data = ['userinfo' => $this->auth->getUserinfo()];
  103. $this->success(__('Sign up successful'), $data);
  104. } else {
  105. $this->error($this->auth->getError());
  106. }
  107. }
  108. /**
  109. * 退出登录
  110. * @ApiMethod (POST)
  111. */
  112. public function logout()
  113. {
  114. if (!$this->request->isPost()) {
  115. $this->error(__('Invalid parameters'));
  116. }
  117. $this->auth->logout();
  118. $this->success(__('Logout successful'));
  119. }
  120. /**
  121. * 修改会员个人信息
  122. *
  123. * @ApiMethod (POST)
  124. * @param string $avatar 头像地址
  125. * @param string $username 用户名
  126. * @param string $gender 性别
  127. * @param string $mobile 手机号
  128. * @param string $birthday 出生年月
  129. * @param string $email 邮箱
  130. */
  131. public function profile()
  132. {
  133. $user = $this->auth->getUser();
  134. $email = $this->request->post('email');
  135. $username = $this->request->post('username');
  136. $gender = $this->request->post('gender');
  137. $mobile = $this->request->post('mobile');
  138. $birthday = $this->request->post('birthday');
  139. $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
  140. if ($username) {
  141. $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
  142. if ($exists) {
  143. $this->error(__('Username already exists'));
  144. }
  145. $user->username = $username;
  146. }
  147. $user->bio = $email;
  148. $user->avatar = $avatar;
  149. $user->gender = $gender;
  150. $user->mobile = $mobile;
  151. $user->birthday = $birthday;
  152. $user->save();
  153. $this->success();
  154. }
  155. /**
  156. * 修改邮箱
  157. *
  158. * @ApiMethod (POST)
  159. * @param string $email 邮箱
  160. * @param string $captcha 验证码
  161. */
  162. public function changeemail()
  163. {
  164. $user = $this->auth->getUser();
  165. $email = $this->request->post('email');
  166. $captcha = $this->request->post('captcha');
  167. if (!$email || !$captcha) {
  168. $this->error(__('Invalid parameters'));
  169. }
  170. if (!Validate::is($email, "email")) {
  171. $this->error(__('Email is incorrect'));
  172. }
  173. if (\app\common\model\User::where('email', $email)->where('id', '<>', $user->id)->find()) {
  174. $this->error(__('Email already exists'));
  175. }
  176. $result = Ems::check($email, $captcha, 'changeemail');
  177. if (!$result) {
  178. $this->error(__('Captcha is incorrect'));
  179. }
  180. $verification = $user->verification;
  181. $verification->email = 1;
  182. $user->verification = $verification;
  183. $user->email = $email;
  184. $user->save();
  185. Ems::flush($email, 'changeemail');
  186. $this->success();
  187. }
  188. /**
  189. * 修改手机号
  190. *
  191. * @ApiMethod (POST)
  192. * @param string $mobile 手机号
  193. * @param string $captcha 验证码
  194. */
  195. public function changemobile()
  196. {
  197. $user = $this->auth->getUser();
  198. $mobile = $this->request->post('mobile');
  199. $captcha = $this->request->post('captcha');
  200. if (!$mobile || !$captcha) {
  201. $this->error(__('Invalid parameters'));
  202. }
  203. if (!Validate::regex($mobile, "^1\d{10}$")) {
  204. $this->error(__('Mobile is incorrect'));
  205. }
  206. if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
  207. $this->error(__('Mobile already exists'));
  208. }
  209. $result = Sms::check($mobile, $captcha, 'changemobile');
  210. if (!$result) {
  211. $this->error(__('Captcha is incorrect'));
  212. }
  213. $verification = $user->verification;
  214. $verification->mobile = 1;
  215. $user->verification = $verification;
  216. $user->mobile = $mobile;
  217. $user->save();
  218. Sms::flush($mobile, 'changemobile');
  219. $this->success();
  220. }
  221. /**
  222. * 第三方登录
  223. *
  224. * @ApiMethod (POST)
  225. * @param string $platform 平台名称
  226. * @param string $code Code码
  227. */
  228. public function third()
  229. {
  230. $url = url('user/index');
  231. $platform = $this->request->post("platform");
  232. $code = $this->request->post("code");
  233. $config = get_addon_config('third');
  234. if (!$config || !isset($config[$platform])) {
  235. $this->error(__('Invalid parameters'));
  236. }
  237. $app = new \addons\third\library\Application($config);
  238. //通过code换access_token和绑定会员
  239. $result = $app->{$platform}->getUserInfo(['code' => $code]);
  240. if ($result) {
  241. $loginret = \addons\third\library\Service::connect($platform, $result);
  242. if ($loginret) {
  243. $data = [
  244. 'userinfo' => $this->auth->getUserinfo(),
  245. 'thirdinfo' => $result
  246. ];
  247. $this->success(__('Logged in successful'), $data);
  248. }
  249. }
  250. $this->error(__('Operation failed'), $url);
  251. }
  252. /**
  253. * 重置密码
  254. *
  255. * @ApiMethod (POST)
  256. * @param string $mobile 手机号
  257. * @param string $newpassword 新密码
  258. * @param string $captcha 验证码
  259. */
  260. public function resetpwd()
  261. {
  262. $type = $this->request->post("type");
  263. $mobile = $this->request->post("mobile");
  264. $email = $this->request->post("email");
  265. $newpassword = $this->request->post("newpassword");
  266. $captcha = $this->request->post("captcha");
  267. if (!$newpassword || !$captcha) {
  268. $this->error(__('Invalid parameters'));
  269. }
  270. //验证Token
  271. if (!Validate::make()->check(['newpassword' => $newpassword], ['newpassword' => 'require|regex:\S{6,30}'])) {
  272. $this->error(__('Password must be 6 to 30 characters'));
  273. }
  274. if ($type == 'mobile') {
  275. if (!Validate::regex($mobile, "^1\d{10}$")) {
  276. $this->error(__('Mobile is incorrect'));
  277. }
  278. $user = \app\common\model\User::getByMobile($mobile);
  279. if (!$user) {
  280. $this->error(__('User not found'));
  281. }
  282. $ret = Sms::check($mobile, $captcha, 'resetpwd');
  283. if (!$ret) {
  284. $this->error(__('Captcha is incorrect'));
  285. }
  286. Sms::flush($mobile, 'resetpwd');
  287. } else {
  288. if (!Validate::is($email, "email")) {
  289. $this->error(__('Email is incorrect'));
  290. }
  291. $user = \app\common\model\User::getByEmail($email);
  292. if (!$user) {
  293. $this->error(__('User not found'));
  294. }
  295. $ret = Ems::check($email, $captcha, 'resetpwd');
  296. if (!$ret) {
  297. $this->error(__('Captcha is incorrect'));
  298. }
  299. Ems::flush($email, 'resetpwd');
  300. }
  301. //模拟一次登录
  302. $this->auth->direct($user->id);
  303. $ret = $this->auth->changepwd($newpassword, '', true);
  304. if ($ret) {
  305. $this->success(__('Reset password successful'));
  306. } else {
  307. $this->error($this->auth->getError());
  308. }
  309. }
  310. /**
  311. * 留言内容
  312. *
  313. */
  314. public function leavelist(){
  315. $this->success('请求成功',Leave::where('uid',$this->auth->id)->field('id,type,content,createtime')->selectOrFail());
  316. }
  317. /**
  318. * 留言
  319. * @ApiMethod (POST)
  320. * @param string $content 留言内容
  321. */
  322. public function leave(){
  323. $input = $this->_validate(['content|留言内容'=>'require']);
  324. $data = [
  325. 'uid' => $this->auth->id,
  326. 'content' => $input['content'],
  327. 'type' => 1
  328. ];
  329. $inc = Leave::insert($data);
  330. if($inc){
  331. $this->success('留言成功',$inc);
  332. }else{
  333. $this->error('留言失败');
  334. }
  335. }
  336. }