User.php 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305
  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\Config;
  8. use think\Validate;
  9. use app\common\library\Token;
  10. use think\Db;
  11. use app\common\model\UserDeviceInfo;
  12. use onlogin\onlogin;
  13. use addons\epay\library\Service;
  14. use app\common\library\Wechat;
  15. use app\common\library\Tenim;
  16. /**
  17. * 会员接口,登录,注册,修改资料等
  18. */
  19. class User extends Api
  20. {
  21. protected $noNeedLogin = ['emaillogin','emailregister','mobilelogin','resetpwd'];
  22. protected $noNeedRight = '*';
  23. public function _initialize()
  24. {
  25. parent::_initialize();
  26. }
  27. /**
  28. * 邮箱登录
  29. *
  30. * @ApiMethod (POST)
  31. * @param string $account 账号
  32. * @param string $password 密码
  33. */
  34. public function emaillogin()
  35. {
  36. $account = input('account');
  37. $password = input('password');
  38. if (!$account || !$password) {
  39. $this->error(__('Invalid parameters'));
  40. }
  41. if (!Validate::is($account, 'email')) {
  42. $this->error(__('Email is incorrect'));
  43. }
  44. $ret = $this->auth->login($account, $password);
  45. if ($ret) {
  46. $this->success(__('Logged in successful'), $this->auth->getUserinfo_simple());
  47. } else {
  48. $this->error($this->auth->getError());
  49. }
  50. }
  51. //邮箱注册
  52. public function emailregister()
  53. {
  54. $account = input('account');
  55. $captcha = input('captcha');
  56. $password = input('password');
  57. if (!$account || !$captcha || !$password) {
  58. $this->error(__('Invalid parameters'));
  59. }
  60. if (!Validate::is($account, 'email')) {
  61. $this->error(__('Email is incorrect'));
  62. }
  63. $ret = Ems::check($account, $captcha, 'register');
  64. if (!$ret) {
  65. $this->error(__('Captcha is incorrect'));
  66. }
  67. $extend = [
  68. 'register_from' => input('register_from',''),
  69. 'gender' => -1
  70. ];
  71. $ret = $this->auth->register('',$password,$account,'', $extend);
  72. if ($ret) {
  73. Ems::flush($account);
  74. $this->success('注册成功', $this->auth->getUserinfo_simple());
  75. } else {
  76. $this->error($this->auth->getError());
  77. }
  78. }
  79. /**
  80. * 手机验证码登录 + 注册
  81. *
  82. * @ApiMethod (POST)
  83. * @param string $mobile 手机号
  84. * @param string $captcha 验证码
  85. */
  86. public function mobilelogin()
  87. {
  88. $mobile = input('mobile');
  89. $captcha = input('captcha');
  90. if (!$mobile || !$captcha) {
  91. $this->error(__('Invalid parameters'));
  92. }
  93. if (!Validate::regex($mobile, "^1\d{10}$")) {
  94. $this->error(__('Mobile is incorrect'));
  95. }
  96. if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
  97. $this->error(__('Captcha is incorrect'));
  98. }
  99. $user = \app\common\model\User::getByMobile($mobile);
  100. if ($user) {
  101. if ($user->status == -1) {
  102. $this->error('账户已注销');
  103. }
  104. if (!in_array($user->status,[1,2])) {
  105. $this->error(__('Account is locked'));
  106. }
  107. if ($user->frozentime > time()) {
  108. $this->error('您的账号已被封禁至' . date('Y-m-d H:i'));
  109. }
  110. //如果已经有账号则直接登录
  111. $ret = $this->auth->direct($user->id);
  112. } else {
  113. $extend = [
  114. 'register_from' => input('register_from',''),
  115. 'gender' => -1
  116. ];
  117. $ret = $this->auth->register('', '', '', $mobile, $extend);
  118. }
  119. if ($ret) {
  120. Sms::flush($mobile, 'mobilelogin');
  121. $this->success(__('Logged in successful'), $this->auth->getUserinfo_simple());
  122. } else {
  123. $this->error($this->auth->getError());
  124. }
  125. }
  126. //注册设置性别
  127. public function setgender() {
  128. $user_id = $this->auth->id;
  129. $gender = input('gender', -1, 'intval'); //性别:1=男,0=女
  130. if (!in_array($gender, [1, 0])) {
  131. $this->error('性别错误');
  132. }
  133. $edit_data['gender'] = $gender;
  134. $edit_data['avatar'] = $gender == 1 ? config('avatar_boy') : config('avatar_girl'); //头像
  135. $rs = Db::name('user')->where(['id' => $user_id])->update($edit_data);
  136. if ($rs === false) {
  137. $this->error('您的网络开小差啦~');
  138. }
  139. $data['gender'] = $edit_data['gender'];
  140. $data['avatar'] = $edit_data['avatar'];
  141. //设置头像
  142. $tenim = new Tenim();
  143. $tenim->useredit(''.$user_id,'',localpath_to_netpath($data['avatar']));
  144. $this->success('success', $data);
  145. }
  146. //刷新随机昵称
  147. public function get_rand_nick_name(){
  148. $nickname = $this->auth->get_rand_nick_name();
  149. $this->success('success', $nickname);
  150. }
  151. //注册完善资料
  152. public function perfect_info() {
  153. $avatar = input('avatar', '', 'trim'); //头像
  154. $nickname = input('nickname', '', 'trim'); //昵称
  155. $birthday = input('birthday', '', 'strtotime'); //生日
  156. $hometown_cityid = input('hometown_cityid', '', 'trim'); //城市id
  157. $bio = input('bio', '', 'trim'); //个性签名
  158. $hobby = input('hobby', '', 'trim'); //爱好
  159. $marital = input('marital', '', 'trim'); //婚姻
  160. $introcode = input('introcode', '', 'trim'); //邀请码
  161. $data = [];
  162. if ($avatar) {
  163. $data['avatar'] = $avatar;
  164. }
  165. if ($nickname !== '') {
  166. if (iconv_strlen($nickname, 'utf-8') > 10) {
  167. $this->error('昵称最多10个字~');
  168. }
  169. $data['nickname'] = $nickname;
  170. }
  171. if ($birthday) {
  172. $data['birthday'] = $birthday;
  173. }
  174. if ($hometown_cityid) {
  175. $count = Db::name('area')->where('id', $hometown_cityid)->count('id');
  176. if (!$count) {
  177. $this->error('城市不存在');
  178. }
  179. $data['hometown_cityid'] = $hometown_cityid;
  180. }
  181. if ($bio) {
  182. $data['bio'] = $bio;
  183. }
  184. if ($hobby) {
  185. $data['hobby'] = $hobby;
  186. }
  187. if ($marital) {
  188. $data['marital'] = $marital;
  189. }
  190. if ($introcode && !$this->auth->intro_uid) {
  191. $intro_user = Db::name('user')->field('id, intro_uid')->where('introcode', $introcode)->find();
  192. if ($intro_user && $intro_user['id'] != $this->auth->id && $intro_user['intro_uid'] != $this->auth->id) {
  193. $data['intro_uid'] = $intro_user['id'];
  194. $data['invite_time'] = time();
  195. }
  196. }
  197. //开启事务
  198. Db::startTrans();
  199. $update_rs = Db::name('user')->where('id',$this->auth->id)->update($data);
  200. if($update_rs === false){
  201. Db::rollback();
  202. $this->error('修改失败');
  203. }
  204. //给上级发放收益
  205. if(isset($data['intro_uid'])){
  206. $intro_gold = config('site.new_user_intro_gold');
  207. if($intro_gold > 0){
  208. $rs_wallet = model('wallet')->lockChangeAccountRemain($data['intro_uid'], 0,'money',$intro_gold,34,'邀请'.$this->auth->username.'注册奖励');
  209. if($rs_wallet['status'] === false){
  210. Db::rollback();
  211. $this->error('邀请新人奖励赠送失败');
  212. }
  213. }
  214. }
  215. //上传头像加5金币
  216. if(isset($data['avatar'])){
  217. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,19);
  218. if($task_rs === false){
  219. Db::rollback();
  220. $this->error('完成任务赠送奖励失败');
  221. }
  222. }
  223. if (isset($data['birthday'])) {
  224. //完成设置生日 +5金币
  225. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,1);
  226. if($task_rs === false){
  227. Db::rollback();
  228. $this->error('完成任务赠送奖励失败');
  229. }
  230. }
  231. Db::commit();
  232. //设置头像和昵称
  233. $tenim = new Tenim();
  234. $tenim->useredit(''.$user_id,$nickname,localpath_to_netpath($avatar));
  235. $this->success('修改成功');
  236. }
  237. //用户详细资料
  238. public function userInfo($type = 1){
  239. $info = $this->auth->getUserinfo();
  240. $info['is_vip'] = $this->is_vip($info['vip_endtime'],$info['vip_level']);
  241. if($type == 'return'){
  242. return $info;
  243. }
  244. $this->success(__('success'),$info);
  245. }
  246. /**
  247. * 修改会员个人信息
  248. *
  249. * @ApiMethod (POST)
  250. * @param string $avatar 头像地址
  251. * @param string $username 用户名
  252. * @param string $nickname 昵称
  253. * @param string $bio 个人简介
  254. */
  255. public function profile()
  256. {
  257. $field_array = ['nickname','introcode',/*'gender',*/'birthday','height','weight','bio','audio_bio','avatar','photo_images','education','hobby','job','marital','tag','wages','hometown_cityid','hide_is_finishinfo',/*'wechat_account',*/'character','constellation','stature','is_appointment', 'greet_voice', 'greet_chat', 'is_cohabit', 'live', 'is_house', 'car', 'chest', 'waist','suqiu'];
  258. $data = [];
  259. foreach($field_array as $key => $field){
  260. if(!input('?'.$field)){
  261. continue;
  262. }
  263. $newone = input($field);
  264. if($field == 'avatar'){
  265. // if ($this->auth->real_status == 1) {
  266. //$this->error('您已经真人认证不能修改头像~');
  267. // die;
  268. // }
  269. $newone = input('avatar', '', 'trim,strip_tags,htmlspecialchars');
  270. }
  271. if($field == 'photo_images'){
  272. $newone = input('photo_images', '', 'trim,strip_tags,htmlspecialchars');
  273. }
  274. $data[$field] = $newone;
  275. }
  276. if(isset($data['birthday'])){
  277. $data['birthday'] = strtotime($data['birthday']);
  278. }
  279. if(isset($data['avatar'])){
  280. //$data['real_status'] = -1; //或许应该改成0。性别不能改所以不需要
  281. }
  282. if(isset($data['introcode'])){
  283. if ($this->auth->intro_uid != 0) {
  284. $this->error('邀请人不可修改~');
  285. }
  286. $intro_user = Db::name('user')->field('id, intro_uid')->where('introcode', $data['introcode'])->find();
  287. if(!$intro_user){
  288. $this->error('不存在的邀请人');
  289. }
  290. if ($intro_user['id'] == $this->auth->id) {
  291. $this->error('不能填写自己邀请码');
  292. }
  293. if ($intro_user['intro_uid'] == $this->auth->id) {
  294. $this->error('不能填写下级邀请码');
  295. }
  296. unset($data['introcode']);//别人的邀请码,不能改了自己的
  297. $data['intro_uid'] = $intro_user['id'];
  298. $data['invite_time'] = time();
  299. }
  300. //dump($data);
  301. if(empty($data)){
  302. $this->error('没有任何改变');
  303. }
  304. Db::startTrans();
  305. $userData = Db::name('user')->field('avatar,gender,status')->where('id',$this->auth->id)->find();
  306. if (isset($data['avatar']) && !empty($data['avatar']) && $userData['status'] == 2) {//隐藏
  307. $boyAvatar = config('avatar_boy');
  308. $girlAvatar = config('avatar_girl');
  309. if ($userData['gender'] == 1 && $data['avatar'] != $boyAvatar) {
  310. $data['status'] = 1;//更新为正常
  311. } elseif ($userData['gender'] == 0 && $data['avatar'] != $girlAvatar) {
  312. $data['status'] = 1;//更新为正常
  313. }
  314. }
  315. $update_rs = Db::name('user')->where('id',$this->auth->id)->update($data);
  316. if($update_rs === false){
  317. Db::rollback();
  318. $this->error('修改资料失败');
  319. }
  320. //给上级发放收益
  321. if(isset($data['intro_uid'])){
  322. $intro_gold = config('site.new_user_intro_gold');
  323. if($intro_gold > 0){
  324. $rs_wallet = model('wallet')->lockChangeAccountRemain($data['intro_uid'], 0,'money',$intro_gold,34,'邀请'.$this->auth->username.'注册奖励');
  325. if($rs_wallet['status'] === false){
  326. Db::rollback();
  327. $this->error('邀请新人奖励赠送失败');
  328. }
  329. }
  330. }
  331. //tag任务赠送金币
  332. //上传头像加5金币
  333. if(isset($data['avatar'])){
  334. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,19);
  335. if($task_rs === false){
  336. Db::rollback();
  337. $this->error('完成任务赠送奖励失败');
  338. }
  339. }
  340. //上传生日 +5金币
  341. if (isset($data['birthday'])) {
  342. //完成设置生日 +5金币
  343. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,1);
  344. if($task_rs === false){
  345. Db::rollback();
  346. $this->error('完成任务赠送奖励失败');
  347. }
  348. }
  349. //上传个性签名 5金币
  350. if(isset($data['bio'])){
  351. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,2);
  352. if($task_rs === false){
  353. Db::rollback();
  354. $this->error('完成任务赠送奖励失败');
  355. }
  356. }
  357. //上传本人语音介绍 10金币
  358. if(isset($data['audio_bio'])){
  359. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,21);
  360. if($task_rs === false){
  361. Db::rollback();
  362. $this->error('完成任务赠送奖励失败');
  363. }
  364. }
  365. //上传本人五张照片 10金币
  366. if(isset($data['photo_images'])){
  367. $photo_images_num = count(explode(',',$data['photo_images'])) + count(explode(',',$this->auth->photo_images));
  368. if ($photo_images_num >= 5) {
  369. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id, 5);
  370. if ($task_rs === false) {
  371. Db::rollback();
  372. $this->error('完成任务赠送奖励失败');
  373. }
  374. }
  375. }
  376. Db::commit();
  377. $this->success();
  378. }
  379. /**
  380. * 退出登录
  381. * @ApiMethod (POST)
  382. */
  383. public function logout()
  384. {
  385. if (!$this->request->isPost()) {
  386. $this->error(__('Invalid parameters'));
  387. }
  388. //退出im
  389. $tenIm = new Tenim();
  390. $tenIm->loginoutim($this->auth->id);
  391. //修改用户活跃0
  392. Db::name('user')->where('id',$this->auth->id)->update(['is_active' => 0]);
  393. $this->auth->logout();
  394. $this->success(__('Logout successful'));
  395. }
  396. /**
  397. * 重置密码
  398. *
  399. * @ApiMethod (POST)
  400. * @param string $mobile 手机号
  401. * @param string $newpassword 新密码
  402. * @param string $captcha 验证码
  403. */
  404. public function resetpwd()
  405. {
  406. //$type = input("type");
  407. $type = 'email';
  408. $mobile = input("mobile");
  409. $email = input("email");
  410. $newpassword = input("newpassword");
  411. $captcha = input("captcha");
  412. if (!$newpassword || !$captcha) {
  413. $this->error(__('Invalid parameters'));
  414. }
  415. if ($type == 'mobile') {
  416. if (!Validate::regex($mobile, "^1\d{10}$")) {
  417. $this->error(__('Mobile is incorrect'));
  418. }
  419. $user = \app\common\model\User::getByMobile($mobile);
  420. if (!$user) {
  421. $this->error(__('User not found'));
  422. }
  423. $ret = Sms::check($mobile, $captcha, 'resetpwd');
  424. if (!$ret) {
  425. $this->error(__('Captcha is incorrect'));
  426. }
  427. Sms::flush($mobile, 'resetpwd');
  428. } else {
  429. if (!Validate::is($email, "email")) {
  430. $this->error(__('Email is incorrect'));
  431. }
  432. $user = \app\common\model\User::getByEmail($email);
  433. if (!$user) {
  434. $this->error(__('User not found'));
  435. }
  436. $ret = Ems::check($email, $captcha, 'resetpwd');
  437. if (!$ret) {
  438. $this->error(__('Captcha is incorrect'));
  439. }
  440. Ems::flush($email, 'resetpwd');
  441. }
  442. //模拟一次登录
  443. $this->auth->direct($user->id);
  444. $ret = $this->auth->changepwd($newpassword, '', true);
  445. if ($ret) {
  446. $this->success(__('Reset password successful'));
  447. } else {
  448. $this->error($this->auth->getError());
  449. }
  450. }
  451. /**
  452. * 微信注册来的,绑定手机号
  453. *
  454. * @ApiMethod (POST)
  455. * @param string $mobile 手机号
  456. * @param string $captcha 验证码
  457. */
  458. public function bindmobile()
  459. {
  460. $user = $this->auth->getUser();
  461. $mobile = $this->request->request('mobile');
  462. $captcha = $this->request->request('captcha');
  463. if(!empty($this->auth->mobile)){
  464. $this->error('已经绑定了手机号');
  465. }
  466. if (!$mobile || !$captcha) {
  467. $this->error(__('Invalid parameters'));
  468. }
  469. if (!Validate::regex($mobile, "^1\d{10}$")) {
  470. $this->error(__('Mobile is incorrect'));
  471. }
  472. if (\app\common\model\User::where('mobile', $mobile)->find()) {
  473. $this->error('该手机号已被其他用户绑定');
  474. }
  475. $result = Sms::check($mobile, $captcha, 'changemobile');
  476. if (!$result) {
  477. $this->error(__('Captcha is incorrect'));
  478. }
  479. $user->mobile = $mobile;
  480. $user->save();
  481. Sms::flush($mobile, 'changemobile');
  482. //手机号奖励
  483. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,18);
  484. if($task_rs === false){
  485. Db::rollback();
  486. return false;
  487. }
  488. $this->success('success',$this->userInfo('return'));
  489. }
  490. //注销配置
  491. public function cancleconfig(){
  492. $rs = [
  493. 'rule' => config('site.user_cancle_rules'),
  494. 'reason' => [
  495. '想换个新账号',
  496. '没有聊得来的',
  497. '不想玩了',
  498. '其他原因',
  499. ],
  500. ];
  501. $this->success(1,$rs);
  502. }
  503. //假注销
  504. public function cancleUser(){
  505. if (!$this->request->isPost()) {
  506. $this->error(__('Invalid parameters'));
  507. }
  508. //退出im
  509. $tenIm = new Tenim();
  510. $tenIm->loginoutim($this->auth->id);
  511. $data = [
  512. 'status' => -1,
  513. 'mobile' => 'close_'.$this->auth->mobile,
  514. 'wechat_openid' => 'close_'.$this->auth->wechat_openid,
  515. ];
  516. Db::name('user')->where('id',$this->auth->id)->update($data);
  517. $this->auth->logout();
  518. $this->success('注销成功');
  519. }
  520. //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  521. /**
  522. * 手机验证码验证
  523. *
  524. * @ApiMethod (POST)
  525. * @param string $mobile 手机号
  526. * @param string $captcha 验证码
  527. */
  528. /*public function mobilecheck()
  529. {
  530. $mobile = input('mobile');
  531. $captcha = input('captcha');
  532. if (!$mobile || !$captcha) {
  533. $this->error(__('Invalid parameters'));
  534. }
  535. if (!Validate::regex($mobile, "^1\d{10}$")) {
  536. $this->error(__('Mobile is incorrect'));
  537. }
  538. if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
  539. $this->error(__('Captcha is incorrect'));
  540. }
  541. $this->success('验证通过');
  542. }*/
  543. /**
  544. * 手机验证码注册
  545. *
  546. * @ApiMethod (POST)
  547. * @param string $mobile 手机号
  548. * @param string $captcha 验证码
  549. * @param string $gender 性别:1=男,0=女
  550. */
  551. /*public function mobileregister()
  552. {
  553. $mobile = input('mobile');
  554. $captcha = input('captcha');
  555. $gender = input('gender', -1, 'intval'); //性别:1=男,0=女
  556. if (!$mobile || !$captcha) {
  557. $this->error(__('Invalid parameters'));
  558. }
  559. if (!Validate::regex($mobile, "^1\d{10}$")) {
  560. $this->error(__('Mobile is incorrect'));
  561. }
  562. if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
  563. $this->error(__('Captcha is incorrect'));
  564. }
  565. if (!in_array($gender, [1, 0])) {
  566. $this->error('性别错误');
  567. }
  568. $user = \app\common\model\User::getByMobile($mobile);
  569. if ($user) {
  570. $this->error('账号已经存在,请直接登录');
  571. if ($user->status == -1) {
  572. $this->error('账户已注销');
  573. }
  574. if (!in_array($user->status,[1,2])) {
  575. $this->error(__('Account is locked'));
  576. }
  577. //如果已经有账号则直接登录
  578. $ret = $this->auth->direct($user->id);
  579. } else {
  580. $extend = [
  581. 'register_from' => input('register_from',''),
  582. 'gender' => $gender
  583. ];
  584. $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, $extend);
  585. }
  586. if ($ret) {
  587. Sms::flush($mobile, 'mobilelogin');
  588. $data = $this->userInfo('return');
  589. $this->success(__('Logged in successful'), $data);
  590. } else {
  591. $this->error($this->auth->getError());
  592. }
  593. }*/
  594. /**
  595. * 运营商一键登录
  596. */
  597. /*public function onLogin()
  598. {
  599. $accessToken = input('accessToken');// 运营商预取号获取到的token
  600. $token = input('tokenT');// 易盾返回的token
  601. if (!$accessToken || !$token) {
  602. $this->error("参数获取失败!");
  603. }
  604. $params = array(
  605. // 运营商预取号获取到的token
  606. "accessToken" => $accessToken,
  607. // 易盾返回的token
  608. "token" => $token
  609. );
  610. // 获取密钥配置
  611. $configInfo = config("onLogin");
  612. $onlogin = new onlogin($configInfo["secretid"], $configInfo["secretkey"], $configInfo["businessid"]);
  613. $onret = $onlogin->check($params);
  614. // $ret = [];
  615. // $ret["code"] = 200;
  616. // $ret["msg"] = "ok";
  617. // $ret["data"] = [
  618. // "phone" => "17574504021",
  619. // "resultCode" => 0
  620. // ];
  621. if ($onret["code"] == 200) {
  622. $mobile = $onret["data"]["phone"];
  623. if (empty($mobile)) {
  624. // 取号失败,建议进行二次验证,例如短信验证码
  625. $this->error("取号登录失败,请用验证码方式登录!");
  626. } else {
  627. // 取号成功, 执行登录等流程
  628. // 用户登录逻辑 === 开始
  629. $user = \app\common\model\User::getByMobile($mobile);
  630. if ($user) {
  631. if (!in_array($user->status,[1,2])) {
  632. $this->error(__('Account is locked'));
  633. }
  634. if ($user->frozentime > time()) {
  635. $this->error('您的账号已被封禁至' . date('Y-m-d H:i'));
  636. }
  637. //如果已经有账号则直接登录
  638. $ret = $this->auth->direct($user->id);
  639. $is_register = 0;
  640. } else {
  641. $extend = [
  642. 'register_from' => input('register_from',''),
  643. 'gender' => -1
  644. ];
  645. $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, $extend);
  646. $is_register = 1;
  647. }
  648. if ($ret) {
  649. $this->success(__('Logged in successful'), $this->auth->getUserinfo());
  650. } else {
  651. $this->error($this->auth->getError());
  652. }
  653. // 用户登录逻辑 === 结束
  654. }
  655. } else {
  656. $this->error("登录失败,请用验证码方式登录!");
  657. }
  658. }*/
  659. /**
  660. * 运营商一键登录注册
  661. */
  662. /*public function onregister()
  663. {
  664. $accessToken = input('accessToken');// 运营商预取号获取到的token
  665. $token = input('tokenT');// 易盾返回的token
  666. $gender = input('gender', -1, 'intval'); //性别:1=男,0=女
  667. if (!$accessToken || !$token) {
  668. $this->error("参数获取失败!");
  669. }
  670. if (!in_array($gender, [1, 0])) {
  671. $this->error('性别错误');
  672. }
  673. $params = array(
  674. // 运营商预取号获取到的token
  675. "accessToken" => $accessToken,
  676. // 易盾返回的token
  677. "token" => $token
  678. );
  679. // 获取密钥配置
  680. $configInfo = config("onLogin");
  681. $onlogin = new onlogin($configInfo["secretid"], $configInfo["secretkey"], $configInfo["businessid"]);
  682. $onret = $onlogin->check($params);
  683. // $ret = [];
  684. // $ret["code"] = 200;
  685. // $ret["msg"] = "ok";
  686. // $ret["data"] = [
  687. // "phone" => "17574504021",
  688. // "resultCode" => 0
  689. // ];
  690. if ($onret["code"] == 200) {
  691. $mobile = $onret["data"]["phone"];
  692. if (empty($mobile)) {
  693. // 取号失败,建议进行二次验证,例如短信验证码
  694. $this->error("取号登录失败,请用验证码方式登录!");
  695. } else {
  696. // 取号成功, 执行登录等流程
  697. // 用户登录逻辑 === 开始
  698. $user = \app\common\model\User::getByMobile($mobile);
  699. if ($user) {
  700. $this->error('账号已经存在,请直接登录');
  701. if (!in_array($user->status,[1,2])) {
  702. $this->error(__('Account is locked'));
  703. }
  704. //如果已经有账号则直接登录
  705. $ret = $this->auth->direct($user->id);
  706. $is_register = 0;
  707. } else {
  708. $extend = [
  709. 'register_from' => input('register_from',''),
  710. 'gender' => $gender
  711. ];
  712. $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, $extend);
  713. $is_register = 1;
  714. }
  715. //结果
  716. if ($ret) {
  717. $this->success(__('Logged in successful'), $this->auth->getUserinfo());
  718. } else {
  719. $this->error($this->auth->getError());
  720. }
  721. // 用户登录逻辑 === 结束
  722. }
  723. } else {
  724. $this->error("登录失败,请用验证码方式登录!");
  725. }
  726. }*/
  727. //微信登录,预先假注册
  728. /*public function wechatlogin(){
  729. $code = input('code','');
  730. if(!$code){
  731. $this->error(__('Invalid parameters'));
  732. }
  733. //微信
  734. $wechat = new Wechat();
  735. $wxuserinfo = $wechat->getAccessToken($code);
  736. if(!$wxuserinfo){
  737. $this->error('openid获取失败');
  738. }
  739. if(!is_array($wxuserinfo) || !isset($wxuserinfo['openid'])){
  740. $this->error('openid获取失败');
  741. }
  742. $openid = $wxuserinfo['openid'];
  743. //检查用户
  744. $user = Db::name('user')->where('wechat_openid',$openid)->find();
  745. if ($user) {
  746. if ($user['status'] == -1) {
  747. $this->error('账户已注销');
  748. }
  749. if ($user['status'] != 1) {
  750. $this->error(__('Account is locked'));
  751. }
  752. //如果已经有账号则直接登录
  753. $ret = $this->auth->direct($user['id']);
  754. if ($ret) {
  755. $userInfo = $this->auth->getUserinfo();
  756. $userInfo['is_register'] = 0;
  757. $userInfo['code'] = $code;
  758. $this->success(__('Logged in successful'), $userInfo);
  759. } else {
  760. $this->error($this->auth->getError());
  761. }
  762. } else {
  763. //记录code和openid,绑定手机号的时候更新openid
  764. $wechatCodeData = [
  765. 'code' => $code,
  766. 'openid' => $openid,
  767. 'createtime' => time(),
  768. ];
  769. $wechatCode = Db::name('wechat_code')->where(['openid'=>$openid])->find();
  770. if (empty($wechatCode)) {
  771. Db::name('wechat_code')->insertGetId($wechatCodeData);
  772. } else {
  773. Db::name('wechat_code')->where(['openid'=>$openid])->update($wechatCodeData);
  774. }
  775. //直接返回
  776. $userInfo = [];
  777. $userInfo['is_register'] = 1;
  778. $userInfo['code'] = $code;
  779. $this->success('获取信息成功', $userInfo);
  780. }
  781. }*/
  782. /**
  783. * 微信注册来的,绑定手机号
  784. *
  785. * @ApiMethod (POST)
  786. * @param string $mobile 手机号
  787. * @param string $captcha 验证码
  788. */
  789. /*public function wechatbindmobile()
  790. {
  791. $mobile = $this->request->param('mobile');
  792. $captcha = $this->request->param('captcha');
  793. $code = $this->request->param('code');
  794. if (!$mobile || !$captcha || !$code) {
  795. $this->error(__('Invalid parameters'));
  796. }
  797. if (!Validate::regex($mobile, "^1\d{10}$")) {
  798. $this->error(__('Mobile is incorrect'));
  799. }
  800. $result = Sms::check($mobile, $captcha, 'changemobile');
  801. if (!$result) {
  802. $this->error(__('Captcha is incorrect'));
  803. }
  804. $wechatCodeWhere['code'] = $code;
  805. $wechatCode = Db::name('wechat_code')->where($wechatCodeWhere)->find();
  806. if (empty($wechatCode)) {
  807. $this->error('请先微信登录');
  808. }
  809. //检查appid绑定的用户
  810. $user = Db::name('user')->where('wechat_openid',$wechatCode['openid'])->find();
  811. if ($user) {
  812. if ($user['status'] == -1) {
  813. $this->error('账户已注销');
  814. }
  815. if ($user['status'] != 1) {
  816. $this->error(__('Account is locked'));
  817. }
  818. //如果已经有账号则直接登录
  819. $ret = $this->auth->direct($user['id']);
  820. $this->success('success',$this->auth->getUserinfo());
  821. }
  822. //新的openid用户
  823. $where = [];
  824. $where['mobile'] = $mobile;
  825. $userData = Db::name('user')->where($where)->find();//老用户
  826. if (!empty($userData)) {
  827. if (empty($userData['wechat_openid'])) {
  828. Db::name('user')->where('id',$userData['id'])->update(['wechat_openid' => $wechatCode['openid']]);//老用户更新openid
  829. } else {
  830. if ($userData['wechat_openid'] != $wechatCode['openid']) {
  831. $this->error('该手机号已被其他用户绑定');
  832. }
  833. }
  834. $ret = $this->auth->direct($userData['id']);
  835. } else {
  836. $extend = [
  837. 'wechat_openid' => $wechatCode['openid'],
  838. ];
  839. $ret = $this->auth->register('', '','', $mobile, $extend);
  840. }
  841. if (!$ret) {
  842. $this->error($this->auth->getError());
  843. }
  844. $this->success('success',$this->auth->getUserinfo());
  845. }*/
  846. /*
  847. * 修改用户的坐标
  848. * */
  849. public function change_longlat(){
  850. $longitude = input_post('longitude');
  851. $latitude = input_post('latitude');
  852. $cityname = input_post('cityname');
  853. if(empty($longitude) || empty($latitude) || empty($cityname)){
  854. $this->error();
  855. }
  856. $data = [
  857. 'longitude' => $longitude,
  858. 'latitude' => $latitude,
  859. 'cityname' => $cityname,
  860. ];
  861. Db::name('user')->where('id',$this->auth->id)->update($data);
  862. $this->success();
  863. }
  864. /**
  865. * 修改手机号
  866. *
  867. * @ApiMethod (POST)
  868. * @param string $mobile 手机号
  869. * @param string $captcha 验证码
  870. */
  871. public function changemobile()
  872. {
  873. $user = $this->auth->getUser();
  874. $oldcaptcha = $this->request->request('oldcaptcha');
  875. $mobile = $this->request->request('mobile');
  876. $captcha = $this->request->request('captcha');
  877. if (!$oldcaptcha || !$mobile || !$captcha) {
  878. $this->error(__('Invalid parameters'));
  879. }
  880. if (!Validate::regex($mobile, "^1\d{10}$")) {
  881. $this->error(__('Mobile is incorrect'));
  882. }
  883. if($user->mobile == $mobile){
  884. $this->error('新手机号不能与旧手机号相同');
  885. }
  886. if (\app\common\model\User::where('mobile', $mobile)->find()) {
  887. $this->error(__('Mobile already exist'));
  888. }
  889. $result = Sms::check($user->mobile, $oldcaptcha, 'changemobile');
  890. if (!$result) {
  891. $this->error(__('Captcha is incorrect'));
  892. }
  893. $result = Sms::check($mobile, $captcha, 'changemobile');
  894. if (!$result) {
  895. $this->error(__('Captcha is incorrect'));
  896. }
  897. /*$verification = $user->verification;
  898. $verification->mobile = 1;
  899. $user->verification = $verification;*/
  900. $user->mobile = $mobile;
  901. $user->save();
  902. Sms::flush($user->mobile, 'changemobile');
  903. Sms::flush($mobile, 'changemobile');
  904. $this->success();
  905. }
  906. /**
  907. * 手机号注册来的,绑定微信
  908. *
  909. * @ApiMethod (POST)
  910. * @param string wechat_openid 微信openid
  911. */
  912. /*public function bindopenid()
  913. {
  914. $user = $this->auth->getUser();
  915. $wechat_openid = $this->request->request('wechat_openid');
  916. if(!empty($this->auth->wechat_openid)){
  917. $this->error('已经绑定了微信号');
  918. }
  919. if (!$wechat_openid) {
  920. $this->error(__('Invalid parameters'));
  921. }
  922. if (\app\common\model\User::where('wechat_openid', $wechat_openid)->find()) {
  923. $this->error('该微信号已被其他用户绑定');
  924. }
  925. $user->wechat_openid = $wechat_openid;
  926. $user->save();
  927. $this->success('success',$this->userInfo('return'));
  928. }*/
  929. /**
  930. * 修改密码
  931. *
  932. * @ApiMethod (POST)
  933. * @param string $newpassword 新密码
  934. * @param string $oldpassword 旧密码
  935. */
  936. public function changepwd(){
  937. $newpassword = input('newpassword');
  938. $oldpassword = input('oldpassword','');
  939. if (!$newpassword) {
  940. $this->error(__('Invalid parameters'));
  941. }
  942. if($this->auth->password && empty($oldpassword)){
  943. $this->error('原密码必填');
  944. }
  945. if(empty($this->auth->password)){
  946. $ret = $this->auth->changepwd($newpassword, '', true);
  947. }else{
  948. $ret = $this->auth->changepwd($newpassword,$oldpassword,false);
  949. }
  950. if ($ret) {
  951. $this->success(__('Reset password successful'));
  952. } else {
  953. $this->error($this->auth->getError());
  954. }
  955. }
  956. /**
  957. * 记录当前登陆的设备ID,设备信息,IP等
  958. */
  959. /* public function changeDeviceIp()
  960. {
  961. // 接口防并发
  962. if (!$this->apiLimit(1, 5)) {
  963. return ;
  964. }
  965. $user = $this->auth->getUser();
  966. $ip = request()->ip();
  967. $deviceId = $this->request->request('device_id','');
  968. $phoneModel = $this->request->request('phone_model','');
  969. $brand = $this->request->request('brand','');
  970. $apiVersion = $this->request->request('api_version','');
  971. $deviceOs = $this->request->request('device_os','');
  972. if ($ip !== $user->loginip){
  973. $update = [];
  974. $update['id'] = $user->id;
  975. $update['loginip'] = $ip;
  976. \app\common\model\User::update($update);
  977. }
  978. $userDeviceInfo = UserDeviceInfo::get(['user_id'=>$user->u_id]);
  979. if (empty($userDeviceInfo)){
  980. $userDeviceInfo = new UserDeviceInfo();
  981. $userDeviceInfo->user_id = $user->u_id;
  982. }
  983. $userDeviceInfo->device_os = $deviceOs;
  984. $userDeviceInfo->device_id = $deviceId;
  985. $userDeviceInfo->phone_model = $phoneModel;
  986. $userDeviceInfo->brand = $brand;
  987. $userDeviceInfo->api_version = $apiVersion;
  988. $userDeviceInfo->save();
  989. //首页接口调用,这里不反回信息
  990. // $this->success("更新成功!");
  991. }*/
  992. //修改用户活跃1
  993. /*public function useractive(){
  994. $this->success('success');
  995. }*/
  996. //公众号获取openid
  997. /*public function getUserOpenid_gzh(){
  998. $configValue = Service::getConfig('wechat');
  999. $wechat = new Wechat($configValue['app_id'],$configValue['app_secret']);
  1000. $rs = $wechat->getOpenid();
  1001. $this->success('success',$rs);
  1002. }*/
  1003. /**
  1004. * 微信内H5-JSAPI支付
  1005. */
  1006. /*public function jssdkBuildConfig() {
  1007. $url = $this->request->request("url");
  1008. $configValue = Service::getConfig('wechat');
  1009. $wechat = new Wechat($configValue['app_id'],$configValue['app_secret']);
  1010. $sign = $wechat->getSignPackage(urldecode($url));
  1011. $this->success("获取成功!",$sign);
  1012. }*/
  1013. //苹果账号登录
  1014. /*public function ioslogin(){
  1015. $ios_openid = input('ios_openid','');
  1016. if (!$ios_openid) {
  1017. $this->error(__('Invalid parameters'));
  1018. }
  1019. $user = Db::name('user')->where(['ios_openid' => $ios_openid])->find();
  1020. // if (!$user) {
  1021. // $this->success('选择性别', ['code' => 5]);
  1022. // }
  1023. if ($user) {
  1024. if (!in_array($user->status,[1,2])) {
  1025. $this->error(__('Account is locked'));
  1026. }
  1027. if ($user->frozentime > time()) {
  1028. $this->error('您的账号已被封禁至' . date('Y-m-d H:i'));
  1029. }
  1030. //如果已经有账号则直接登录
  1031. $ret = $this->auth->direct($user->id);
  1032. } else {
  1033. $reg_data = [
  1034. 'register_from' => input('register_from',''),
  1035. 'gender' => -1
  1036. ];
  1037. $ret = $this->auth->iosopenid_register($ios_openid,$reg_data);
  1038. }
  1039. if ($ret) {
  1040. $data = $this->userInfo('return');
  1041. $this->success(__('Logged in successful'), $data);
  1042. } else {
  1043. $this->error($this->auth->getError());
  1044. }
  1045. }*/
  1046. //苹果账号注册
  1047. /*public function iosregiter(){
  1048. $ios_openid = input('ios_openid', '', 'trim');
  1049. $gender = input('gender', -1, 'intval'); //性别:1=男,0=女
  1050. if (!$ios_openid) {
  1051. $this->error(__('Invalid parameters'));
  1052. }
  1053. if (!in_array($gender, [1, 0])) {
  1054. $this->error('性别错误');
  1055. }
  1056. $user = Db::name('user')->where(['ios_openid' => $ios_openid])->find();
  1057. if ($user) {
  1058. $this->error('账号已经存在,请直接登录');
  1059. }
  1060. $reg_data = [
  1061. 'register_from' => input('register_from',''),
  1062. 'gender' => $gender
  1063. ];
  1064. $ret = $this->auth->iosopenid_register($ios_openid,$reg_data);
  1065. if ($ret) {
  1066. $data = $this->userInfo('return');
  1067. $this->success(__('Logged in successful'), $data);
  1068. } else {
  1069. $this->error($this->auth->getError());
  1070. }
  1071. }*/
  1072. //客服
  1073. public function kefu() {
  1074. $type = input('type', 0, 'intval'); //客服位置: 0客服中心 1充值客服
  1075. if (!in_array($type, [0, 1])) {
  1076. $this->error('您的网络开小差啦~');
  1077. }
  1078. if ($type == 0) {
  1079. $user_id = config('site.customer_service_id') ? : 0; //指定客服id
  1080. } else {
  1081. $user_id = config('site.pay_customer_service_id') ? : 0; //指定客服id
  1082. }
  1083. $list = Db::name('user')->field('id')->where(['status' => 1, 'is_kefu' => 1, 'id' => $user_id])->select();
  1084. if (!$list) {
  1085. $this->success('success', $list);
  1086. }
  1087. foreach ($list as $k => &$v) {
  1088. $v['nickname'] = '客服' . ($k + 1);
  1089. $v['avatar'] = config('avatar_girl');
  1090. }
  1091. $this->success('success', $list);
  1092. }
  1093. //修改城市
  1094. public function editcity() {
  1095. $name = input('name', '', 'trim'); //城市名
  1096. if ($name === '') {
  1097. $this->error('参数缺失');
  1098. }
  1099. $hometown_cityid = Db::name('area')->where(['name' => $name])->value('id');
  1100. if (!$hometown_cityid) {
  1101. $this->success('修改成功');
  1102. }
  1103. Db::name('user')->where(['id' => $this->auth->id])->setField('hometown_cityid', $hometown_cityid);
  1104. $this->success('修改成功');
  1105. }
  1106. //搜索用户
  1107. public function searchuser() {
  1108. $keyword = input('keyword', '', 'trim'); //昵称或ID
  1109. if ($keyword === '') {
  1110. $this->error('请输入关键字');
  1111. }
  1112. $id = Db::name('user')->where(['nickname|username' => $keyword])->value('id');
  1113. $id = $id ? : 0;
  1114. $this->success('用户', $id);
  1115. }
  1116. }