User.php 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\controller\general\Profile;
  4. use app\common\controller\Api;
  5. use app\common\controller\InitFaceVerify;
  6. use app\common\library\Ems;
  7. use app\common\library\Sms;
  8. use app\common\model\Activity;
  9. use app\common\model\Apply;
  10. use app\common\model\Area;
  11. use app\common\model\EducationAuthentication;
  12. use app\common\model\Like;
  13. use app\common\model\MoneyLog;
  14. use app\common\model\Order;
  15. use app\common\model\Selection;
  16. use app\common\model\SystemMessages;
  17. use app\common\model\UserObject;
  18. use app\common\model\WorkAuthentication;
  19. use fast\Random;
  20. use http\Params;
  21. use think\Config;
  22. use think\Db;
  23. use think\Exception;
  24. use think\Request;
  25. use think\Validate;
  26. use app\common\model\User as UserModel;
  27. use addons\epay\controller\Api as payApi;
  28. use app\api\controller\Common;
  29. /**
  30. * 会员接口
  31. */
  32. class User extends Api
  33. {
  34. protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third'];
  35. protected $noNeedRight = '*';
  36. public function _initialize()
  37. {
  38. parent::_initialize();
  39. if (!Config::get('fastadmin.usercenter')) {
  40. $this->error(__('User center already closed'));
  41. }
  42. }
  43. /**
  44. * 会员中心
  45. * @ApiReturnParams(name="integrity", description='个人资料进度')
  46. * @ApiReturnParams(name="ilike", description='我喜欢的')
  47. * @ApiReturnParams(name="likeme", description='喜欢我的')
  48. * @ApiReturnParams(name="apply", description='申请我的')
  49. * @ApiReturnParams(name="authentication", description='认证数量')
  50. */
  51. public function index()
  52. {
  53. $uid = $this->auth->id;
  54. $userinfo = UserModel::where('id',$uid)
  55. ->with('userObject.education,education')
  56. ->find()
  57. ->toArray();
  58. $userinfo['integrity'] = $this->integrity();
  59. $userinfo['ilike'] = Like::where(['uid'=>$uid,'type'=>1])->count();
  60. $userinfo['likeme'] = Like::where(['nid'=>$uid,'type'=>1])->count();
  61. $userinfo['apply'] = Apply::where('nid',$uid)->count();
  62. $userinfo['lookme'] = Like::where(['nid'=>$uid,'type'=>2])->count();
  63. //未解锁数量
  64. $userinfo['likeme_subscript'] = Like::where(['nid'=>$uid,'type'=>1,'is_read'=>0])->count();
  65. $userinfo['apply_subscript'] = Apply::where(['nid'=>$uid,'n_is_read'=>0])->count();
  66. $userinfo['lookme_subscript'] = Like::where(['nid'=>$uid,'type'=>2,'is_read'=>0])->count();
  67. $userinfo['authentication'] = 0;
  68. $userinfo['id_authentication']?$userinfo['authentication']++:'';
  69. $userinfo['work_authentication']?$userinfo['authentication']++:'';
  70. $userinfo['education_authentication']?$userinfo['authentication']++:'';
  71. $userinfo['photo'] = explode(',',$userinfo['photo']);
  72. $userinfo['age'] = getAge($userinfo['birthday']);;
  73. //城市
  74. $userinfo['province_name'] = Area::where('id',$userinfo['province'])->value('name');
  75. $userinfo['city_name'] = Area::where('id',$userinfo['city'])->value('name');
  76. $userinfo['area_name'] = Area::where('id',$userinfo['area'])->value('name');
  77. $this->success('', ['welcome' => $userinfo]);
  78. }
  79. //计算信息完整度百分比
  80. public function integrity(){
  81. $userinfo = UserModel::where('id',$this->auth->id)
  82. ->field('avatar,gender,nickname,id,birthday,marriage,children,height,education,school,work,min_income,max_income,region_province,region_city,region_area,futurehometown,marriedtime,wx,signature,photo,tag,constellation,house,car,father_work,mother_work,brother')
  83. ->find()
  84. ->toArray();
  85. $userobject = UserObject::where('uid',$this->auth->id)->find()->toArray();
  86. $sum = count($userinfo) + count($userobject);
  87. $cpl = round( $this->count_($userinfo)+$this->count_($userobject)/$sum * 100) . "%";
  88. return $cpl;
  89. }
  90. //计算用户信息数量
  91. public function count_($arr){
  92. foreach ($arr as $k=>$v){
  93. if($v == ''){
  94. unset($arr[$k]);
  95. }
  96. }
  97. return count($arr);
  98. }
  99. /**
  100. * 我喜欢的/喜欢我的/申请我的/看了我的列表
  101. * @ApiMethod (POST)
  102. * @ApiParams (name="type",description="1我喜欢的 2喜欢我的 3申请我的 4看了我的")
  103. */
  104. public function dynamic(){
  105. $uid = $this->auth->id;
  106. $type = input('type');
  107. if($type==1){
  108. $ilike = Like::where(['uid'=>$uid,'type'=>1])
  109. ->with('Nuser')
  110. ->select();
  111. $res = $ilike;
  112. }elseif($type==2){
  113. $ilike = Like::where(['nid'=>$uid,'type'=>1])
  114. ->with('Uuser,Unlockprogress')
  115. ->select();
  116. foreach ($ilike as $k=>$v){
  117. Like::get(['uid'=>$uid,'nid'=>$v['uid']])??$ilike[$k]['like']=1;
  118. }
  119. $res = $ilike;
  120. Like::read($ilike);
  121. }elseif($type==3){
  122. $ilike = Apply::where(['nid'=>$uid])
  123. ->with('applyme')
  124. ->select();
  125. $res = $ilike;
  126. Apply::n_read($ilike);
  127. }elseif($type==4){
  128. $ilike = Like::where(['nid'=>$uid,'type'=>2])
  129. ->with('Uuser,Unlockprogress')
  130. ->select();
  131. $res = $ilike;
  132. Like::read($ilike);
  133. }
  134. $this->success('',$res);
  135. }
  136. /**
  137. * 申请我的操作
  138. * @param string $id id
  139. * @param string $type 1同意2拒绝
  140. */
  141. public function applyop(){
  142. $type = input('type');
  143. $apply = Apply::get(['status'=>0,'id'=>input('id')]);
  144. if(!$apply)$this->error('数据异常');
  145. if($type==1){
  146. $apply->save(['status'=>1]);
  147. $this->success('已同意',$apply);
  148. }elseif($type==2){
  149. $apply->save(['status'=>2]);
  150. $grain = $apply['grain']*0.5;
  151. UserModel::money($grain,$apply['uid'],'拒绝认识申请,退还狗粮');
  152. $this->success('已拒绝',$apply);
  153. }
  154. }
  155. /**
  156. * 会员登录
  157. *
  158. * @ApiMethod (POST)
  159. * @param string $account 账号
  160. * @param string $password 密码
  161. */
  162. public function login()
  163. {
  164. $account = $this->request->post('account');
  165. $password = $this->request->post('password');
  166. if (!$account || !$password) {
  167. $this->error(__('Invalid parameters'));
  168. }
  169. $ret = $this->auth->login($account, $password);
  170. if ($ret) {
  171. $data = ['userinfo' => $this->auth->getUserinfo()];
  172. $this->success(__('Logged in successful'), $data);
  173. } else {
  174. $this->error($this->auth->getError());
  175. }
  176. }
  177. /**
  178. * 手机验证码登录
  179. *
  180. * @ApiMethod (POST)
  181. * @param string $mobile 手机号
  182. * @param string $captcha 验证码
  183. * @param string $code code
  184. */
  185. public function mobilelogin()
  186. {
  187. $mobile = $this->request->post('mobile');
  188. $captcha = $this->request->post('captcha');
  189. $code = $this->request->post('code');
  190. if (!$mobile || !$captcha || !$code) {
  191. $this->error(__('Invalid parameters'));
  192. }
  193. if (!Validate::regex($mobile, "^1\d{10}$")) {
  194. $this->error(__('Mobile is incorrect'));
  195. }
  196. // if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
  197. // $this->error(__('Captcha is incorrect'));
  198. // }
  199. $user = \app\common\model\User::getByMobile($mobile);
  200. if ($user) {
  201. if ($user->status != 'normal') {
  202. $this->error(__('Account is locked'));
  203. }
  204. //如果已经有账号则直接登录
  205. $ret = $this->auth->direct($user->id);
  206. } else {
  207. $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, [],$code);
  208. //注册奖励
  209. $u = new \app\common\model\User();
  210. $u->registerAward($this->auth->id);
  211. }
  212. if ($ret) {
  213. Sms::flush($mobile, 'mobilelogin');
  214. $data = ['userinfo' => $this->auth->getUserinfo()];
  215. $data['openid'] = (new \app\api\controller\Common())->getOpenid($code);
  216. $this->success(__('Logged in successful'), $data);
  217. } else {
  218. $this->error($this->auth->getError());
  219. }
  220. }
  221. // /**
  222. // * 注册会员
  223. // *
  224. // * @ApiMethod (POST)
  225. // * @param string $username 用户名
  226. // * @param string $password 密码
  227. // * @param string $email 邮箱
  228. // * @param string $mobile 手机号
  229. // * @param string $code 验证码
  230. // */
  231. // public function register()
  232. // {
  233. // $username = $this->request->post('username');
  234. // $password = $this->request->post('password');
  235. // $email = $this->request->post('email');
  236. // $mobile = $this->request->post('mobile');
  237. // $code = $this->request->post('code');
  238. // if (!$username || !$password) {
  239. // $this->error(__('Invalid parameters'));
  240. // }
  241. // if ($email && !Validate::is($email, "email")) {
  242. // $this->error(__('Email is incorrect'));
  243. // }
  244. // if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
  245. // $this->error(__('Mobile is incorrect'));
  246. // }
  247. // $ret = Sms::check($mobile, $code, 'register');
  248. // if (!$ret) {
  249. // $this->error(__('Captcha is incorrect'));
  250. // }
  251. // $ret = $this->auth->register($username, $password, $email, $mobile, []);
  252. // if ($ret) {
  253. // $data = ['userinfo' => $this->auth->getUserinfo()];
  254. // $this->success(__('Sign up successful'), $data);
  255. // } else {
  256. // $this->error($this->auth->getError());
  257. // }
  258. // }
  259. /**
  260. * 退出登录
  261. * @ApiMethod (POST)
  262. */
  263. public function logout()
  264. {
  265. if (!$this->request->isPost()) {
  266. $this->error(__('Invalid parameters'));
  267. }
  268. $this->auth->logout();
  269. $this->success(__('Logout successful'));
  270. }
  271. /**
  272. * 修改会员个人信息
  273. *
  274. * @ApiMethod (POST)
  275. * @param string $avatar 头像地址
  276. * @param string $username 用户名
  277. * @param string $nickname 昵称
  278. * @param string $bio 个人简介
  279. */
  280. public function profile()
  281. {
  282. $user = $this->auth->getUser();
  283. $username = $this->request->post('username');
  284. $nickname = $this->request->post('nickname');
  285. $bio = $this->request->post('bio');
  286. $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
  287. if ($username) {
  288. $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
  289. if ($exists) {
  290. $this->error(__('Username already exists'));
  291. }
  292. $user->username = $username;
  293. }
  294. if ($nickname) {
  295. $exists = \app\common\model\User::where('nickname', $nickname)->where('id', '<>', $this->auth->id)->find();
  296. if ($exists) {
  297. $this->error(__('Nickname already exists'));
  298. }
  299. $user->nickname = $nickname;
  300. }
  301. $user->bio = $bio;
  302. $user->avatar = $avatar;
  303. $user->save();
  304. $this->success();
  305. }
  306. /**
  307. * 修改手机号
  308. *
  309. * @ApiMethod (POST)
  310. * @param string $mobile 手机号
  311. * @param string $captcha 验证码
  312. */
  313. public function changemobile()
  314. {
  315. $user = $this->auth->getUser();
  316. $mobile = $this->request->post('mobile');
  317. $captcha = $this->request->post('captcha');
  318. if (!$mobile || !$captcha) {
  319. $this->error(__('Invalid parameters'));
  320. }
  321. if (!Validate::regex($mobile, "^1\d{10}$")) {
  322. $this->error(__('Mobile is incorrect'));
  323. }
  324. if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
  325. $this->error(__('Mobile already exists'));
  326. }
  327. $result = Sms::check($mobile, $captcha, 'changemobile');
  328. if (!$result) {
  329. $this->error(__('Captcha is incorrect'));
  330. }
  331. $verification = $user->verification;
  332. $verification->mobile = 1;
  333. $user->verification = $verification;
  334. $user->mobile = $mobile;
  335. $user->save();
  336. Sms::flush($mobile, 'changemobile');
  337. $this->success();
  338. }
  339. // /**
  340. // * 第三方登录
  341. // *
  342. // * @ApiMethod (POST)
  343. // * @param string $platform 平台名称
  344. // * @param string $code Code码
  345. // */
  346. // public function third()
  347. // {
  348. // $url = url('user/index');
  349. // $platform = $this->request->post("platform");
  350. // $code = $this->request->post("code");
  351. // $config = get_addon_config('third');
  352. // if (!$config || !isset($config[$platform])) {
  353. // $this->error(__('Invalid parameters'));
  354. // }
  355. // $app = new \addons\third\library\Application($config);
  356. // //通过code换access_token和绑定会员
  357. // $result = $app->{$platform}->getUserInfo(['code' => $code]);
  358. // if ($result) {
  359. // $loginret = \addons\third\library\Service::connect($platform, $result);
  360. // if ($loginret) {
  361. // $data = [
  362. // 'userinfo' => $this->auth->getUserinfo(),
  363. // 'thirdinfo' => $result
  364. // ];
  365. // $this->success(__('Logged in successful'), $data);
  366. // }
  367. // }
  368. // $this->error(__('Operation failed'), $url);
  369. // }
  370. // /**
  371. // * 重置密码
  372. // *
  373. // * @ApiMethod (POST)
  374. // * @param string $mobile 手机号
  375. // * @param string $newpassword 新密码
  376. // * @param string $captcha 验证码
  377. // */
  378. // public function resetpwd()
  379. // {
  380. // $type = $this->request->post("type");
  381. // $mobile = $this->request->post("mobile");
  382. // $email = $this->request->post("email");
  383. // $newpassword = $this->request->post("newpassword");
  384. // $captcha = $this->request->post("captcha");
  385. // if (!$newpassword || !$captcha) {
  386. // $this->error(__('Invalid parameters'));
  387. // }
  388. // //验证Token
  389. // if (!Validate::make()->check(['newpassword' => $newpassword], ['newpassword' => 'require|regex:\S{6,30}'])) {
  390. // $this->error(__('Password must be 6 to 30 characters'));
  391. // }
  392. // if ($type == 'mobile') {
  393. // if (!Validate::regex($mobile, "^1\d{10}$")) {
  394. // $this->error(__('Mobile is incorrect'));
  395. // }
  396. // $user = \app\common\model\User::getByMobile($mobile);
  397. // if (!$user) {
  398. // $this->error(__('User not found'));
  399. // }
  400. // $ret = Sms::check($mobile, $captcha, 'resetpwd');
  401. // if (!$ret) {
  402. // $this->error(__('Captcha is incorrect'));
  403. // }
  404. // Sms::flush($mobile, 'resetpwd');
  405. // } else {
  406. // if (!Validate::is($email, "email")) {
  407. // $this->error(__('Email is incorrect'));
  408. // }
  409. // $user = \app\common\model\User::getByEmail($email);
  410. // if (!$user) {
  411. // $this->error(__('User not found'));
  412. // }
  413. // $ret = Ems::check($email, $captcha, 'resetpwd');
  414. // if (!$ret) {
  415. // $this->error(__('Captcha is incorrect'));
  416. // }
  417. // Ems::flush($email, 'resetpwd');
  418. // }
  419. // //模拟一次登录
  420. // $this->auth->direct($user->id);
  421. // $ret = $this->auth->changepwd($newpassword, '', true);
  422. // if ($ret) {
  423. // $this->success(__('Reset password successful'));
  424. // } else {
  425. // $this->error($this->auth->getError());
  426. // }
  427. // }
  428. /**
  429. * 基本信息填写
  430. *
  431. * @ApiMethod (POST)
  432. * @param string $gender 性别
  433. * @param string $marriage 婚姻状态
  434. * @param string $birthday 生日
  435. * @param string $height 身高
  436. * @param string $education 学历id
  437. * @param string $school 毕业学校
  438. * @param string $work 工作
  439. * @param string $max_income 收入
  440. * @param string $region_province 家乡所在省份
  441. * @param string $region_city 家乡所在市区
  442. * @param string $region_area 家乡所在区域
  443. * @param string $futurehometown 未来定居城市
  444. * @param string $marriedtime 计划结婚id
  445. * @param string $objecteducation ta的学历id
  446. * @param string $min_age ta的年龄最小值
  447. * @param string $max_age ta的年龄最大值
  448. * @param string $min_height ta的身高最小值
  449. * @param string $max_height ta的身高最大值
  450. * @param string $wx 微信号码
  451. * @param string $image 图片
  452. */
  453. public function userinfo(){
  454. $rule = [
  455. 'gender|性别'=>'require',
  456. 'marriage|婚姻状态'=>'require',
  457. 'birthday|生日'=>'require',
  458. 'height|身高'=>'require',
  459. 'education|学历'=>'require',
  460. 'school|毕业学校'=>'require',
  461. 'work|工作'=>'require',
  462. 'max_income|收入'=>'require',
  463. 'region_province|家乡所在省份'=>'require',
  464. 'region_city|家乡所在市区'=>'require',
  465. 'region_area|家乡所在区域'=>'require',
  466. 'futurehometown|未来定居城市'=>'require',
  467. 'wx|微信号码'=>'require',
  468. 'image|头像'=>'require',
  469. 'objecteducation|ta的学历'=>'require',
  470. 'min_age|ta的年龄'=>'require',
  471. 'max_age|ta的年龄'=>'require',
  472. 'min_height|ta的身高'=>'require',
  473. 'max_height|ta的身高'=>'require'
  474. ];
  475. $data = $this->_validate($rule);
  476. $userinfo = [
  477. 'gender'=>$data['gender'],
  478. 'marriage'=>$data['marriage'],
  479. 'birthday'=>$data['birthday'],
  480. 'height'=>$data['height'],
  481. 'education'=>$data['education'],
  482. 'school'=>$data['school'],
  483. 'work'=>$data['work'],
  484. 'max_income'=>$data['max_income'],
  485. 'region_province'=>$data['region_province'],
  486. 'region_city'=>$data['region_city'],
  487. 'region_area'=>$data['region_area'],
  488. 'futurehometown'=>$data['futurehometown'],
  489. 'wx'=>$data['wx'],
  490. 'avatar'=>$data['image'],
  491. ];;
  492. $userinfo['image_audit'] = 0;
  493. $userinfo['is_info'] = 1;
  494. $marriedtime = Selection::get(['id'=>input('marriedtime')]);
  495. $userinfo['marriedtime'] = $marriedtime['name'];
  496. $userinfo['min_marriedtime'] = $marriedtime['min'];
  497. $userinfo['max_marriedtime'] = $marriedtime['max'];
  498. $user = UserModel::get(['id'=>$this->auth->id]);
  499. //希望对象资料
  500. $userObject = [
  501. 'education'=>$data['education'],
  502. 'min_age'=>$data['min_age'],
  503. 'max_age'=>$data['max_age'],
  504. 'min_height'=>$data['min_height'],
  505. 'max_height'=>$data['max_height']
  506. ];
  507. $userObject['uid'] = $this->auth->id;
  508. if($user){
  509. Db::startTrans();
  510. try {
  511. $user->save($userinfo);
  512. UserObject::insert($userObject);
  513. Db::commit();
  514. $this->success('上传成功');
  515. }catch (Exception $exception){
  516. $this->error($exception);
  517. Db::rollback();
  518. return false;
  519. }
  520. }else{
  521. $this->error('状态异常');
  522. }
  523. }
  524. /**
  525. * 个人资料编辑
  526. * @ApiMethod (POST)
  527. * @param string $avatar 头像
  528. * @param string $photo 相册
  529. * @param string $username 昵称
  530. * @param string $province 所在省份
  531. * @param string $city 所在市区
  532. * @param string $area 所在区域
  533. * @param string $work 工作
  534. * @param string $max_income 收入最大值
  535. */
  536. public function userinfoedit(){
  537. $data = input('post.');
  538. if(!$data['avatar']){
  539. $data['image_audit'] = 0;
  540. }
  541. $user = UserModel::get(['id'=>$this->auth->id]);
  542. $user->save($data);
  543. $this->success('编辑成功',$user);
  544. }
  545. /**
  546. * 关于自己编辑
  547. * @param string $constellation 星座
  548. * @param string $height 身高
  549. * @param string $marriage 婚姻状态
  550. * @param string $children 有无子女
  551. * @param string $marriedtime 计划结婚
  552. * @param string $education 学历
  553. * @param string $school 毕业学校
  554. * @param string $house 房子
  555. * @param string $car 车子
  556. * @param string $father_work 父亲工作
  557. * @param string $mother_work 母亲工作
  558. * @param string $brother 兄弟姐妹
  559. * @param string $birthday 生日
  560. */
  561. public function aboutuser(){
  562. $input = input('post.');
  563. $user = UserModel::get(['id'=>$this->auth->id]);
  564. $user->save($input);
  565. $this->success('请求成功',$input);
  566. }
  567. /**
  568. * 希望对方编辑
  569. * @param string $constellation 星座
  570. * @param string $min_age 最小年龄
  571. * @param string $max_age 最大年龄
  572. * @param string $min_height 最小身高
  573. * @param string $max_height 最大身高
  574. * @param string $education 学历
  575. * @param string $car 车子
  576. * @param string $house 房子
  577. * @param string $marry 婚史
  578. * @param string $children 子女
  579. * @param string $locality 本地
  580. */
  581. public function aboutobject(){
  582. $input = input('post.');
  583. $data = UserObject::update($input,['uid'=>$this->auth->id]);
  584. if($data){
  585. $this->success('请求成功',$data);
  586. }else{
  587. $this->error('请求失败');
  588. }
  589. }
  590. /**
  591. * 标签编辑
  592. * @param string $tag 标签id(逗号分割)
  593. *
  594. */
  595. public function tagedit(){
  596. if($this->request->post()){
  597. $tag = UserModel::update(['tag'=>input('tag'),'id'=>$this->auth->id]);
  598. if($tag)$this->success('保存成功',$tag);
  599. $this->error('保存失败');
  600. }else{
  601. $this->success('',$this->auth->tag);
  602. }
  603. }
  604. /**
  605. * 个性签名编辑
  606. * @param string $signature 个性签名
  607. */
  608. public function signatureEdit(){
  609. $data = $this->_validate(['signature|内容'=>'require']);
  610. $user = UserModel::where('id',$this->auth->id)->findOrFail();
  611. $user->save($data)?$this->success('',$user):$this->error('失败');
  612. }
  613. /**
  614. * 关于我编辑
  615. * @param string $mehow 我的情况
  616. * @param string $objecthow 希望对方情况
  617. * @param string $familyhow 家庭情况
  618. */
  619. public function meHowEdit(){
  620. $data = $this->_validate(
  621. ['mehow|内容'=>'require',
  622. 'objecthow|内容'=>'require',
  623. 'familyhow|内容'=>'require',]
  624. );
  625. $user = UserModel::where('id',$this->auth->id)->findOrFail();
  626. $user->save($data)?$this->success('',$user):$this->error('失败');
  627. }
  628. /**
  629. * 我的认证状态
  630. */
  631. public function authentication(){
  632. $uid = $this->auth->id;
  633. $id_authentication = UserModel::where(['id'=>$uid])->value('id_authentication');
  634. $education_authentication = EducationAuthentication::where(['uid'=>$uid])->value('status');
  635. $work_authentication = WorkAuthentication::where(['uid'=>$uid])->value('status');
  636. $res = [
  637. 'id_authentication' => $id_authentication,
  638. 'education_authentication' => $education_authentication??-1,
  639. 'work_authentication' => $work_authentication??-1
  640. ];
  641. $this->success('',$res);
  642. }
  643. /**
  644. * 身份认证
  645. * @param string $CertName 真实姓名
  646. * @param string $CertNo 证件号码
  647. * @param string $MetaInfo
  648. * @param string $ReturnUrl
  649. */
  650. public function idAuthentication(){
  651. $CertName = $this->request->post('CertName');
  652. $CertNo = $this->request->post('CertNo');
  653. $MetaInfo = $this->request->post('MetaInfo');
  654. $ReturnUrl = $this->request->post('ReturnUrl');
  655. if(!$CertName && !$CertNo && !$MetaInfo && !$ReturnUrl){
  656. $this->error('参数缺失');
  657. }
  658. $res = [
  659. 'CertName'=>$CertName,
  660. 'CertNo'=>$CertNo,
  661. 'MetaInfo'=>$MetaInfo,
  662. 'ReturnUrl'=>$ReturnUrl,
  663. ];
  664. InitFaceVerify::main($res);
  665. }
  666. /**
  667. * 学历认证
  668. * @param string $education 学历
  669. * @param string $school 学校
  670. * @param string $authentication_method 认证方式
  671. * @param string $image 照片
  672. */
  673. public function educationAuthentication(){
  674. $rule = [
  675. 'education|学历'=>'require',
  676. 'school|学校'=>'require',
  677. 'authentication_method|认证方式'=>'require',
  678. 'image|照片'=>'require'
  679. ];
  680. $data = $this->_validate($rule);
  681. $data['uid'] = $this->auth->id;
  682. $data['status'] = 0;
  683. $res = EducationAuthentication::insert($data);
  684. if ($res){
  685. $this->success('',$res);
  686. }
  687. $this->error('提交失败',$res);
  688. }
  689. /**
  690. * 工作认证
  691. * @param string $work 职业
  692. * @param string $company_name 公司名称
  693. * @param string $authentication_method 认证方式
  694. * @param string $image 照片
  695. */
  696. public function workAuthentication(){
  697. $rule = [
  698. 'work|学历'=>'require',
  699. 'company_name|公司名称'=>'require',
  700. 'authentication_method|认证方式'=>'require',
  701. 'image|照片'=>'require'
  702. ];
  703. $data = $this->_validate($rule);
  704. $data['uid'] = $this->auth->id;
  705. $data['status'] = 0;
  706. $res = WorkAuthentication::insert($data);
  707. if ($res){
  708. $this->success('',$res);
  709. }
  710. $this->error('提交失败');
  711. }
  712. /**
  713. * 狗粮明细
  714. */
  715. public function moneyDetail(){
  716. $log = MoneyLog::all(['user_id'=>$this->auth->id]);
  717. foreach ($log as &$value){
  718. $value['createtime'] = date('Y-m-d H:i:s',$value['createtime']);
  719. }
  720. $this->success('',$log);
  721. }
  722. /**
  723. * 做任务赚狗粮
  724. * @ApiMethod (POST)
  725. * @ApiParams (name='type',description='完善资料,身份认证,学历认证,工作认证,邀请用户注册(领取奖励时传)')
  726. * @returnparam (name='[]',description='0未完成 1待领取 2已领取')
  727. */
  728. public function gainMoney(){
  729. $uid = $this->auth->id;
  730. if($this->request->post('type')){
  731. if($this->request->post('type')){
  732. $gain_grain = \config('site.gain_grain')[$this->request->post('type')];
  733. UserModel::money($gain_grain,$uid,$this->request->post('type'));
  734. }
  735. }else{
  736. $gain_grain = \config('site.gain_grain');
  737. MoneyLog::where(['user_id'=>$uid,'memo'=>'新人注册奖励'])->find()?$gain_grain['新人注册奖励']=2:$gain_grain['新人注册奖励']=1;
  738. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'完善资料'])->find()){
  739. $gain_grain['完善资料']=2;
  740. }else{
  741. $this->integrity()=='100%'?$gain_grain['完善资料']=1:$gain_grain['完善资料']=0;
  742. }
  743. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'身份认证'])->find()){
  744. $gain_grain['身份认证']=2;
  745. }else{
  746. $this->auth->id_authentication=='1'?$gain_grain['身份认证']=1:$gain_grain['身份认证']=0;
  747. }
  748. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'学历认证'])->find()){
  749. $gain_grain['学历认证']=2;
  750. }else{
  751. $this->auth->education_authentication=='1'?$gain_grain['学历认证']=1:$gain_grain['学历认证']=0;
  752. }
  753. if(MoneyLog::where(['user_id'=>$uid,'memo'=>'工作认证'])->find()){
  754. $gain_grain['工作认证']=2;
  755. }else{
  756. $this->auth->work_authentication=='1'?$gain_grain['工作认证']=1:$gain_grain['工作认证']=0;
  757. }
  758. $gain_grain['邀请用户注册'] = 0;
  759. }
  760. $this->success('',$gain_grain);
  761. }
  762. /**
  763. * 狗粮充值
  764. * @ApiMethod (POST)
  765. * @ApiParams (name='money',description='金额')
  766. * @ApiParams (name='openid',description='openid')
  767. */
  768. public function addMoney(){
  769. $uid = $this->auth->id;
  770. $money = $this->request->post('money');
  771. $openid = $this->request->post('openid');
  772. $num = \config('site.money')[$money];
  773. if(!$money && !$openid){
  774. $this->error('参数缺失');
  775. }
  776. if(!$uid && !$num){
  777. $this->error('系统错误');
  778. }
  779. $type = 'wechat';
  780. $orderId = (new \app\api\controller\Common())->getOrderId();
  781. $order = [
  782. 'uid'=>$uid,
  783. 'title'=>'狗粮充值',
  784. 'recharge_amount'=>$money,
  785. 'money'=>$num,
  786. 'type'=>1,
  787. 'orderid'=>$orderId
  788. ];
  789. Order::create($order);
  790. $notifyurl = $this->request->root(true) . '/addons/epay/api/notifyx/type/' . $type.'/orderid/'.$orderId;
  791. $returnurl = $this->request->root(true) . '/addons/epay/api/notifyx/type/' . $type.'/orderid/'.$orderId;
  792. $params = [
  793. 'amount'=>$money,
  794. 'orderid'=>$orderId,
  795. 'type'=>'wechat',
  796. 'title'=>'狗粮充值',
  797. 'notifyurl'=>$notifyurl,
  798. 'returnurl'=>$returnurl,
  799. 'method'=>"mp",
  800. 'openid'=>$openid
  801. ];
  802. $this->success('',\addons\epay\library\Service::submitOrder($params));
  803. }
  804. /**
  805. * 喜欢额度充值
  806. * @ApiMethod (POST)
  807. * @ApiParams (name='score',description='金额')
  808. * @ApiParams (name='openid',description='openid')
  809. */
  810. public function addScore(){
  811. $uid = $this->auth->id;
  812. $money = $this->request->post('score');
  813. $openid = $this->request->post('openid');
  814. $num = \config('site.score')[$money];
  815. if(!$money && !$openid){
  816. $this->error('参数缺失');
  817. }
  818. if(!$uid && !$num){
  819. $this->error('系统错误');
  820. }
  821. $type = 'wechat';
  822. $orderId = (new \app\api\controller\Common())->getOrderId();
  823. $order = [
  824. 'uid'=>$uid,
  825. 'title'=>'喜欢额度充值',
  826. 'recharge_amount'=>$money,
  827. 'money'=>$num,
  828. 'type'=>2,
  829. 'orderid'=>$orderId
  830. ];
  831. Order::create($order);
  832. $notifyurl = $this->request->root(true) . '/addons/epay/api/notifyx/type/' . $type.'/orderid/'.$orderId;
  833. $returnurl = $this->request->root(true) . '/addons/epay/api/notifyx/type/' . $type.'/orderid/'.$orderId;
  834. $params = [
  835. 'amount'=>$money,
  836. 'orderid'=>$orderId,
  837. 'type'=>'wechat',
  838. 'title'=>'喜欢额度充值',
  839. 'notifyurl'=>$notifyurl,
  840. 'returnurl'=>$returnurl,
  841. 'method'=>"mp",
  842. 'openid'=>$openid
  843. ];
  844. $this->success('',\addons\epay\library\Service::submitOrder($params));
  845. }
  846. /**
  847. * 活动列表
  848. * @param string $id id(获取详情时传)
  849. */
  850. public function activity(){
  851. if(!input('id')){
  852. $this->success('',Activity::field('content',true)->select());
  853. }else{
  854. $this->success('',Activity::find());
  855. }
  856. }
  857. /**
  858. * 注销操作
  859. * @ApiMethod (POST)
  860. * @ApiParams (name='code',description='验证码')
  861. * @ApiParams (name='reason_cancellation',description='注销原因')
  862. */
  863. public function reasonCancellation(){
  864. $code = $this->request->post('code');
  865. $reason_cancellation = $this->request->post('reason_cancellation');
  866. if(!$code && $reason_cancellation)$this->error('参数缺失');
  867. $uid = $this->auth->id;
  868. $user = UserModel::get(['id'=>$uid]);
  869. if($user['status'] == 'destruction')$this->error('非法操作');
  870. if (!Sms::check($user['mobile'], $code, 'destruction')) {
  871. $this->error(__('Captcha is incorrect'));
  872. }
  873. $user->save(['status'=>'destruction','reason_cancellation'=>$reason_cancellation]);
  874. $this->success('注销成功');
  875. }
  876. }