User.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. <?php
  2. namespace app\api\controller;
  3. use think\Console;
  4. use think\Db;
  5. use think\Request;
  6. use app\common\model\User as Users;
  7. use think\facade\Validate;
  8. use app\common\controller\Api;
  9. /**
  10. * @title 个人中心
  11. * @controller User
  12. */
  13. class User extends Api
  14. {
  15. /**
  16. * 微信授权登录
  17. * code
  18. */
  19. public function wechat_login(){
  20. $code = input('code');
  21. if (!$code) $this->error('code为空');
  22. $rawData = input('rawData'); //用户信息
  23. $result = Users::wechatLogin($code,$rawData);
  24. if ($result['code']){
  25. $this->success($result['msg'],$result['data']);
  26. }else{
  27. $this->error($result['msg']);
  28. }
  29. }
  30. /**
  31. * 获取用户信息
  32. */
  33. public function userinfo(){
  34. $this->check_login();
  35. $userinfo = Users::getUserInfo();
  36. $this->success('成功',$userinfo);
  37. }
  38. /**
  39. * 完善资料--基本资料
  40. */
  41. public function perfect_information_one(){
  42. $this->check_login();
  43. $data = input();
  44. // if (!$data['imgs'] || !$data['nickname'] || !$data['date_of_birth'] || !in_array($data['sex'],array('1','2')) || !$data['height'] || !$data['phone'] || !$data['wechat_id'] ||
  45. // !$data['annual_income'] || !$data['household'] || !$data['education'] || !$data['graduated_from'] || !$data['province'] || !$data['city'] || !$data['area'] || !$data['marriage'] ||
  46. // !in_array($data['marriage'],array('1','2','3','4')) || !$data['is_integral_to_phone'] || !in_array($data['is_integral_to_phone'],array('1','2'))){
  47. // $this->error('参数错误');
  48. // }
  49. if (!Validate::regex($data['phone'], "^1\d{10}$")) {
  50. $this->error('手机号格式错误');
  51. }
  52. $data['imgs'] = implode(',',$data['imgs']);
  53. //计算年龄
  54. $data['age'] = date('Y',time())-date('Y',strtotime($data['date_of_birth']));
  55. $result = Users::perfectInformation($data);
  56. if ($result['code']){
  57. $this->success($result['msg']);
  58. }else{
  59. $this->error($result['msg']);
  60. }
  61. }
  62. /**
  63. * 完善资料--关于我
  64. */
  65. public function perfect_information_two(){
  66. $this->check_login();
  67. $data = input();
  68. // if (!$data['introduce_myself'] || !$data['family_background'] || !$data['interests_hobbies'] || !$data['love'] || !$data['other_half'] || !$data['why_single'] || !$data['look_life']){
  69. // $this->error('参数错误');
  70. // }
  71. if (isset($data['introduce_myself_imgs']))
  72. $data['introduce_myself_imgs'] = implode(',',$data['introduce_myself_imgs']);
  73. if (isset($data['family_background_imgs']))
  74. $data['family_background_imgs'] = implode(',',$data['family_background_imgs']);
  75. if (isset($data['interests_hobbies_imgs']))
  76. $data['interests_hobbies_imgs'] = implode(',',$data['interests_hobbies_imgs']);
  77. if (isset($data['love_imgs']))
  78. $data['love_imgs'] = implode(',',$data['love_imgs']);
  79. if (isset($data['other_half_imgs']))
  80. $data['other_half_imgs'] = implode(',',$data['other_half_imgs']);
  81. if (isset($data['why_single_imgs']))
  82. $data['why_single_imgs'] = implode(',',$data['why_single_imgs']);
  83. if (isset($data['look_life_imgs']))
  84. $data['look_life_imgs'] = implode(',',$data['look_life_imgs']);
  85. $result = Users::perfectInformation($data);
  86. if ($result['code']){
  87. $this->success($result['msg']);
  88. }else{
  89. $this->error($result['msg']);
  90. }
  91. }
  92. /**
  93. * 完善资料--我的标签、照片
  94. */
  95. public function perfect_information_three(){
  96. $this->check_login();
  97. $data = input();
  98. // if (!$data['label']){
  99. // $this->error('参数错误');
  100. // }
  101. $data['label'] = implode(',',$data['label']);
  102. $result = Users::perfectInformation($data);
  103. if ($result['code']){
  104. $this->success($result['msg']);
  105. }else{
  106. $this->error($result['msg']);
  107. }
  108. }
  109. /**
  110. * 对另一半的要求
  111. */
  112. public function requirements_to_other(){
  113. $this->check_login();
  114. $data = input();
  115. if (!$data['hope_age'] || !$data['hope_height'] || !$data['hope_city'] || !$data['hope_hometown'] || !$data['hope_marriage'])
  116. $this->error('参数错误');
  117. $result = Users::perfectInformation($data);
  118. if ($result['code']){
  119. $this->success($result['msg']);
  120. }else{
  121. $this->error($result['msg']);
  122. }
  123. }
  124. /**
  125. * 实名认证
  126. */
  127. public function real_auth(){
  128. $this->check_login();
  129. $data = input();
  130. if (!$data['real_auth_img'] || !$data['real_auth_name'] || !$data['real_auth_id'])
  131. $this->error('参数错误');
  132. $data['real_auth_img'] = implode(',',$data['real_auth_img']);
  133. if (!Users::check_auth(1))
  134. $this->error('已认证成功');
  135. $result = Users::perfectInformation($data);
  136. if ($result['code']){
  137. $this->success($result['msg']);
  138. }else{
  139. $this->error($result['msg']);
  140. }
  141. }
  142. /**
  143. * 工作认证
  144. */
  145. public function work_auth(){
  146. $this->check_login();
  147. $data = input();
  148. if (!$data['work_auth_img'] || !$data['work_auth_company_name'] || !$data['shielding_colleagues_switch'])
  149. $this->error('参数错误');
  150. $data['work_auth_img'] = implode(',',$data['work_auth_img']);
  151. if (!Users::check_auth(2))
  152. $this->error('已认证成功');
  153. $result = Users::perfectInformation($data);
  154. if ($result['code']){
  155. $this->success($result['msg']);
  156. }else{
  157. $this->error($result['msg']);
  158. }
  159. }
  160. /**
  161. * 学历认证
  162. */
  163. public function education_auth(){
  164. $this->check_login();
  165. $data = input();
  166. if (!$data['education_auth_img'] || !$data['education_auth_school'] || !$data['education'])
  167. $this->error('参数错误');
  168. $data['education_auth_img'] = implode(',',$data['education_auth_img']);
  169. if (!Users::check_auth(3))
  170. $this->error('已认证成功');
  171. $result = Users::perfectInformation($data);
  172. if ($result['code']){
  173. $this->success($result['msg']);
  174. }else{
  175. $this->error($result['msg']);
  176. }
  177. }
  178. /**
  179. * 心动区
  180. */
  181. public function cardiac_area(){
  182. $this->check_login();
  183. $Nowpage = input('page') ? input('page') : 1;
  184. $limits = input("limit") ? input("limit") : 10;
  185. $result = Users::cardiacArea($Nowpage,$limits);
  186. $this->success($result['msg'],$result['data']);
  187. }
  188. /**
  189. * 互选池
  190. */
  191. public function elect_area(){
  192. $this->check_login();
  193. $Nowpage = input('page') ? input('page') : 1;
  194. $limits = input("limit") ? input("limit") : 10;
  195. $result = Users::electArea($Nowpage,$limits);
  196. $this->success($result['msg'],$result['data']);
  197. }
  198. /**
  199. * 我的积分
  200. */
  201. public function my_integral(){
  202. $this->check_login();
  203. $Nowpage = input('page') ? input('page') : 1;
  204. $limits = input("limit") ? input("limit") : 10;
  205. $type = input('type');
  206. $result = Users::myIntegral($Nowpage,$limits,$type);
  207. $this->success($result['msg'],$result['data']);
  208. }
  209. /**
  210. * 消息
  211. */
  212. public function message(){
  213. $this->check_login();
  214. $Nowpage = input('page') ? input('page') : 1;
  215. $limits = input("limit") ? input("limit") : 10;
  216. $result = Users::message($Nowpage,$limits);
  217. $this->success($result['msg'],$result['data']);
  218. }
  219. /**
  220. * 读取消息
  221. */
  222. public function read_message(){
  223. $this->check_login();
  224. $message_id = input('message_id');
  225. if (!$message_id) $this->error('消息ID为空');
  226. $result = Users::readMessage($message_id);
  227. $this->success($result['msg'],$result['data']);
  228. }
  229. /**
  230. * 消息数量
  231. */
  232. public function message_count(){
  233. $result = Users::messageCount();
  234. $this->success($result['msg'],$result['data']);
  235. }
  236. /**
  237. * 隐私设置
  238. */
  239. public function privacy_settings(){
  240. $this->check_login();
  241. $data = input();
  242. $result = Users::perfectInformation($data);
  243. if ($result['code']){
  244. $this->success($result['msg']);
  245. }else{
  246. $this->error($result['msg']);
  247. }
  248. }
  249. /**
  250. * 收藏用户
  251. */
  252. public function collect_user(){
  253. $this->check_login();
  254. $user_id = intval(input('user_id')); //用户id
  255. if (!$user_id) $this->error('用户ID为空!');
  256. $result = Users::collectUser($user_id);
  257. if ($result['code']){
  258. $this->success($result['msg']);
  259. }else{
  260. $this->error($result['msg']);
  261. }
  262. }
  263. /**
  264. * 取消收藏
  265. */
  266. public function del_collect_user(){
  267. $this->check_login();
  268. $user_id = intval(input('user_id')); //用户id
  269. if (!$user_id) $this->error('用户ID为空!');
  270. $result = Users::delCollectUser($user_id);
  271. if ($result['code']){
  272. $this->success($result['msg']);
  273. }else{
  274. $this->error($result['msg']);
  275. }
  276. }
  277. /**
  278. * 收藏用户列表
  279. */
  280. public function collect_list(){
  281. $this->check_login();
  282. $result = Users::collectList();
  283. if ($result['code']){
  284. $this->success($result['msg'],$result['data']);
  285. }else{
  286. $this->error($result['msg']);
  287. }
  288. }
  289. /**
  290. * 获取特权价格列表
  291. */
  292. public function privilege_price_list(){
  293. $result = Users::privilegePriceList();
  294. $this->success($result['msg'],$result['data']);
  295. }
  296. /**
  297. * 开通特权
  298. */
  299. public function open_privilege(){
  300. $this->check_login();
  301. $privilege_id = intval(input('privilege_id'));
  302. if (!$privilege_id) $this->error('参数错误');
  303. $result = Users::openPrivilege($privilege_id);
  304. if ($result['code']){
  305. $this->success($result['msg'],$result['data']);
  306. }else{
  307. $this->error($result['msg']);
  308. }
  309. }
  310. /**
  311. * 想认识我列表
  312. */
  313. public function want_to_me_list(){
  314. $this->check_login();
  315. $Nowpage = input('page',1);
  316. $limits = input("limit",10);
  317. $result = Users::wantToMeList($Nowpage,$limits);
  318. $this->success($result['msg'],$result['data']);
  319. }
  320. /**
  321. * @title 我想认识-收到的
  322. * @desc 我想认识-收到的
  323. * @url /api/User/receive_want_know
  324. * @method POST
  325. * @tag 基础
  326. * @header
  327. * @return name:pending@count type:int desc:待处理数量
  328. * @return name:pending@list type:array desc:待处理数量
  329. * @return name:pending@list@id type:int desc:申请ID
  330. * @return name:pending@list@leave_message type:int desc:留言
  331. * @return name:pending@list@state type:int desc:1:申请中2:同意3:不通过4:不合适5:终止申请
  332. * @return name:pending@list@create_at type:int desc:时间
  333. * @return name:pending@list@seven type:string desc:几天后自动拒绝
  334. *
  335. * @return name:have_deal@count type:int desc:已处理数量
  336. * @return name:have_deal@list type:array desc:已处理数量
  337. * @return name:have_deal@list@id type:int desc:申请ID
  338. * @return name:have_deal@list@leave_message type:int desc:留言
  339. * @return name:have_deal@list@state type:int desc:1:申请中2:同意3:不通过4:不合适5:终止申请
  340. * @return name:have_deal@list@create_at type:int desc:时间
  341. */
  342. public function receive_want_know(){
  343. $this->check_login();
  344. $result = Users::ReceiveWantKnow();
  345. $this->success($result['msg'],$result['data']);
  346. }
  347. /**
  348. * @title 我想认识-我发出的
  349. * @desc 我想认识-我发出的
  350. * @url /api/User/apply_want_know
  351. * @method POST
  352. * @tag 基础
  353. * @header
  354. * @return name:count type:int desc:数量
  355. * @return name:list type:array desc:列表
  356. * @return name:list@id type:int desc:申请ID
  357. * @return name:list@leave_message type:int desc:留言
  358. * @return name:list@state type:int desc:1:申请中2:同意3:不通过4:不合适5:终止申请
  359. * @return name:list@create_at type:int desc:时间
  360. */
  361. public function apply_want_know(){
  362. $this->check_login();
  363. $result = Users::ApplyWantKnow();
  364. $this->success($result['msg'],$result['data']);
  365. }
  366. /**
  367. * @title 我想认识-查看详情
  368. * @desc 我想认识-查看详情
  369. * @url /api/User/want_know_detail
  370. * @method POST
  371. * @tag 基础
  372. * @header
  373. * @param name:id type:int require:1 desc:申请主键ID
  374. */
  375. public function want_know_detail(){
  376. $this->check_login();
  377. $id = intval(input('id'));
  378. if (!$id) $this->error('参数错误');
  379. $result = Users::WantKnowDetail($id);
  380. $this->success($result['msg'],$result['data']);
  381. }
  382. /**
  383. * @title 好友列表
  384. * @desc 好友列表
  385. * @url /api/User/friend_list
  386. * @method POST
  387. * @tag 基础
  388. * @header
  389. * @return name:good_friends type:array desc:好友列表
  390. * @return name:star_friends type:array desc:星标好友列表
  391. * @return name:message_list type:array desc:消息列表
  392. */
  393. public function friend_list(){
  394. $this->check_login();
  395. $result = Users::FriendList();
  396. $this->success($result['msg'],$result['data']);
  397. }
  398. /**
  399. * @title 聊天小图标列表
  400. * @desc 聊天小图标列表
  401. * @url /api/User/icon_list
  402. * @method POST
  403. * @tag 基础
  404. * @header
  405. */
  406. public function icon_list(){
  407. $this->check_login();
  408. $result = Users::IconList();
  409. $this->success($result['msg'],$result['data']);
  410. }
  411. /**
  412. * 退出登录
  413. */
  414. public function cancellation_account(){
  415. $result = Users::cancellationAccount();
  416. if ($result['code']){
  417. $this->success($result['msg'],$result['data']);
  418. }else{
  419. $this->error($result['msg']);
  420. }
  421. }
  422. /**
  423. * 退出登录
  424. */
  425. public function login_out(){
  426. app()->session->clear();
  427. app()->session->destroy();
  428. $this->success('退出登录成功!');
  429. }
  430. }