User.php 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  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', '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. * @ApiMethod (POST)
  27. * @ApiReturnParams (name=code,type="integer",description=错误码:0=失败1=成功401=未登录403=没有权限)
  28. * @ApiReturnParams (name=msg,type="string",description=提示信息)
  29. * @ApiReturnParams (name=data,type="array",description=要返回的数据)
  30. * @ApiReturnParams (name=data.id,type="integer",description=用户ID)
  31. * @ApiReturnParams (name=data.username,type="string",description=用户姓名)
  32. * @ApiReturnParams (name=data.email,type="string",description=邮箱)
  33. * @ApiReturnParams (name=data.mobile,type="integer",description=手机号)
  34. * @ApiReturnParams (name=data.avatar,type="string",description=头像地址)
  35. * @ApiReturnParams (name=data.gender,type="string",description=性别)
  36. * @ApiReturnParams (name=data.birthday,type="string",description=出生年月)
  37. * @ApiReturnParams (name=data.rights,type="integer",description=是否有权益:0=没有1=有)
  38. */
  39. public function index()
  40. {
  41. $user = $this->auth->getUserinfo();
  42. $this->success('用户信息', $user);
  43. }
  44. /**
  45. * 手机验证码登录
  46. *
  47. * @ApiMethod (POST)
  48. * @param string $mobile 手机号
  49. * @param string $captcha 验证码
  50. */
  51. public function mobile_login()
  52. {
  53. $mobile = $this->request->post('mobile');
  54. $captcha = $this->request->post('captcha');
  55. if (!$mobile || !$captcha) {
  56. $this->error(__('Invalid parameters'));
  57. }
  58. if (!Validate::regex($mobile, "^1\d{10}$")) {
  59. $this->error(__('Mobile is incorrect'));
  60. }
  61. if (!Sms::check($mobile, $captcha, 'register')) {
  62. $this->error(__('Captcha is incorrect'));
  63. }
  64. $user = \app\common\model\User::getByMobile($mobile);
  65. if ($user) {
  66. if ($user->status != 'normal') {
  67. $this->error(__('Account is locked'));
  68. }
  69. //如果已经有账号则直接登录
  70. $ret = $this->auth->direct($user->id);
  71. } else {
  72. $ret = $this->auth->register('植提桥用户'.substr($mobile,-4), Random::alnum(), '', $mobile, []);
  73. }
  74. if ($ret) {
  75. Sms::flush($mobile, 'register');
  76. $data = ['userinfo' => $this->auth->getUserinfo()];
  77. $this->success(__('Logged in successful'), $data);
  78. } else {
  79. $this->error($this->auth->getError());
  80. }
  81. }
  82. /**
  83. * 退出登录
  84. * @ApiMethod (POST)
  85. */
  86. public function logout()
  87. {
  88. if (!$this->request->isPost()) {
  89. $this->error(__('Invalid parameters'));
  90. }
  91. $this->auth->logout();
  92. $this->success(__('Logout successful'));
  93. }
  94. /**
  95. * 修改会员个人信息
  96. *
  97. * @ApiMethod (POST)
  98. * @param string $avatar 头像地址
  99. * @param string $username 用户名
  100. * @param string $gender 性别
  101. * @param string $mobile 手机号
  102. * @param string $birthday 出生年月
  103. * @param string $email 邮箱
  104. */
  105. public function profile()
  106. {
  107. $user = $this->auth->getUser();
  108. $email = $this->request->post('email');
  109. $username = $this->request->post('username');
  110. $gender = $this->request->post('gender');
  111. $mobile = $this->request->post('mobile');
  112. $birthday = $this->request->post('birthday');
  113. $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
  114. if ($username) {
  115. $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
  116. if ($exists) {
  117. $this->error(__('Username already exists'));
  118. }
  119. $user->username = $username;
  120. }
  121. $user->bio = $email;
  122. $user->avatar = $avatar;
  123. $user->gender = $gender;
  124. $user->mobile = $mobile;
  125. $user->birthday = $birthday;
  126. $user->save();
  127. $this->success();
  128. }
  129. /**
  130. * 修改邮箱
  131. *
  132. * @ApiMethod (POST)
  133. * @param string $email 邮箱
  134. * @param string $captcha 验证码
  135. */
  136. public function changeemail()
  137. {
  138. $user = $this->auth->getUser();
  139. $email = $this->request->post('email');
  140. $captcha = $this->request->post('captcha');
  141. if (!$email || !$captcha) {
  142. $this->error(__('Invalid parameters'));
  143. }
  144. if (!Validate::is($email, "email")) {
  145. $this->error(__('Email is incorrect'));
  146. }
  147. if (\app\common\model\User::where('email', $email)->where('id', '<>', $user->id)->find()) {
  148. $this->error(__('Email already exists'));
  149. }
  150. $result = Ems::check($email, $captcha, 'changeemail');
  151. if (!$result) {
  152. $this->error(__('Captcha is incorrect'));
  153. }
  154. $verification = $user->verification;
  155. $verification->email = 1;
  156. $user->verification = $verification;
  157. $user->email = $email;
  158. $user->save();
  159. Ems::flush($email, 'changeemail');
  160. $this->success();
  161. }
  162. /**
  163. * 修改手机号
  164. *
  165. * @ApiMethod (POST)
  166. * @param string $mobile 手机号
  167. * @param string $captcha 验证码
  168. */
  169. public function changemobile()
  170. {
  171. $user = $this->auth->getUser();
  172. $mobile = $this->request->post('mobile');
  173. $captcha = $this->request->post('captcha');
  174. if (!$mobile || !$captcha) {
  175. $this->error(__('Invalid parameters'));
  176. }
  177. if (!Validate::regex($mobile, "^1\d{10}$")) {
  178. $this->error(__('Mobile is incorrect'));
  179. }
  180. if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
  181. $this->error(__('Mobile already exists'));
  182. }
  183. $result = Sms::check($mobile, $captcha, 'changemobile');
  184. if (!$result) {
  185. $this->error(__('Captcha is incorrect'));
  186. }
  187. $verification = $user->verification;
  188. $verification->mobile = 1;
  189. $user->verification = $verification;
  190. $user->mobile = $mobile;
  191. $user->save();
  192. Sms::flush($mobile, 'changemobile');
  193. $this->success();
  194. }
  195. /**
  196. * 第三方登录
  197. *
  198. * @ApiMethod (POST)
  199. * @param string $platform 平台名称
  200. * @param string $code Code码
  201. */
  202. public function third()
  203. {
  204. $url = url('user/index');
  205. $platform = $this->request->post("platform");
  206. $code = $this->request->post("code");
  207. $config = get_addon_config('third');
  208. if (!$config || !isset($config[$platform])) {
  209. $this->error(__('Invalid parameters'));
  210. }
  211. $app = new \addons\third\library\Application($config);
  212. //通过code换access_token和绑定会员
  213. $result = $app->{$platform}->getUserInfo(['code' => $code]);
  214. if ($result) {
  215. $loginret = \addons\third\library\Service::connect($platform, $result);
  216. if ($loginret) {
  217. $data = [
  218. 'userinfo' => $this->auth->getUserinfo(),
  219. 'thirdinfo' => $result
  220. ];
  221. $this->success(__('Logged in successful'), $data);
  222. }
  223. }
  224. $this->error(__('Operation failed'), $url);
  225. }
  226. /**
  227. * 留言内容
  228. *
  229. */
  230. public function leavelist(){
  231. $this->success('请求成功',Leave::where('uid',$this->auth->id)->field('id,type,content,createtime')->selectOrFail());
  232. }
  233. /**
  234. * 留言
  235. * @ApiMethod (POST)
  236. * @param string $content 留言内容
  237. */
  238. public function leave(){
  239. $input = $this->_validate(['content|留言内容'=>'require']);
  240. $data = [
  241. 'uid' => $this->auth->id,
  242. 'content' => $input['content'],
  243. 'type' => 1
  244. ];
  245. $inc = Leave::insert($data);
  246. if($inc){
  247. $this->success('留言成功',$inc);
  248. }else{
  249. $this->error('留言失败');
  250. }
  251. }
  252. }