User.php 11 KB

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