Usercenter.php 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800
  1. <?php
  2. namespace app\api\controller;
  3. use addons\epay\library\Service;
  4. use app\api\controller\Common;
  5. use app\api\validate\user\Report;
  6. use outh\outh;
  7. use think\Db;
  8. use app\common\controller\RedisLeaderboard;
  9. use Redis;
  10. use GatewayClient\Gateway;
  11. /**
  12. * 会员中心接口
  13. */
  14. class UserCenter extends Common
  15. {
  16. protected $noNeedLogin = ['shujuhuifu','getAnchorType','getRecharConfig','getExchangeConfig','getLevelExplain'];
  17. protected $noNeedRight = '*';
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->userModel = new \app\common\model\User();
  22. }
  23. /**
  24. * 获取当前用户信息
  25. */
  26. public function getMyUserInfo() {
  27. $this->success("获取成功!",$this->auth->getUserinfo());
  28. }
  29. /**
  30. * 获取个人信息
  31. */
  32. public function getUserInfo() {
  33. $user_id = $this->request->request("user_id");
  34. if (!$user_id) {
  35. $this->error(__('Invalid parameters'));
  36. }
  37. // 获取基本信息
  38. $where = [];
  39. $where["id"] = $user_id;
  40. $userInfo = $this->userModel->field("id,nickname,image,mobile,avatar,gender,money,age,u_id,level,jewel")->where($where)->find();
  41. // 获取技能信息
  42. $skillList = Model("ViewUserSkill")->getSkillInfo($user_id);
  43. $userInfo["skill"] = implode("/",$skillList);
  44. // 获取关注粉丝信息
  45. $followModel = new \app\common\model\ViewFollows();
  46. $fansModel = new \app\common\model\ViewFans();
  47. // 获取关注信息
  48. $where = [];
  49. $where["user_id"] = $user_id;
  50. $userCount = $followModel->where($where)->value("follows");
  51. // 获取粉丝数
  52. $where = [];
  53. $where["user_id"] = $user_id;
  54. $fansCount = $fansModel->where($where)->value("fans");
  55. $userInfo["follows_count"] = $userCount?$userCount:0;
  56. $userInfo["fans_count"] = $fansCount?$fansCount:0;
  57. // 获取贵族信息
  58. $nobleInfo = $this->userModel->getUserNobleInfo($user_id);
  59. // 查看者是否已关注
  60. $followid = \app\common\model\UserFansFollow::where(["fans_id"=>$this->auth->id,"user_id"=>$user_id])->value("id");
  61. $userInfo["is_follow"] = $followid>0?1:0;
  62. $userInfo = json_decode(json_encode($userInfo),true);
  63. $userInfo = array_merge($userInfo,$nobleInfo);
  64. // 获取用户在派对直播间情况信息
  65. $redis = new Redis();
  66. $redisconfig = config("redis");
  67. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  68. $livingUserPartyId = $redis->hGet("livingUser", $user_id);
  69. $userInfo['party_info'] = json([]);
  70. if ($livingUserPartyId) {
  71. $party = \app\common\model\Party::where('id',$livingUserPartyId)->field('id,room_type')->find();
  72. $userInfo['party_info'] = ['party_id' => $party['id'], 'room_type' => $party['room_type']];
  73. }
  74. $this->success("获取成功!",$userInfo);
  75. }
  76. /**
  77. * 添加关注
  78. */
  79. public function addFollows() {
  80. $user_id = $this->request->request("user_id",0,"intval");// 关注者ID
  81. $type = $this->request->request("type",1);// 类型:1=关注,2=取消关注
  82. if (!$user_id || $user_id<=0) {
  83. $this->error(__('Invalid parameters'));
  84. }
  85. if($type == 1) {
  86. if($user_id == $this->auth->id) {
  87. $this->error("不需要关注自己哦!");
  88. }
  89. $fansfollowModel = new \app\common\model\UserFansFollow();
  90. $data = [];
  91. $data["user_id"] = $user_id;
  92. $data["fans_id"] = $this->auth->id;
  93. if($fansfollowModel->where($data)->find()) {
  94. $this->error("你已经关注过ta啦!");
  95. }
  96. $data["createtime"] = time();
  97. $id = $fansfollowModel->insertGetId($data);
  98. if($id > 0) {
  99. // 增加任务进度 +exp
  100. \app\common\model\TaskLog::tofinish($this->auth->id,"ebxLwnXj3L",1);
  101. // 增加任务进度 +exp
  102. \app\common\model\TaskLog::tofinish($this->auth->id,"iA1QgRhL",1);
  103. // 增加任务进度 +exp
  104. \app\common\model\TaskLog::tofinish($this->auth->id,"ghopE4Ou",1);
  105. // 增加任务进度 +exp
  106. \app\common\model\TaskLog::tofinish($this->auth->id,"TryNGc1x",1);
  107. $this->success("关注成功!");
  108. } else {
  109. $this->error("网络错误,请稍后重试!");
  110. }
  111. } else {
  112. $fansfollowModel = new \app\common\model\UserFansFollow();
  113. $where = [];
  114. $where["user_id"] = $user_id;
  115. $where["fans_id"] = $this->auth->id;
  116. $fansfollowInfo = $fansfollowModel->where($where)->find();
  117. if(!$fansfollowInfo) {
  118. $this->error("关注信息获取失败!");
  119. }
  120. $res = $fansfollowModel->where($where)->delete();
  121. if($res > 0) {
  122. $this->success("取消成功!");
  123. } else {
  124. $this->error("网络错误,请稍后重试!");
  125. }
  126. }
  127. }
  128. /**
  129. * 是否关注
  130. */
  131. public function isFollows() {
  132. $user_id = $this->request->request("user_id",0,"intval");// 关注者ID
  133. if (!$user_id || $user_id<=0) {
  134. $this->error(__('Invalid parameters'));
  135. }
  136. $fansfollowModel = new \app\common\model\UserFansFollow();
  137. $where = [];
  138. $where["user_id"] = $user_id;
  139. $where["fans_id"] = $this->auth->id;
  140. $fansfollowInfo = $fansfollowModel->where($where)->find();
  141. $data = [];
  142. if($fansfollowInfo) {
  143. $data["is_show_follow"] = 0;
  144. } else {
  145. $data["is_show_follow"] = 1;
  146. }
  147. $this->success("获取成功!",$data);
  148. }
  149. /**
  150. * 获取关注人列表.派对信息
  151. */
  152. public function getFollowsLive() {
  153. $is_online = $this->request->request("is_online");// 是否在线:1=直播中,0=未开播
  154. $page = $this->request->request('page',1); // 分页
  155. $pageNum = $this->request->request('pageNum',10); // 分页
  156. // 分页搜索构建
  157. $pageStart = ($page-1)*$pageNum;
  158. $is_online == 1 || $is_online = 0;
  159. $fanfollowModel = new \app\common\model\UserFansFollow();
  160. $where = [];
  161. $where["a.fans_id"] = $this->auth->id;
  162. $where["p.room_type"] = 2;
  163. $where["p.is_online"] = $is_online;
  164. if($is_online == 1) {
  165. $field = "p.id as party_id,u.u_id,u.nickname,p.party_name,p.party_hot,p.party_logo,u.avatar,t.id as party_type";
  166. } else {
  167. $field = "p.id as party_id,a.user_id,u.avatar,u.gender,u.level,u.nickname,p.party_name,p.party_logo,t.id as party_type";
  168. }
  169. $list = $fanfollowModel->alias("a")
  170. ->field($field)
  171. ->join("hx_user u","u.id = a.user_id")
  172. ->join("hx_party p","p.user_id = a.user_id")
  173. ->join("hx_party_type t","t.id = p.party_type","left")
  174. ->limit($pageStart,$pageNum)
  175. ->where($where)->select();
  176. if($list) {
  177. foreach($list as $k => $v) {
  178. $mod = isset($v["party_type"])?intval($v["party_type"])%5:1;
  179. if(isset($v["type_name"]) && $v["type_name"]) {
  180. $type_name = $v["type_name"];
  181. } else {
  182. $type_name = "普通房";
  183. }
  184. $list[$k]["party_type"] = $type_name;
  185. $list[$k]["party_type_color"] = $mod == 0?5:$mod;
  186. }
  187. $this->success("获取成功!",$list);
  188. } else {
  189. $this->success("数据为空!",[]);
  190. }
  191. }
  192. /**
  193. * 获取关注列表(个人中心模块)
  194. */
  195. public function getFollowsUser() {
  196. $type = $this->request->request('type',1); // 1=关注,2=粉丝
  197. $page = $this->request->request('page',1); // 分页
  198. $pageNum = $this->request->request('pageNum',10); // 分页
  199. // 分页搜索构建
  200. $pageStart = ($page-1)*$pageNum;
  201. $pageEnd = $pageStart + $pageNum;
  202. $fanfollowModel = new \app\common\model\UserFansFollow();
  203. // 获取关注列表
  204. $where = [];
  205. $where["a.fans_id"] = $this->auth->id;
  206. $followlist = $fanfollowModel->alias("a")
  207. ->field("a.id,a.user_id,u.avatar,u.nickname,u.level,u.gender")
  208. ->join("hx_user u","u.id = a.user_id")
  209. // ->limit($pageStart,$pageNum)
  210. ->where($where)->select();
  211. // 获取粉丝列表
  212. $where = [];
  213. $where["a.user_id"] = $this->auth->id;
  214. $fanslist = $fanfollowModel->alias("a")
  215. ->field("a.id,a.fans_id,u.avatar,u.nickname,u.level,u.gender")
  216. ->join("hx_user u","u.id = a.fans_id")
  217. // ->limit($pageStart,$pageNum)
  218. ->where($where)->select();
  219. // print_r(json_encode($followlist));exit;
  220. if($type == 1) {
  221. $ids = [];
  222. if($fanslist) {
  223. foreach($fanslist as $k => $v) {
  224. $ids[] = $v["fans_id"];
  225. }
  226. }
  227. if($followlist) {
  228. foreach($followlist as $k => $v) {
  229. if(in_array($v["user_id"],$ids)) {
  230. $followlist[$k]["is_hu"] = 1;
  231. } else {
  232. $followlist[$k]["is_hu"] = 0;
  233. }
  234. }
  235. }
  236. $fansfollow = $followlist;
  237. } else {
  238. $ids = [];
  239. if($followlist) {
  240. foreach($followlist as $k => $v) {
  241. $ids[] = $v["user_id"];
  242. }
  243. }
  244. if($fanslist) {
  245. foreach($fanslist as $k => $v) {
  246. if(in_array($v["fans_id"],$ids)) {
  247. $fanslist[$k]["is_hu"] = 1;
  248. } else {
  249. $fanslist[$k]["is_hu"] = 0;
  250. }
  251. }
  252. }
  253. $fansfollow = $fanslist;
  254. }
  255. if($fansfollow) {
  256. $data = [];
  257. foreach($fansfollow as $k => $v) {
  258. if($k >= $pageStart && $k < $pageEnd) {
  259. $data[] = $v;
  260. }
  261. }
  262. $this->success("获取成功!",$data);
  263. } else {
  264. $this->success("数据为空!",[]);
  265. }
  266. }
  267. /**
  268. * 获取个人技能列表
  269. */
  270. public function getMySkillList() {
  271. $user_id = $this->request->request('user_id',0); // 用户ID
  272. $page = $this->request->request('page',1); // 分页
  273. $pageNum = $this->request->request('pageNum',10); // 分页
  274. if ($user_id == -1) {
  275. $user_id = $this->auth->id;
  276. } elseif($user_id>0) {
  277. $user_id = intval($user_id);
  278. } else {
  279. $this->error(__('Invalid parameters'));
  280. }
  281. // 分页搜索构建
  282. $pageStart = ($page-1)*$pageNum;
  283. $authModel = new \app\common\model\DispatchAuth();
  284. $where = [];
  285. $where["a.user_id"] = $user_id;
  286. $where["a.status"] = 1;
  287. $authskillList = $authModel->alias("a")
  288. ->field("a.id,ds.image,ds.name,a.voice,a.voice_time,a.price,a.is_main,ds.unit")
  289. ->join("hx_dispatch_skill ds","ds.id = a.skill_id")
  290. ->where($where)
  291. ->limit($pageStart,$pageNum)
  292. ->select();
  293. $this->success("获取成功!",$authskillList);
  294. }
  295. /**
  296. * 删除个人技能信息
  297. */
  298. public function delMySkillInfo() {
  299. $id = $this->request->request('id'); // 认证ID
  300. if (!$id) {
  301. $this->error(__('Invalid parameters'));
  302. }
  303. $authModel = new \app\common\model\DispatchAuth();
  304. $where = [];
  305. $where["id"] = $id;
  306. $where["user_id"] = $this->auth->id;
  307. $authInfo = $authModel->where($where)->find();
  308. if(!$authInfo) $this->error("技能认证未找到");
  309. // if($authInfo->is_main == 1) $this->error("请先取消主技能,再删除!");
  310. Db::startTrans();
  311. try{
  312. $res1 = $authInfo->delete();
  313. $res2 = \app\common\model\UserSkill::where(["user_id"=>$this->auth->id,"skill_id"=>$authInfo->skill_id])->delete();
  314. if($res1 && $res2) {
  315. Db::commit();
  316. $this->success("删除成功!");
  317. } else {
  318. $this->error("网络错误,请稍后重试!");
  319. }
  320. }catch (ValidateException $e) {
  321. Db::rollback();
  322. $this->error($e->getMessage());
  323. } catch (PDOException $e) {
  324. Db::rollback();
  325. $this->error($e->getMessage());
  326. } catch (Exception $e) {
  327. Db::rollback();
  328. $this->error($e->getMessage());
  329. }
  330. }
  331. /**
  332. * 修改个人技能信息
  333. */
  334. public function editMySkillInfo() {
  335. $price = $this->request->request('price'); // 价格
  336. $id = $this->request->request('id'); // 认证ID
  337. $is_main = $this->request->request('is_main'); // 是否设置为主技能
  338. if (!$id && !$price) {
  339. $this->error(__('Invalid parameters'));
  340. }
  341. $authModel = new \app\common\model\DispatchAuth();
  342. $where = [];
  343. $where["id"] = $id;
  344. if(!$authModel->where($where)->find()) $this->error("技能认证未找到");
  345. Db::startTrans();
  346. try{
  347. if($is_main == 1) {
  348. $where = [];
  349. $where["user_id"] = $this->auth->id;
  350. $authModel->update(["is_main"=>0],$where);
  351. }
  352. $where = [];
  353. $where["id"] = $id;
  354. $data = [];
  355. $data["price"] = $price;
  356. $data["is_main"] = $is_main;
  357. $res = $authModel->update($data,$where);
  358. $myAuthList = $authModel->where(["user_id"=>$this->auth->id,"is_main"=>1])->find();
  359. if(!$myAuthList) {
  360. $this->error("必须至少设置一个主技能");
  361. Db::rollback();
  362. }
  363. if($res) {
  364. Db::commit();
  365. $this->success("修改成功!",$data);
  366. } else {
  367. $this->error("网络错误,请稍后重试!");
  368. }
  369. }catch (ValidateException $e) {
  370. Db::rollback();
  371. $this->error($e->getMessage());
  372. } catch (PDOException $e) {
  373. Db::rollback();
  374. $this->error($e->getMessage());
  375. } catch (Exception $e) {
  376. Db::rollback();
  377. $this->error($e->getMessage());
  378. }
  379. }
  380. /**
  381. * 编辑个人信息
  382. */
  383. public function editUserInfo() {
  384. $avatar = $this->request->request('avatar'); // 头像
  385. $nickname = $this->request->request('nickname'); // 昵称
  386. $age = $this->request->request('age'); // 年龄
  387. $gender = $this->request->request('gender'); // 性别 0=女,1=男
  388. $image = $this->request->request('image'); // 个人形象照
  389. if (!$avatar && !$nickname && !$age && !$image && !in_array($gender,[0,1])) {
  390. $this->error(__('请输入要修改的信息'));
  391. }
  392. $where = [];
  393. $where["id"] = $this->auth->id;
  394. $data = [];
  395. $avatar && $data["avatar"] = $avatar;
  396. if($nickname){
  397. if (mb_strlen($nickname) > 8) {
  398. $this->error('用户昵称最多支持8个汉字或组合');
  399. }
  400. $data["nickname"] = $nickname;
  401. }
  402. $gender && $data["gender"] = $gender;
  403. $age && $data["age"] = $age;
  404. $image && $data["image"] = $image;
  405. $data["has_info"] = 1;
  406. $res = $this->userModel->update($data,$where);
  407. if($res) {
  408. $this->success("修改成功!");
  409. } else {
  410. $this->error("网络错误,请稍后重试!");
  411. }
  412. }
  413. /**
  414. * 主播申请
  415. */
  416. public function anchorApply() {
  417. $type_id = $this->request->request('type_id'); // 技能分类ID
  418. $desc = $this->request->request('desc'); // 申请备注
  419. if (!$type_id && !$desc) {
  420. $this->error(__('Invalid parameters'));
  421. }
  422. $useranchorModel = new \app\common\model\UserAnchor();
  423. $data = [];
  424. $data["user_id"] = $this->auth->id;
  425. $data["type_id"] = $type_id;
  426. if($useranchorModel->where($data)->find()) $this->error(__('您已申请过该类型的主播,请勿重复申请!'));
  427. $data["desc"] = $desc;
  428. $data["createtime"] = time();
  429. $res = $useranchorModel->insertGetId($data);
  430. if($res) {
  431. \app\common\model\User::update(["is_anchor"=>1],["id"=>$this->auth->id]);
  432. $this->success("申请发送成功!");
  433. } else {
  434. $this->error("网络错误,请稍后重试");
  435. }
  436. }
  437. /**
  438. * 实名认证
  439. */
  440. public function authApply() {
  441. $realname = $this->request->request('realname'); // 真实姓名
  442. $idcard = $this->request->request('idcard'); // 身份证号
  443. $zimage = $this->request->request('zimage'); // 身份证正面照
  444. $fimage = $this->request->request('fimage'); // 身份证反面照
  445. if (!$realname && !$idcard && !$zimage && !$fimage) {
  446. $this->error(__('Invalid parameters'));
  447. }
  448. $userauthModel = new \app\common\model\UserAuth();
  449. $data = [];
  450. $data["user_id"] = $this->auth->id;
  451. //$data["idcard"] = $idcard;
  452. $userAuth = $userauthModel->where($data)->find();
  453. if (!empty($userAuth)) {
  454. if(in_array($userAuth['status'],[0,1])) $this->error('您已经申请过了,请勿重复操作!');
  455. }
  456. // 测试需要 开始
  457. $data["realname"] = $realname;
  458. $zimage && $data["zimage"] = $zimage;
  459. $fimage && $data["fimage"] = $fimage;
  460. $data["status"] = 1;
  461. if (!empty($userAuth)) {
  462. $data["updatetime"] = time();
  463. $authWhere['user_id'] = $this->auth->id;
  464. $res = $userauthModel->where($authWhere)->update($data);
  465. } else {
  466. $data["createtime"] = time();
  467. $res = $userauthModel->insertGetId($data);
  468. }
  469. if($res) {
  470. \app\common\model\User::update(["is_auth"=>2],["id"=>$this->auth->id]);
  471. $this->success("恭喜,实名认证成功!");
  472. } else {
  473. $this->error("网络错误,请稍后重试");
  474. }
  475. // 测试需要 结束
  476. // 实名认证验证
  477. $configInfo = config("auth");
  478. $outh = new outh($configInfo["api_url"],$configInfo["customer_code"],$configInfo["private_key"],$configInfo["key"]);
  479. $out_trade_no = date("YmdHis").rand(1000,9999);
  480. $ret = $outh->toVerify($out_trade_no,$realname,$idcard);
  481. if(isset($ret["code"])) {
  482. if($ret["code"] == "1008") {
  483. $this->error(__('身份证格式错误'));
  484. }
  485. if($ret["code"] == "1009") {
  486. $this->error(__('身份证格式错误'));
  487. }
  488. if($ret["code"] == "0001") {
  489. $this->error(__('姓名和身份证号不匹配!'));
  490. }
  491. if($ret["code"] == "0000") {
  492. $data["realname"] = $realname;
  493. $zimage && $data["zimage"] = $zimage;
  494. $fimage && $data["fimage"] = $fimage;
  495. $data["status"] = 1;
  496. $data["createtime"] = time();
  497. $res = $userauthModel->insertGetId($data);
  498. if($res) {
  499. \app\common\model\User::update(["is_auth"=>2],["id"=>$this->auth->id]);
  500. $this->success("恭喜,实名认证成功!");
  501. } else {
  502. $this->error("网络错误,请稍后重试");
  503. }
  504. }
  505. } else {
  506. $this->error("网络错误,请稍后重试");
  507. }
  508. }
  509. /**
  510. * 获取主播分类
  511. */
  512. public function getAnchorType() {
  513. $this->success("获取成功!",\app\common\model\UserAnchorType::select());
  514. }
  515. /**
  516. * 加入黑名单
  517. */
  518. public function addBlacklist() {
  519. $black_user_id = $this->request->request('black_user_id'); // 黑名单用户ID
  520. if (!$black_user_id) {
  521. $this->error(__('Invalid parameters'));
  522. }
  523. $userblacklistModel = new \app\common\model\UserBlacklist();
  524. $data = [];
  525. $data["user_id"] = $this->auth->id;
  526. $data["black_user_id"] = $black_user_id;
  527. if($userblacklistModel->where($data)->find()) $this->error(__('已在黑名单!'));
  528. $data["createtime"] = time();
  529. $res = $userblacklistModel->insertGetId($data);
  530. if($res) {
  531. $this->success("加入成功!");
  532. } else {
  533. $this->error("网络错误,请稍后重试");
  534. }
  535. }
  536. /**
  537. * 获取黑名单用户
  538. */
  539. public function getBlacklist() {
  540. $page = $this->request->request('page',1); // 分页
  541. $pageNum = $this->request->request('pageNum',10); // 分页
  542. // 分页搜索构建
  543. $pageStart = ($page-1)*$pageNum;
  544. $userblacklistModel = new \app\common\model\UserBlacklist();// ->limit($pageStart,$pageNum)
  545. $where = [];
  546. $where["a.user_id"] = $this->auth->id;
  547. $list = $userblacklistModel->alias("a")
  548. ->field("a.id,a.black_user_id,u.avatar,u.nickname,u.level,u.gender")
  549. ->join("hx_user u","u.id = a.black_user_id")
  550. ->where($where)
  551. ->limit($pageStart,$pageNum)
  552. ->select();
  553. if($list) {
  554. $this->success("获取成功!",$list);
  555. } else {
  556. $this->success("数据为空",[]);
  557. }
  558. }
  559. /**
  560. * 移除用户黑名单
  561. */
  562. public function removeUserBlack() {
  563. $id = $this->request->request('id'); // 黑名单ID
  564. if (!$id) {
  565. $this->error(__('Invalid parameters'));
  566. }
  567. $userblacklistModel = new \app\common\model\UserBlacklist();
  568. $where = [];
  569. $where["id"] = $id;
  570. $res = $userblacklistModel->where($where)->delete();
  571. if($res) {
  572. $this->success("移除成功!",$res);
  573. } else {
  574. $this->error("网络错误,请稍后重试!");
  575. }
  576. }
  577. /**
  578. * 举报用户
  579. */
  580. public function addReport() {
  581. $ruser_id = $this->request->request('ruser_id'); // 被举报用户ID
  582. $content = $this->request->request('content'); // 举报内容
  583. $image = $this->request->request('image'); // 图片描述(多个用半角逗号隔开)
  584. if (!$ruser_id) {
  585. $this->error(__('Invalid parameters'));
  586. }
  587. $userreportModel = new \app\common\model\UserReport();
  588. $data = [];
  589. $data["user_id"] = $this->auth->id;
  590. $data["reportable_id"] = $ruser_id;
  591. $data['reportable_type'] = $this->getModelName('user');
  592. $data["content"] = $content;
  593. $data["image"] = $image;
  594. $data["createtime"] = time();
  595. $res = $userreportModel->insertGetId($data);
  596. if($res) {
  597. $this->success("举报成功!");
  598. } else {
  599. $this->error("网络错误,请稍后重试");
  600. }
  601. }
  602. /**
  603. * 举报
  604. */
  605. public function addReportNew() {
  606. $params = $this->request->param();
  607. $validate = new Report();
  608. $result = $validate->check($params);
  609. if (!$result) {
  610. $this->error($validate->getError());
  611. }
  612. $userreportModel = new \app\common\model\UserReport();
  613. $data = [];
  614. $data["user_id"] = $this->auth->id;
  615. $data["reportable_id"] = $params['reportable_id'];
  616. $data['reportable_type'] = $this->getModelName($params['reportable_type']);
  617. $data["content"] = $params['content'];
  618. $data["image"] = $params['image'];
  619. $data["createtime"] = time();
  620. $res = $userreportModel->insertGetId($data);
  621. if($res) {
  622. $this->success("举报成功!");
  623. } else {
  624. $this->error("网络错误,请稍后重试");
  625. }
  626. }
  627. /**
  628. * redis 数据恢复---非redis数据丢失请勿使用!!!!
  629. */
  630. public function shujuhuifu() {
  631. $key = $this->request->request("key");// 操作验证 123456
  632. if($key != 123456) {
  633. $this->error(__('Invalid parameters'));
  634. }
  635. $giftuserpartyModel = new \app\common\model\GiftUserParty();
  636. $redis = new Redis();
  637. $redisconfig = config("redis");
  638. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  639. // 获取本周第一天
  640. $weekday = $this->firstOfWeek(date("Y-m-d H:i:s"));
  641. // 获取本月第一天
  642. $monthday = date("Ym01");
  643. $where = [];
  644. $where["createtime"] = ["gt",strtotime($weekday)];
  645. $list1 = $giftuserpartyModel->where($where)->select();
  646. foreach($list1 as $k => $v) {
  647. // 添加redis记录做财富排行榜周榜用
  648. $redis->zIncrBy("jewel_get_".$v["party_id"].":".$weekday,$v["value"],$v["user_to_id"]);
  649. // 添加redis记录做贡献排行榜周榜用
  650. $redis->zIncrBy("jewel_to_".$v["party_id"].":".$weekday,$v["value"],$v["user_id"]);
  651. }
  652. $where = [];
  653. $where["createtime"] = ["gt",strtotime(date("Y-m-01"))];
  654. $list2 = $giftuserpartyModel->where($where)->select();
  655. foreach($list2 as $k => $v) {
  656. // 添加redis记录做财富排行榜月榜用
  657. $redis->zIncrBy("jewel_get_".$v["party_id"].":".$monthday,$v["value"],$v["user_to_id"]);
  658. // 添加redis记录做贡献排行榜月榜用
  659. $redis->zIncrBy("jewel_to_".$v["party_id"].":".$monthday,$v["value"],$v["user_id"]);
  660. }
  661. $this->success("执行成功!");
  662. }
  663. /**
  664. * 获取用户钻石余额
  665. */
  666. public function getUserJewel() {
  667. $data = \app\common\model\User::field("Jewel,money")->where(["id"=>$this->auth->id])->find();
  668. return $this->success("获取成功!",$data);
  669. }
  670. /**
  671. * 获取用户等级说明
  672. */
  673. public function getLevelExplain() {
  674. $data = \app\common\model\UserLevelExplain::field("title,content")->select();
  675. return $this->success("获取成功!",$data);
  676. }
  677. /**
  678. * 获取用户等级信息
  679. */
  680. public function getUserLevelInfo() {
  681. $res = [];$exstart = 0;$exend = 0;
  682. $userModel = new \app\common\model\User();
  683. $userInfo = $userModel->field("id,nickname,avatar,level,empirical")->where(["id"=>$this->auth->id])->find();
  684. if(!$userInfo) {
  685. $this->error("用户信息获取失败!");
  686. }
  687. $res["avatar"] = $userInfo['avatar'];
  688. $res["nickname"] = $userInfo['nickname'];
  689. // 获取用户当前经验值对应等级
  690. $userconfigModel = new \app\common\model\UserLevelConfig();
  691. $where = [];
  692. $where["empirical"] = ["elt",$userInfo["empirical"]];
  693. $userexplainstart = $userconfigModel->where($where)->order("empirical","desc")->limit(1)->select();
  694. $where = [];
  695. $where["empirical"] = ["gt",$userInfo["empirical"]];
  696. $userexplainend = $userconfigModel->where($where)->order("empirical","asc")->limit(1)->select();
  697. if(!$userexplainstart && !$userexplainend) {
  698. $this->error("经验等级信息获取失败!");
  699. } elseif(!$userexplainstart && $userexplainend) {
  700. $res["level_start"] = 0;
  701. $res["level_end"] = $userexplainend[0]["level"];
  702. } elseif($userexplainstart && !$userexplainend) {
  703. $res["level_start"] = $userexplainstart[0]["level"];
  704. $res["level_end"] = $userexplainstart[0]["level"];
  705. } elseif($userexplainstart && $userexplainend) {
  706. $res["level_start"] = $userexplainstart[0]["level"];
  707. $res["level_end"] = $userexplainend[0]["level"];
  708. }
  709. $userexplainstart && $exstart = $userexplainstart[0]["empirical"];
  710. $userexplainend && $exend = $userexplainend[0]["empirical"];
  711. $r1 = $exend-$exstart; // 等级经验值差
  712. $r2 = $userInfo["empirical"]-$exstart; // 当前等级与最低等级经验值差
  713. $r3 = $exend-$userInfo["empirical"]; // 还需多少经验值升级
  714. if($r1 == 0) {
  715. $res["level_rate"] = 1;
  716. } elseif($r2 == 0) {
  717. $res["level_rate"] = 0;
  718. if($res["level_start"] == $res["level_end"]) {
  719. $res["level_rate"] = 1;
  720. }
  721. } else {
  722. $res["level_rate"] = intval(($r2/$r1)*100)/100;
  723. }
  724. $res["to_up_need"] = $r3>0?$r3:0;
  725. // // 满级
  726. // if($r3 == 0 && !$userexplainend) {
  727. // $res["level_rate"] = 1;
  728. // }
  729. $this->success("获取成功!",$res);
  730. }
  731. }