Match.php 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. /**
  6. * 匹配 与 匹配的收费
  7. */
  8. class Match extends Api
  9. {
  10. protected $noNeedLogin = ['*'];
  11. protected $noNeedRight = ['*'];
  12. //视频通话记录
  13. public function video_log(){
  14. if($this->auth->gender == 0){
  15. $list = Db::name('user_match_video_log')->alias('log')
  16. ->field('log.id,log.user_id as the_user_id,log.call_minutes,log.createtime,user.avatar,user.nickname')
  17. ->join('user','log.user_id = user.id','LEFT')
  18. ->where('log.to_user_id' , $this->auth->id)
  19. ->order('log.id desc')->autopage()->select();
  20. }else{
  21. $list = Db::name('user_match_video_log')->alias('log')
  22. ->field('log.id,log.to_user_id as the_user_id,log.call_minutes,log.createtime,user.avatar,user.nickname')
  23. ->join('user','log.to_user_id = user.id','LEFT')
  24. ->where('log.user_id' , $this->auth->id)
  25. ->order('log.id desc')->autopage()->select();
  26. }
  27. $list = list_domain_image($list,['avatar']);
  28. $this->success(1,$list);
  29. }
  30. //语音通话记录
  31. public function audio_log(){
  32. if($this->auth->gender == 0){
  33. $list = Db::name('user_match_audio_log')->alias('log')
  34. ->field('log.id,log.user_id as the_user_id,log.call_minutes,log.createtime,user.avatar,user.nickname')
  35. ->join('user','log.user_id = user.id','LEFT')
  36. ->where('log.to_user_id' , $this->auth->id)
  37. ->order('log.id desc')->autopage()->select();
  38. }else{
  39. $list = Db::name('user_match_audio_log')->alias('log')
  40. ->field('log.id,log.to_user_id as the_user_id,log.call_minutes,log.createtime,user.avatar,user.nickname')
  41. ->join('user','log.to_user_id = user.id','LEFT')
  42. ->where('log.user_id' , $this->auth->id)
  43. ->order('log.id desc')->autopage()->select();
  44. }
  45. $list = list_domain_image($list,['avatar']);
  46. $this->success(1,$list);
  47. }
  48. //语音通话记录
  49. //视频通话每分钟调用一次
  50. public function video_onemin(){
  51. if ($this->auth->gender == 0) { //女生不花钱
  52. $this->error('您的网络开小差啦~');
  53. }
  54. //检测用户
  55. $request_id = input('request_id', '', 'trim'); //唯一请求标识
  56. $to_user_id = input_post('to_user_id');
  57. $to_user_info = Db::name('user')->field('id,intro_uid,gender,match_video_price')->where('id',$to_user_id)->find();
  58. if(!$to_user_info){
  59. $this->error('不存在的用户');
  60. }
  61. if ($to_user_info['gender'] != 0) {
  62. $this->error('同性不能聊天~');
  63. }
  64. //正常价格
  65. $price = $to_user_info['match_video_price']; //扣费金币
  66. $gift_plat_scale = config('site.gift_plat_scale'); //抽成比例
  67. $money = bcdiv(bcmul($price,100 - $gift_plat_scale,2),100,2); //抽成后收益
  68. Db::startTrans();
  69. //检查剩余分钟数
  70. $user_wallet = Db::name('user_wallet')->where('user_id',$this->auth->id)->lock(true)->find();
  71. if($user_wallet['video_sec'] >= 1){
  72. //扣分钟数
  73. $price = 0;
  74. //补贴给对方0.1金币
  75. $money = 0.1;
  76. }else{
  77. //需要扣别人的钱,判断钱是否购
  78. if($price > 0){
  79. $goldtotal = model('wallet')->getWallettotal($this->auth->id);
  80. if(bccomp($price,$goldtotal) == 1){
  81. Db::rollback();
  82. $this->error('金币不足');
  83. }
  84. }
  85. }
  86. //查询是否有匹配记录
  87. $user_match_video_log_info = [];
  88. if ($request_id) {
  89. $user_match_video_log_info = Db::name('user_match_video_log')->where(['user_id' => $this->auth->id, 'to_user_id' => $to_user_id, 'request_id' => $request_id])->find();
  90. }
  91. if ($user_match_video_log_info) {
  92. //修改记录日志
  93. $data = [
  94. 'price' => $user_match_video_log_info['price'] + $price,
  95. 'updatetime' => time(),
  96. 'money' => $user_match_video_log_info['money'] + $money,
  97. 'call_minutes' => $user_match_video_log_info['call_minutes'] + 1
  98. ];
  99. $log_id = Db::name('user_match_video_log')->where(['id' => $user_match_video_log_info['id']])->setField($data);
  100. if (!$log_id) {
  101. Db::rollback();
  102. $this->error('扣费失败');
  103. }
  104. } else {
  105. //添加记录日志
  106. $data = [
  107. 'user_id' => $this->auth->id,
  108. 'price' => $price,
  109. 'createtime' => time(),
  110. 'to_user_id' => $to_user_id,
  111. 'money' => $money,
  112. 'request_id' => $request_id,
  113. 'call_minutes' => 1
  114. ];
  115. $log_id = Db::name('user_match_video_log')->insertGetId($data);
  116. if (!$log_id) {
  117. Db::rollback();
  118. $this->error('扣费失败');
  119. }
  120. }
  121. //检查剩余分钟数
  122. if($user_wallet['video_sec'] >= 1){
  123. //扣分钟数
  124. $rs_wallet = Db::name('user_wallet')->where('user_id',$this->auth->id)->update(['video_sec'=>$user_wallet['video_sec']-1]);
  125. if($rs_wallet === false){
  126. Db::rollback();
  127. $this->error('扣除分钟数失败');
  128. }
  129. //补贴给对方0.1金币
  130. $money = 0.1;
  131. $rs = model('wallet')->lockChangeAccountRemain($to_user_id,'jewel',$money,21,'对方使用免费次数的补贴','user_match_video_log',$log_id);
  132. if($rs['status'] === false){
  133. Db::rollback();
  134. $this->error($rs['msg']);
  135. }
  136. }else{
  137. //有性别差,扣费
  138. if($price > 0){
  139. $rs = model('wallet')->lockChangeAccountRemain($this->auth->id,'gold',-$price,11,'','user_match_video_log',$log_id);
  140. if($rs['status'] === false){
  141. Db::rollback();
  142. $this->error($rs['msg']);
  143. }
  144. }
  145. //另一方加钱,0收费
  146. if($money > 0){
  147. $rs = model('wallet')->lockChangeAccountRemain($to_user_id,'jewel',$money,21,'','user_match_video_log',$log_id);
  148. if($rs['status'] === false){
  149. Db::rollback();
  150. $this->error($rs['msg']);
  151. }
  152. }
  153. }
  154. //tag任务赠送金币
  155. //与1名异性语音通话奖励
  156. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,11);
  157. if($task_rs === false){
  158. Db::rollback();
  159. $this->error('完成任务赠送奖励失败');
  160. }
  161. $task_rs = \app\common\model\TaskLog::tofinish($to_user_id,11);
  162. if($task_rs === false){
  163. Db::rollback();
  164. $this->error('完成任务赠送奖励失败');
  165. }
  166. Db::commit();
  167. $this->success('success');
  168. }
  169. //语音通话每分钟调用一次
  170. public function audio_onemin(){
  171. if ($this->auth->gender == 0) { //女生不花钱
  172. $this->error('您的网络开小差啦~');
  173. }
  174. //检测用户
  175. $request_id = input('request_id', '', 'trim'); //唯一请求标识
  176. $to_user_id = input_post('to_user_id');
  177. $to_user_info = Db::name('user')->field('id,intro_uid,gender,match_audio_price')->where('id',$to_user_id)->find();
  178. if(!$to_user_info){
  179. $this->error('不存在的用户');
  180. }
  181. if ($to_user_info['gender'] != 0) {
  182. $this->error('同性不能聊天~');
  183. }
  184. //正常价格
  185. $price = $to_user_info['match_audio_price']; //扣费金币
  186. $gift_plat_scale = config('site.gift_plat_scale'); //抽成比例
  187. $money = bcdiv(bcmul($price,100 - $gift_plat_scale,2),100,2); //抽成后收益
  188. Db::startTrans();
  189. //检查剩余分钟数
  190. $user_wallet = Db::name('user_wallet')->where('user_id',$this->auth->id)->lock(true)->find();
  191. if($user_wallet['audio_sec'] >= 1){
  192. //扣分钟数
  193. $price = 0;
  194. //补贴给对方0.1金币
  195. $money = 0.1;
  196. }else{
  197. //需要扣别人的钱,判断钱是否购
  198. if($price > 0){
  199. $goldtotal = model('wallet')->getWallettotal($this->auth->id);
  200. if(bccomp($price,$goldtotal) == 1){
  201. Db::rollback();
  202. $this->error('金币不足');
  203. }
  204. }
  205. }
  206. //查询是否有匹配记录
  207. $user_match_audio_log_info = [];
  208. if ($request_id) {
  209. $user_match_audio_log_info = Db::name('user_match_audio_log')->where(['user_id' => $this->auth->id, 'to_user_id' => $to_user_id, 'request_id' => $request_id])->find();
  210. }
  211. if ($user_match_audio_log_info) {
  212. //修改记录日志
  213. $data = [
  214. 'price' => $user_match_audio_log_info['price'] + $price,
  215. 'updatetime' => time(),
  216. 'money' => $user_match_audio_log_info['money'] + $money,
  217. 'call_minutes' => $user_match_audio_log_info['call_minutes'] + 1
  218. ];
  219. $log_id = Db::name('user_match_audio_log')->where(['id' => $user_match_audio_log_info['id']])->setField($data);
  220. if (!$log_id) {
  221. Db::rollback();
  222. $this->error('扣费失败');
  223. }
  224. } else {
  225. //添加记录日志
  226. $data = [
  227. 'user_id' => $this->auth->id,
  228. 'price' => $price,
  229. 'createtime' => time(),
  230. 'to_user_id' => $to_user_id,
  231. 'money' => $money,
  232. 'request_id' => $request_id,
  233. 'call_minutes' => 1
  234. ];
  235. $log_id = Db::name('user_match_audio_log')->insertGetId($data);
  236. if (!$log_id) {
  237. Db::rollback();
  238. $this->error('扣费失败');
  239. }
  240. }
  241. //检查剩余分钟数
  242. if($user_wallet['audio_sec'] >= 1){
  243. //扣分钟数
  244. $rs_wallet = Db::name('user_wallet')->where('user_id',$this->auth->id)->update(['audio_sec'=>$user_wallet['audio_sec']-1]);
  245. if($rs_wallet === false){
  246. Db::rollback();
  247. $this->error('扣除分钟数失败');
  248. }
  249. //补贴给对方0.1金币
  250. $rs = model('wallet')->lockChangeAccountRemain($to_user_id,'jewel',$money,22,'对方使用免费次数的补贴','user_match_audio_log',$log_id);
  251. if($rs['status'] === false){
  252. Db::rollback();
  253. $this->error($rs['msg']);
  254. }
  255. }else{
  256. //有性别差,扣费
  257. if($price > 0){
  258. $rs = model('wallet')->lockChangeAccountRemain($this->auth->id,'gold',-$price,12,'','user_match_audio_log',$log_id);
  259. if($rs['status'] === false){
  260. Db::rollback();
  261. $this->error($rs['msg']);
  262. }
  263. }
  264. //另一方加钱,0收费
  265. if($money > 0){
  266. $rs = model('wallet')->lockChangeAccountRemain($to_user_id,'jewel',$money,22,'','user_match_audio_log',$log_id);
  267. if($rs['status'] === false){
  268. Db::rollback();
  269. $this->error($rs['msg']);
  270. }
  271. }
  272. }
  273. //tag任务赠送金币
  274. //与1名异性语音通话奖励
  275. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,11);
  276. if($task_rs === false){
  277. Db::rollback();
  278. $this->error('完成任务赠送奖励失败');
  279. }
  280. $task_rs = \app\common\model\TaskLog::tofinish($to_user_id,11);
  281. if($task_rs === false){
  282. Db::rollback();
  283. $this->error('完成任务赠送奖励失败');
  284. }
  285. Db::commit();
  286. $this->success('success');
  287. }
  288. //打字聊天每句话调用一次
  289. public function typing_once(){
  290. if ($this->auth->gender == 0) { //女生不花钱
  291. $this->error('您的网络开小差啦~');
  292. }
  293. //检测用户
  294. $to_user_id = input_post('to_user_id');
  295. $to_user_info = Db::name('user')->field('id,intro_uid,gender,match_typing_price')->where('id',$to_user_id)->find();
  296. if(!$to_user_info){
  297. $this->error('不存在的用户');
  298. }
  299. if ($to_user_info['gender'] != 0) {
  300. $this->error('同性不能聊天~');
  301. }
  302. //正常价格
  303. $price = $to_user_info['match_typing_price']; //扣费金币
  304. $gift_plat_scale = config('site.gift_plat_scale'); //抽成比例
  305. $money = bcdiv(bcmul($price,100 - $gift_plat_scale,2),100,2); //抽成后收益
  306. Db::startTrans();
  307. //检查剩余分钟数
  308. $user_wallet = Db::name('user_wallet')->where('user_id',$this->auth->id)->lock(true)->find();
  309. if($user_wallet['typing_times'] >= 1){
  310. //扣分钟数
  311. $price = 0;
  312. //补贴给对方0.1金币
  313. $money = 0.1;
  314. }else{
  315. //需要扣别人的钱,判断钱是否购
  316. if($price > 0){
  317. $goldtotal = model('wallet')->getWallettotal($this->auth->id);
  318. if(bccomp($price,$goldtotal) == 1){
  319. Db::rollback();
  320. $this->error('金币不足');
  321. }
  322. }
  323. }
  324. //添加记录日志
  325. $data = [
  326. 'user_id' => $this->auth->id,
  327. 'price' => $price,
  328. 'createtime' => time(),
  329. 'to_user_id' => $to_user_id,
  330. 'money' => $money,
  331. ];
  332. $log_id = Db::name('user_match_typing_log')->insertGetId($data);
  333. if (!$log_id) {
  334. Db::rollback();
  335. $this->error('扣费失败');
  336. }
  337. //检查剩余分钟数
  338. if($user_wallet['typing_times'] >= 1){
  339. //扣分钟数
  340. $rs_wallet = Db::name('user_wallet')->where('user_id',$this->auth->id)->update(['typing_times'=>$user_wallet['typing_times']-1]);
  341. if($rs_wallet === false){
  342. Db::rollback();
  343. $this->error('扣除免费次数失败');
  344. }
  345. //补贴给对方0.1金币
  346. $money = 0.1;
  347. $rs = model('wallet')->lockChangeAccountRemain($to_user_id,'jewel',$money,23,'对方使用免费次数的补贴','user_match_typing_log',$log_id);
  348. if($rs['status'] === false){
  349. Db::rollback();
  350. $this->error($rs['msg']);
  351. }
  352. }else{
  353. //有性别差,扣费
  354. if($price > 0){
  355. $rs = model('wallet')->lockChangeAccountRemain($this->auth->id,'gold',-$price,13,'','user_match_typing_log',$log_id);
  356. if($rs['status'] === false){
  357. Db::rollback();
  358. $this->error($rs['msg']);
  359. }
  360. }
  361. //另一方加钱,0收费
  362. if($money > 0){
  363. $rs = model('wallet')->lockChangeAccountRemain($to_user_id,'jewel',$money,23,'','user_match_typing_log',$log_id);
  364. if($rs['status'] === false){
  365. Db::rollback();
  366. $this->error($rs['msg']);
  367. }
  368. }
  369. }
  370. Db::commit();
  371. $this->success('success');
  372. }
  373. //语音匹配
  374. public function getaudiouser(){
  375. //给出备选用户
  376. $map = [
  377. 'user.status' =>1, //未封禁用户
  378. 'user.gender' => $this->auth->gender == 1 ? 0 : 1, //异性
  379. 'user.is_active' => 1, //在线的
  380. 'user.open_match_audio' => 1, //打开语聊开关
  381. ];
  382. if($this->auth->gender == 0){
  383. //或者未首充用户,且还有免费分钟数
  384. $map2['user.is_shouchong'] = 0;
  385. $map2['uw.audio_sec'] = ['gt',0];
  386. //男性要有最少一分钟的钱
  387. $map3['uw.gold'] = ['egt',$this->auth->match_audio_price];
  388. }else{
  389. $my_gold = Db::name('user_wallet')->where('user_id',$this->auth->id)->value('gold');
  390. $map2['user.match_audio_price'] = ['elt',$my_gold];
  391. }
  392. $lists = Db::name('user')->alias('user')->field('user.id,user.gender,user.birthday,user.avatar,user.nickname,user.match_audio_price')
  393. ->join('user_wallet uw','user.id = uw.user_id','LEFT')
  394. ->where($map)->where($map2)->order('user.logintime desc')->page($this->page,100)->select();
  395. if(empty($lists) && $this->auth->gender == 0){
  396. $lists = Db::name('user')->alias('user')->field('user.id,user.gender,user.birthday,user.avatar,user.nickname,user.match_audio_price')
  397. ->join('user_wallet uw','user.id = uw.user_id','LEFT')
  398. ->where($map)->where($map3)->order('user.logintime desc')->page($this->page,100)->select();
  399. }
  400. if(!empty($lists)){
  401. foreach($lists as $key => &$val){
  402. $val = info_domain_image($val,['avatar']);
  403. $val['age'] = birthtime_to_age($val['birthday']);
  404. unset($val['birthday']);
  405. $val['match_audio_price'] = $this->auth->gender == 0 ? $this->auth->match_audio_price : $val['match_audio_price'];
  406. }
  407. }
  408. $this->success('success',$lists);
  409. }
  410. //视频匹配
  411. public function getvideouser(){
  412. //给出备选用户
  413. $map = [
  414. 'user.status' =>1, //未封禁用户
  415. 'user.gender' => $this->auth->gender == 1 ? 0 : 1, //异性
  416. 'user.is_active' => 1, //在线的
  417. 'user.open_match_video' => 1, //打开语聊开关
  418. ];
  419. if($this->auth->gender == 0){
  420. //或者未首充用户,且还有免费分钟数
  421. $map2['user.is_shouchong'] = 0;
  422. $map2['uw.video_sec'] = ['gt',0];
  423. //男性要有最少一分钟的钱
  424. $map3['uw.gold'] = ['egt',$this->auth->match_video_price];
  425. }else{
  426. $my_gold = Db::name('user_wallet')->where('user_id',$this->auth->id)->value('gold');
  427. $map2['user.match_video_price'] = ['elt',$my_gold];
  428. }
  429. $lists = Db::name('user')->alias('user')->field('user.id,user.gender,user.birthday,user.avatar,user.nickname,user.match_audio_price')
  430. ->join('user_wallet uw','user.id = uw.user_id','LEFT')
  431. ->where($map)->where($map2)->order('user.logintime desc')->page($this->page,100)->select();
  432. if(empty($lists) && $this->auth->gender == 0){
  433. $lists = Db::name('user')->alias('user')->field('user.id,user.gender,user.birthday,user.avatar,user.nickname,user.match_audio_price')
  434. ->join('user_wallet uw','user.id = uw.user_id','LEFT')
  435. ->where($map)->where($map3)->order('user.logintime desc')->page($this->page,100)->select();
  436. }
  437. if(!empty($lists)){
  438. foreach($lists as $key => &$val){
  439. $val = info_domain_image($val,['avatar']);
  440. $val['age'] = birthtime_to_age($val['birthday']);
  441. unset($val['birthday']);
  442. $val['match_audio_price'] = $this->auth->gender == 0 ? $this->auth->match_audio_price : $val['match_audio_price'];
  443. }
  444. }
  445. $this->success('success',$lists);
  446. }
  447. //聊天匹配
  448. public function gettypinguser(){
  449. //给出备选用户
  450. $map = [
  451. 'user.status' =>1, //未封禁用户
  452. 'user.gender' => $this->auth->gender == 1 ? 0 : 1, //异性
  453. ];
  454. if($this->auth->gender == 0){
  455. //或者未首充用户,且还有免费分钟数
  456. $map2['user.is_shouchong'] = 0;
  457. $map2['uw.typing_times'] = ['gt',0];
  458. //男性要有最少一分钟的钱
  459. $map3['uw.gold'] = ['egt',$this->auth->match_typing_price];
  460. }else{
  461. $my_gold = Db::name('user_wallet')->where('user_id',$this->auth->id)->value('gold');
  462. $map2['user.match_typing_price'] = ['elt',$my_gold];
  463. }
  464. $lists = Db::name('user')->alias('user')->field('user.id')
  465. ->join('user_wallet uw','user.id = uw.user_id','LEFT')
  466. ->where($map)->where($map2)->order('user.logintime desc')->page($this->page,100)->select();
  467. if(empty($lists) && $this->auth->gender == 0){
  468. $lists = Db::name('user')->alias('user')->field('user.id')
  469. ->join('user_wallet uw','user.id = uw.user_id','LEFT')
  470. ->where($map)->where($map3)->order('user.logintime desc')->page($this->page,100)->select();
  471. }
  472. $this->success('success',$lists);
  473. }
  474. //过滤规则
  475. private function fliter_user($lists){
  476. if(empty($lists)){
  477. return $lists;
  478. }
  479. //过滤掉通话中的
  480. foreach($lists as $key => $val){
  481. if(redis_matching_get($val['id']) == 1){
  482. unset($lists[$key]);
  483. }
  484. }
  485. return $lists;
  486. }
  487. //亲密度等级信息
  488. public function intimacylevel() {
  489. $user_id = input('user_id', 0, 'intval'); //对方id
  490. if (!$user_id) {
  491. $this->error('参数缺失');
  492. }
  493. if ($this->auth->id > $user_id) { //大的在后
  494. $where['uid'] = $user_id;
  495. $where['other_uid'] = $this->auth->id;
  496. } else { //小的在前
  497. $where['uid'] = $this->auth->id;
  498. $where['other_uid'] = $user_id;
  499. }
  500. $level = 0; //当前等级
  501. $level_name = ''; //当前等级名称
  502. $qinmi_sum = 0; //当前亲密度
  503. $next_level_diff = 0; //距下一等级亲密度差值
  504. $next_level_name = 0; //下一等级名称
  505. $next_level_value = 0;//下一等级亲密度值
  506. //亲密度等级列表
  507. $list = Db::name('intimacy_level')->field('name,level,value')->order('value')->select();
  508. //当前亲密度信息
  509. $user_intimacy_info = Db::name('user_intimacy')->where($where)->find();
  510. if ($user_intimacy_info) {
  511. //当前亲密度
  512. $qinmi_sum = $user_intimacy_info['value'];
  513. if ($list) {
  514. //当前等级信息
  515. $level_info = Db::name('intimacy_level')->where(['value' => ['elt', $user_intimacy_info['value']]])->order('level desc')->find();
  516. if ($level_info) {
  517. $level = $level_info['level'];
  518. $level_name = $level_info['name'];
  519. }
  520. //下一等级信息
  521. $next_level_info = Db::name('intimacy_level')->where(['value' => ['gt', $user_intimacy_info['value']]])->order('value')->find();
  522. if ($next_level_info) {
  523. $next_level_name = $next_level_info['name'];
  524. $next_level_value = $next_level_info['value'];
  525. $next_level_diff = $next_level_info['value'] - $user_intimacy_info['value'];
  526. }
  527. }
  528. } else {
  529. $next_level = Db::name('intimacy_level')->order('value')->find();
  530. $next_level_diff = $next_level['value'];
  531. $next_level_name = $next_level['name'];
  532. $next_level_value = $next_level['value'];
  533. }
  534. if ($list) {
  535. foreach ($list as &$v) {
  536. if ($v['level'] < $level) {
  537. $v['is_unlock'] = 1; //当前等级是否解锁: 1已解锁 2当前等级 3未解锁
  538. } elseif ($v['level'] == $level) {
  539. $v['is_unlock'] = 2;
  540. } else {
  541. $v['is_unlock'] = 3;
  542. }
  543. }
  544. }
  545. $data['level'] = $level; //当前等级
  546. $data['level_name'] = $level_name; //当前等级名称
  547. $data['qinmi_sum'] = $qinmi_sum; //当前亲密度
  548. $data['next_level_diff'] = $next_level_diff; //距下一等级亲密度差值
  549. $data['next_level_name'] = $next_level_name; //下一等级名称
  550. $data['next_level_value'] = $next_level_value; //下一等级亲密度值
  551. $data['level_list'] = $list; //等级列表
  552. $this->success('亲密度等级信息', $data);
  553. }
  554. public function test(){
  555. $this->addintimacy(1,3,20);
  556. }
  557. //增加亲密度,顺带升级
  558. public function addintimacy($uid = 0, $other_uid = 0, $value = 0) {
  559. //增加亲密度
  560. $level_remark = ''; //亲密度等级是否变动: 0未变动 >0是亲密度等级
  561. $user_intimacy_info = Db::name('user_intimacy')->where(['uid' => $uid, 'other_uid' => $other_uid])->find();
  562. if ($user_intimacy_info) {
  563. $user_intimacy_data['value'] = $user_intimacy_info['value'] + $value;
  564. $level = Db::name('intimacy_level')->where(['value' => ['elt', $user_intimacy_data['value']]])->order('level desc')->find();
  565. if ($level) {
  566. $user_intimacy_data['level'] = $level['level'];
  567. if ($level['level'] != $user_intimacy_info['level']) {
  568. $level_remark = "恭喜你们亲密度达到".$level['level']."级,获得称号'".$level['name']."'";
  569. }
  570. }
  571. $user_intimacy_rs = Db::name('user_intimacy')->where(['uid' => $uid, 'other_uid' => $other_uid])->setField($user_intimacy_data);
  572. } else {
  573. $user_intimacy_data['uid'] = $uid;
  574. $user_intimacy_data['other_uid'] = $other_uid;
  575. $user_intimacy_data['value'] = $value;
  576. $level = Db::name('intimacy_level')->where(['value' => ['elt', $value]])->order('level desc')->find();
  577. if ($level) {
  578. $user_intimacy_data['level'] = $level['level'];
  579. $level_remark = "恭喜你们亲密度达到".$level['level']."级,获得称号'".$level['name']."'";
  580. }
  581. $user_intimacy_rs = Db::name('user_intimacy')->insertGetId($user_intimacy_data);
  582. }
  583. return ['status' => $user_intimacy_rs, 'level_remark' => $level_remark];
  584. }
  585. }