User.php 30 KB

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