Usercenter.php 53 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Cache;
  5. use think\Db;
  6. /**
  7. * 会员中心,不是个人中心
  8. */
  9. class Usercenter extends Api
  10. {
  11. protected $noNeedLogin = ['test','testredis'];
  12. protected $noNeedRight = '*';
  13. protected $allowFields = [
  14. 'id',
  15. 'username',
  16. 'nickname',
  17. 'email',
  18. 'mobile',
  19. 'avatar',
  20. 'real_status',
  21. 'gender',
  22. 'height',
  23. 'weight',
  24. 'birthday',
  25. 'bio',
  26. 'audio_bio',
  27. 'idcard_status',
  28. 'is_active',
  29. 'longitude',
  30. 'latitude',
  31. 'cityname',
  32. 'photo_images',
  33. 'education',
  34. 'hobby',
  35. 'job',
  36. 'marital',
  37. 'tag',
  38. 'wages',
  39. 'hometown_cityid',
  40. 'character',
  41. 'constellation',
  42. 'stature',
  43. 'is_appointment',
  44. 'chat_price',
  45. 'voice_price',
  46. 'video_price',
  47. 'greet_voice',
  48. 'greet_chat',
  49. 'is_kefu',
  50. 'is_hideaddress',
  51. 'is_recommend','is_cohabit', 'live', 'is_house', 'car', 'chest', 'waist',
  52. 'suqiu'
  53. ];
  54. //获取他人用户信息,留下足迹
  55. public function getuserinfo(){
  56. $uid = input_post('uid',0);
  57. $userinfo = Db::name('user')->field($this->allowFields)->where('id',$uid)->find();
  58. if(!$userinfo){
  59. $this->error('不存在的用户');
  60. }
  61. if($uid != $this->auth->id){
  62. $user_remark = Db::name('user_remark')->where('to_user_id',$uid)->where('user_id',$this->auth->id)->find();
  63. $info['nickname'] = !empty($user_remark['nickname_remark']) ? $user_remark['nickname_remark'] : $info['nickname'];
  64. }
  65. //用户数据
  66. $userinfo = info_domain_image($userinfo,['avatar','photo_images']);
  67. $new_data = [
  68. 'age' => birthtime_to_age($userinfo['birthday']),
  69. ];
  70. if ($this->auth->gender == 1) {
  71. $qinmi_sum = Db::name('user_intimacy')->where(['uid' => $this->auth->id, 'other_uid' => $uid])->value('value');
  72. } elseif ($this->auth->gender == 0) {
  73. $qinmi_sum = Db::name('user_intimacy')->where(['uid' => $uid, 'other_uid' => $this->auth->id])->value('value');
  74. } else {
  75. $qinmi_sum = 0;
  76. }
  77. $new_data['qinmi_sum'] = $qinmi_sum ? :0;
  78. //合并
  79. $userinfo = array_merge($userinfo,$new_data);
  80. //枚举
  81. //家乡
  82. $userinfo['hometown_city'] = Db::name('area')->where('id',$userinfo['hometown_cityid'])->value('name');
  83. $userinfo['hometown_city'] = ($userinfo['hometown_city'] && $userinfo['is_hideaddress'] == 0) ? $userinfo['hometown_city'] : '';
  84. //vip
  85. $userinfo['vip_endtime'] = Db::name('user_wallet')->where('user_id',$uid)->value('vip_endtime');
  86. $userinfo['is_vip'] = $userinfo['vip_endtime'] > time() ? 1 : 0;
  87. //是否喜欢和关注
  88. $is_follow = Db::name('user_follow')->where(['uid'=>$this->auth->id,'follow_uid'=>$uid])->find();
  89. $userinfo['is_follow'] = $is_follow ? 1 : 0;
  90. /*$is_like = Db::name('user_like')->where(['uid'=>$this->auth->id,'like_uid'=>$uid])->find();
  91. $userinfo['is_like'] = $is_like ? 1 : 0;*/
  92. //是否拉黑
  93. $is_black = Db::name('user_black')->where(['uid'=>$this->auth->id,'black_uid'=>$uid])->find();
  94. $userinfo['is_black'] = $is_black ? 1 : 0;
  95. //关注人数,粉丝人数
  96. $follow_num = Db::name('user_follow')->where(['uid'=>$uid])->count('id');
  97. $fans_num = Db::name('user_follow')->where(['follow_uid'=>$uid])->count('id');
  98. $userinfo['follow_num'] = $follow_num;
  99. $userinfo['fans_num'] = $fans_num;
  100. //访客数
  101. $visit_num = Db::name('user_visit')->where(['to_uid'=>$uid])->count('id');
  102. $userinfo['visit_num'] = $visit_num;
  103. //查询是否打过招呼
  104. $count = Db::name('user_greet')->where(['user_id' => $this->auth->id, 'user_to_id' => $uid])->count('id');
  105. if ($count) {
  106. $userinfo['is_chat'] = 1; //是否打过招呼: 1是 0否
  107. } else {
  108. $userinfo['is_chat'] = 0; //是否打过招呼: 1是 0否
  109. }
  110. //守护数量和是否已经守护
  111. $userinfo['guard_num'] = Db::name('user_guard')->where(['user_to_id' => $uid])->count('id');
  112. $userinfo['is_guard'] = Db::name('user_guard')->where(['user_id' => $this->auth->id, 'user_to_id' => $uid])->count('id');
  113. //查询财富等级和魅力等级
  114. $wallet_info = Db::name('user_wallet')->where(['user_id' => $uid])->find();
  115. $wealth_level = Db::name('wealth_level')->where(['value' => ['elt', $wallet_info['pay_money']]])->order('id desc')->find();
  116. if ($wealth_level) {
  117. $userinfo['wealth_level'] = localpath_to_netpath($wealth_level['image']);
  118. } else {
  119. $userinfo['wealth_level'] = '';
  120. }
  121. $charm_level = Db::name('charm_level')->where(['value' => ['elt', $wallet_info['get_money']]])->order('id desc')->find();
  122. if ($charm_level) {
  123. $userinfo['charm_level'] = localpath_to_netpath($charm_level['image']);
  124. } else {
  125. $userinfo['charm_level'] = '';
  126. }
  127. //开通守护消耗金币数量
  128. $userinfo['guard_price'] = config('site.guard_price') ? : 0;
  129. //男性非会员是否已开通聊天
  130. // $vip_endtime = Db::name('user_wallet')->where('user_id',$this->auth->id)->value('vip_endtime');
  131. // $user_chat_unlock = Db::name('user_chat_unlock')->where(['user_id' => $this->auth->id, 'user_to_id' => $uid])->count('id');
  132. // if ($this->auth->gender == 0 || $vip_endtime > time() || $user_chat_unlock) {
  133. $userinfo['is_chat_unlock'] = 1; //已解锁
  134. // } else {
  135. // $userinfo['is_chat_unlock'] = 0;
  136. // }
  137. //男性非会员解锁聊天所需金币数量
  138. $userinfo['unlock_chat_gold'] = config('site.unlock_chat_gold') > 0 ? config('site.unlock_chat_gold') : 10;
  139. //动态信息
  140. $dongtai = Db::name('topic_dongtai')->field('type, images')->where(['user_id' => $uid, 'is_hidden' => 0, 'type' => ['in', [1, 2]], 'status' => 0, 'auit_status' => 1])->order('id desc')->limit(3)->select();
  141. if ($dongtai) {
  142. $dongtai_image = [];
  143. foreach ($dongtai as &$v) {
  144. $arr['type'] = $v['type'];
  145. if ($v['type'] == 1) {
  146. //图片
  147. $images_url = explode(',', $v['images']);
  148. foreach ($images_url as &$value) {
  149. $arr['images'] = one_domain_image($value);
  150. array_push($dongtai_image, $arr);
  151. if (count($dongtai_image) == 4) {
  152. break 2;
  153. }
  154. }
  155. } else {
  156. //视频
  157. $images_url = explode('.', $v['images']);
  158. unset($images_url[count($images_url) - 1]);
  159. $arr['images'] = join('.', $images_url) . '_0.jpg';
  160. $arr['images'] = one_domain_image($arr['images']);
  161. array_push($dongtai_image, $arr);
  162. if (count($dongtai_image) == 4) {
  163. break;
  164. }
  165. }
  166. }
  167. $userinfo['dongtai_image'] = $dongtai_image;
  168. // $dongtai = join(',', $dongtai);
  169. // $dongtai = explode(',', $dongtai);
  170. // $dongtai = array_slice($dongtai, 0, 3);
  171. // $dongtai = join(',', $dongtai);
  172. // $userinfo['dongtai_image'] = one_domain_image($dongtai);
  173. // $userinfo['dongtai_image'] = explode(',', $userinfo['dongtai_image']);
  174. } else {
  175. $userinfo['dongtai_image'] = [];
  176. }
  177. if ($this->auth->id != $uid) {
  178. //查看别人信息,就要留下痕迹
  179. $data = [
  180. 'uid' => $this->auth->id,
  181. 'to_uid' => $uid,
  182. ];
  183. $check = Db::name('user_visit')->where($data)->find();
  184. if ($check) {
  185. Db::name('user_visit')->where($data)->update(['number' => $check['number'] + 1, 'updatetime' => time()]);
  186. } else {
  187. $data['number'] = 1;
  188. $data['updatetime'] = time();
  189. Db::name('user_visit')->insertGetId($data);
  190. }
  191. }
  192. //礼物墙
  193. $userinfo['gift_wall'] = $this->giftwall($uid);
  194. //动态数量
  195. $userinfo['dongtai_num'] = Db::name('topic_dongtai')->where(['user_id' => $uid, 'is_hidden' => 0, 'type' => ['in', [1, 2]], 'status' => 0, 'auit_status' => 1])->count();
  196. $this->success('success',$userinfo);
  197. }
  198. //某用户的礼物墙
  199. private function giftwall($uid){
  200. //$uid = $this->auth->id;
  201. //聊天礼物
  202. $gift_user_typing = Db::name('gift_user_typing')->alias('log')
  203. ->join('gift', 'gift.id = log.gift_id', 'LEFT')
  204. ->field('log.gift_id,log.gift_name,sum(log.number) as number,gift.image')
  205. ->where(['log.user_to_id' => $uid])
  206. ->group('log.gift_id')
  207. ->order('gift.price desc')
  208. ->column('log.gift_id,log.gift_name,sum(log.number) as number,gift.image');
  209. $gift_user_typing = list_domain_image($gift_user_typing,['image']);
  210. //dump($gift_user_typing);
  211. //动态礼物
  212. $gift_user_dongtai = Db::name('gift_user_dongtai')->alias('log')
  213. ->join('gift', 'gift.id = log.gift_id', 'LEFT')
  214. ->field('log.gift_id,log.gift_name,sum(log.number) as number,gift.image')
  215. ->where(['log.user_to_id' => $uid])
  216. ->group('log.gift_id')
  217. ->order('gift.price desc')
  218. ->column('log.gift_id,log.gift_name,sum(log.number) as number,gift.image');
  219. $gift_user_dongtai = list_domain_image($gift_user_dongtai,['image']);
  220. //dump($gift_user_dongtai);
  221. //为空
  222. if(empty($gift_user_typing) && empty($gift_user_dongtai)){
  223. return [];
  224. }
  225. if(empty($gift_user_typing) && !empty($gift_user_dongtai)){
  226. foreach($gift_user_dongtai as $key => $val){
  227. $result[] = $val;
  228. }
  229. return $result;
  230. }
  231. if(!empty($gift_user_typing) && empty($gift_user_dongtai)){
  232. foreach($gift_user_typing as $key => $val){
  233. $result[] = $val;
  234. }
  235. return $result;
  236. }
  237. //合并
  238. foreach($gift_user_typing as $key => $val){
  239. foreach($gift_user_dongtai as $k => $v){
  240. if($key == $k){
  241. $gift_user_typing[$key]['number'] += $v['number'];
  242. }
  243. if(!isset($gift_user_typing[$k])){
  244. $gift_user_typing[$k] = $v;
  245. }
  246. }
  247. }
  248. //dump($gift_user_typing);
  249. //结果
  250. $result = [];
  251. foreach($gift_user_typing as $key => $val){
  252. $result[] = $val;
  253. }
  254. return $result;
  255. }
  256. //开通守护
  257. public function addguard() {
  258. // 接口防并发
  259. if (!$this->apiLimit(1, 1)) {
  260. $this->error(__('Operation frequently'));
  261. }
  262. $user_id = input('user_id', 0, 'intval');// 守护对象
  263. if (!$user_id) {
  264. $this->error();
  265. }
  266. // 不可以守护给自己
  267. if($this->auth->id == $user_id) {
  268. $this->error("不可以守护自己");
  269. }
  270. //查询是否开通守护
  271. $count = Db::name('user_guard')->where(['user_id' => $this->auth->id, 'user_to_id' => $user_id])->count('id');
  272. if ($count) {
  273. $this->error('已经开通守护了');
  274. }
  275. $giftvalue = config('site.guard_price');
  276. if ($giftvalue <= 0) {
  277. $this->error('守护金额异常~');
  278. }
  279. //被守护人信息
  280. $touserinfo = Db::name('user')->where('id',$user_id)->find();
  281. if (!$touserinfo) {
  282. $this->error("不存在的用户");
  283. }
  284. // 判断当前用户余额
  285. $user_gold = model('wallet')->getWallet($this->auth->id,'gold');
  286. if($user_gold < $giftvalue) {
  287. $this->error("您的金币不足");
  288. }
  289. Db::startTrans();
  290. // 添加礼物守护记录表
  291. $data = [
  292. 'user_id' => $this->auth->id,
  293. 'user_to_id' => $user_id,
  294. 'price' => $giftvalue,
  295. 'createtime' => time(),
  296. ];
  297. $log_id = Db::name('user_guard')->insertGetId($data);
  298. if(!$log_id){
  299. Db::rollback();
  300. $this->error('守护失败');
  301. }
  302. if($giftvalue > 0){
  303. // 扣除当前用户余额
  304. $wallet_rs = model('wallet')->lockChangeAccountRemain($this->auth->id,$user_id,'gold',-$giftvalue,81,'开通守护','user_guard',$log_id);
  305. if($wallet_rs['status'] === false){
  306. Db::rollback();
  307. $this->error($wallet_rs['msg']);
  308. }
  309. // 添加守护用户余额
  310. $money_to_gold = config('site.money_to_gold');
  311. $gift_plat_scale = config('site.gift_plat_scale');
  312. $giftmoney = bcdiv($giftvalue,$money_to_gold,2);
  313. $money = bcdiv(bcmul($giftmoney,100 - $gift_plat_scale,2),100,2);
  314. $wallet_rs = model('wallet')->lockChangeAccountRemain($user_id,$this->auth->id,'money',$money,82,'被守护收益','user_guard',$log_id,2);
  315. if($wallet_rs['status'] === false){
  316. Db::rollback();
  317. $this->error($wallet_rs['msg']);
  318. }
  319. //增加赠送用户上级余额
  320. if ($touserinfo['intro_uid']) {
  321. //获取返利比率
  322. $agent_info = Db::name('user')->where(['id' => $touserinfo['intro_uid']])->field('is_agent,h_intro_income_rebate_rate')->find();
  323. $intro_income_rebate_rate = ($agent_info['is_agent'] == 1) ? $agent_info['h_intro_income_rebate_rate'] : (int)config('site.intro_income_rebate_rate'); //邀请人收礼物返利比率
  324. if ($intro_income_rebate_rate > 0 && $intro_income_rebate_rate <= 100) {
  325. //上级获得金额
  326. $intro_uid_money = bcdiv(bcmul($money,$intro_income_rebate_rate,2),100,2);
  327. if ($intro_uid_money > 0) {
  328. $intro_result = model('Wallet')->lockChangeAccountRemain($touserinfo['intro_uid'],$user_id,'money',$intro_uid_money,68, '邀请人开通守护获赠奖励','user_guard',$log_id);
  329. if($intro_result['status']===false)
  330. {
  331. Db::rollback();
  332. $this->error($intro_result['msg']);
  333. }
  334. }
  335. }
  336. }
  337. }
  338. //tag任务守护金币
  339. //搭讪奖励
  340. // $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,15);
  341. // if($task_rs === false){
  342. // Db::rollback();
  343. // $this->error('完成任务守护奖励失败');
  344. // }
  345. Db::commit();
  346. $this->success('守护成功');
  347. }
  348. //守护列表
  349. public function guardlist(){
  350. $user_id = input('user_id', 0, 'intval');
  351. if (!$user_id) {
  352. $this->error('您的网络开小差啦~');
  353. }
  354. $list = Db::name('user_guard')
  355. ->alias('a')
  356. ->join('user','a.user_id = user.id','LEFT')
  357. ->join('user_remark ur', 'ur.to_user_id = user.id and ur.user_id = '.$this->auth->id, 'LEFT')
  358. ->field('a.createtime,user.id,user.nickname,user.avatar,user.real_status,ur.nickname_remark')
  359. ->where('a.user_to_id',$user_id)->order('a.id desc')->autopage()->select();
  360. if (!$list) {
  361. $this->success('success', $list);
  362. }
  363. $list = list_domain_image($list,['avatar']);
  364. $time = time();
  365. foreach ($list as &$val) {
  366. $val['createtime'] = ceil(($time - $val['createtime']) / 86400);
  367. $val['nickname'] = !empty($val['nickname_remark']) ? $val['nickname_remark'] : $val['nickname'];
  368. }
  369. $this->success('success',$list);
  370. }
  371. //我的守护
  372. public function myguardlist(){
  373. $type = input('type', 0, 'intval'); //类型: 1我守护的 2守护我的
  374. if (!in_array($type, [1, 2])) {
  375. $this->error('您的网络开小差了');
  376. }
  377. $where = [];
  378. if ($type == 1) {
  379. $join = 'a.user_to_id = user.id';
  380. $where['a.user_id'] = $this->auth->id;
  381. } else {
  382. $join = 'a.user_id = user.id';
  383. $where['a.user_to_id'] = $this->auth->id;
  384. }
  385. $list = Db::name('user_guard')
  386. ->alias('a')
  387. ->join('user',$join,'LEFT')
  388. ->join('user_remark ur', 'ur.to_user_id = user.id and ur.user_id = '.$this->auth->id, 'LEFT')
  389. ->field('a.createtime,user.id,user.nickname,user.avatar,user.real_status,ur.nickname_remark')
  390. ->where($where)->order('a.id desc')->autopage()->select();
  391. if (!$list) {
  392. $this->success('success', $list);
  393. }
  394. $list = list_domain_image($list,['avatar']);
  395. $time = time();
  396. foreach ($list as &$val) {
  397. $val['createtime'] = ceil(($time - $val['createtime']) / 86400);
  398. $val['nickname'] = !empty($val['nickname_remark']) ? $val['nickname_remark'] : $val['nickname'];
  399. }
  400. $this->success('success',$list);
  401. }
  402. //打字聊天每句话调用一次
  403. public function chat_once(){
  404. if ($this->auth->is_kefu == 1) { //我是客服或者对方是客服
  405. $this->success('success',['money' => 'free']);
  406. }
  407. if ($this->auth->gender == 0) { //女生不花钱
  408. $this->error('您的网络开小差啦~');
  409. }
  410. //检测用户
  411. $to_user_id = input_post('to_user_id');
  412. $to_user_info = Db::name('user')->field('id,intro_uid,real_status,gender,free_video,free_audio,free_typing,chat_price,is_kefu')->where('id',$to_user_id)->find();
  413. if(!$to_user_info){
  414. $this->error('不存在的用户');
  415. }
  416. if ($to_user_info['is_kefu'] == 1) { //我是客服或者对方是客服
  417. $this->success('success',['money' => 'free']);
  418. }
  419. if ($to_user_info['gender'] != 0) {
  420. $this->error('同性不能聊天~');
  421. }
  422. //验证金额
  423. $wallet_info = Db::name('user_wallet')->where(['user_id' => $this->auth->id])->find();
  424. if ($wallet_info['vip_endtime'] >= time()) { //会员
  425. $price = $to_user_info['chat_price'];//config('site.typing_min_price'); //扣费金币
  426. //获取折扣
  427. $vip_chat_discount = config('site.vip_chat_discount');
  428. if ($vip_chat_discount >= 0 && $vip_chat_discount <= 10) {
  429. $price = bcdiv(bcmul($price,$vip_chat_discount,2),10,0);
  430. }
  431. } else {
  432. $price = $to_user_info['chat_price'];//config('site.typing_min_price'); //扣费金币
  433. }
  434. //正常价格
  435. $bili = config('site.money_to_gold'); //兑换比例
  436. $gift_plat_scale = config('site.gift_plat_scale'); //抽成比例
  437. $money = bcdiv($price,$bili,2); //对应人民币
  438. $money = bcdiv(bcmul($money,100 - $gift_plat_scale,2),100,2); //抽成后收益
  439. $resArray['money'] = $money; //返回给前端的计算结果
  440. Db::startTrans();
  441. //记录日志
  442. $data = [
  443. 'user_id' => $this->auth->id,
  444. 'price' => $price,
  445. 'createtime' => time(),
  446. 'to_user_id' => $to_user_id,
  447. 'money' => $money,
  448. ];
  449. $log_id = Db::name('user_match_typing_log')->insertGetId($data);
  450. if(!$log_id){
  451. Db::rollback();
  452. $this->error('扣费失败');
  453. }
  454. //有性别差,扣费
  455. if($price > 0){
  456. $rs = model('wallet')->lockChangeAccountRemain($this->auth->id,$to_user_id,'gold',-$price,13,'文字聊天消费','user_match_typing_log',$log_id);
  457. if($rs['status'] === false){
  458. Db::rollback();
  459. $this->error($rs['msg']);
  460. }
  461. }
  462. //另一方加钱,0收费
  463. if($money > 0){
  464. $rs = model('wallet')->lockChangeAccountRemain($to_user_id,$this->auth->id,'money',$money,23,'文字聊天收益','user_match_typing_log',$log_id,2);
  465. if($rs['status'] === false){
  466. Db::rollback();
  467. $this->error($rs['msg']);
  468. }
  469. $touserinfo = $to_user_info;
  470. //增加赠送用户上级余额
  471. if ($touserinfo['intro_uid']) {
  472. //获取返利比率
  473. $agent_info = Db::name('user')->where(['id' => $touserinfo['intro_uid']])->field('is_agent,h_intro_income_rebate_rate')->find();
  474. $intro_income_rebate_rate = ($agent_info['is_agent'] == 1) ? $agent_info['h_intro_income_rebate_rate'] : (int)config('site.intro_income_rebate_rate'); //邀请人收礼物返利比率
  475. if ($intro_income_rebate_rate > 0 && $intro_income_rebate_rate <= 100) {
  476. //上级获得金额
  477. $intro_uid_money = bcdiv(bcmul($money,$intro_income_rebate_rate,2),100,2);
  478. if ($intro_uid_money > 0) {
  479. $intro_result = model('Wallet')->lockChangeAccountRemain($touserinfo['intro_uid'],$to_user_id,'money',$intro_uid_money,68, '邀请人文字聊天获赠奖励','user_match_typing_log',$log_id);
  480. if($intro_result['status']===false)
  481. {
  482. Db::rollback();
  483. $this->error($intro_result['msg']);
  484. }
  485. }
  486. }
  487. }
  488. }
  489. //增加亲密度
  490. $user_intimacy_rs = addintimacy($this->auth->id, $to_user_id, $price);
  491. if (!$user_intimacy_rs['status']) {
  492. Db::rollback();
  493. $this->error('您的网络开小差啦~');
  494. }
  495. //tag任务赠送金币
  496. //私信5名异性奖励
  497. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,23);
  498. if($task_rs === false){
  499. Db::rollback();
  500. $this->error('完成任务赠送奖励失败');
  501. }
  502. $task_rs = \app\common\model\TaskLog::tofinish($to_user_id,23);
  503. if($task_rs === false){
  504. Db::rollback();
  505. $this->error('完成任务赠送奖励失败');
  506. }
  507. Db::commit();
  508. //发送消息
  509. /*if (isset($user_intimacy_rs) && $user_intimacy_rs['level_remark']) {
  510. $tenim = new \app\api\controller\Tenim;
  511. $tenim->sendMessageToUser($this->auth->id, $to_user_id, $user_intimacy_rs['level_remark'], 1);
  512. }*/
  513. $this->success('success',$resArray);
  514. }
  515. //语音通话每分钟调用一次
  516. public function voice_onemin(){
  517. if ($this->auth->is_kefu == 1) { //我是客服或者对方是客服
  518. $this->success('success',['money' => 'free']);
  519. }
  520. if ($this->auth->gender == 0) { //女生不花钱
  521. $this->error('您的网络开小差啦~');
  522. }
  523. //检测用户
  524. $to_user_id = input_post('to_user_id');
  525. $request_id = input('request_id', '', 'trim'); //唯一请求标识
  526. $to_user_info = Db::name('user')->field('id,intro_uid,real_status,gender,free_video,free_audio,free_typing,voice_price,is_kefu')->where('id',$to_user_id)->find();
  527. if(!$to_user_info){
  528. $this->error('不存在的用户');
  529. }
  530. if ($to_user_info['is_kefu'] == 1) { //我是客服或者对方是客服
  531. $this->success('success',['money' => 'free']);
  532. }
  533. if ($to_user_info['gender'] != 0) {
  534. $this->error('同性不能聊天~');
  535. }
  536. //验证金额
  537. $wallet_info = Db::name('user_wallet')->where(['user_id' => $this->auth->id])->find();
  538. if ($wallet_info['vip_endtime'] >= time()) { //会员
  539. $price = $to_user_info['voice_price'];//config('site.video_min_price'); //扣费金币
  540. //获取折扣
  541. $vip_video_discount = config('site.vip_video_discount');
  542. if ($vip_video_discount >= 0 && $vip_video_discount <= 10) {
  543. $price = bcdiv(bcmul($price,$vip_video_discount,2),10,0);
  544. }
  545. } else {
  546. $price = $to_user_info['voice_price'];//config('site.video_min_price'); //扣费金币
  547. }
  548. //正常价格
  549. $bili = config('site.money_to_gold'); //兑换比例
  550. $gift_plat_scale = config('site.gift_plat_scale'); //抽成比例
  551. $money = bcdiv($price,$bili,2); //对应人民币
  552. $money = bcdiv(bcmul($money,100 - $gift_plat_scale,2),100,2); //抽成后收益
  553. Db::startTrans();
  554. //查询是否有匹配记录
  555. $user_match_audio_log_info = [];
  556. if ($request_id) {
  557. $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();
  558. }
  559. if ($user_match_audio_log_info) {
  560. //修改记录日志
  561. $data = [
  562. 'price' => bcadd($user_match_audio_log_info['price'],$price,0),
  563. 'createtime' => time(),
  564. 'money' => bcadd($user_match_audio_log_info['money'],$money,2),
  565. 'call_minutes' => $user_match_audio_log_info['call_minutes'] + 1
  566. ];
  567. $log_rs = Db::name('user_match_audio_log')->where(['id' => $user_match_audio_log_info['id'], 'createtime' => $user_match_audio_log_info['createtime']])->setField($data);
  568. if (!$log_rs) {
  569. Db::rollback();
  570. $this->error('扣费失败');
  571. }
  572. $log_id = $user_match_audio_log_info['id'];
  573. } else {
  574. //添加记录日志
  575. $data = [
  576. 'user_id' => $this->auth->id,
  577. 'price' => $price,
  578. 'createtime' => time(),
  579. 'to_user_id' => $to_user_id,
  580. 'money' => $money,
  581. 'request_id' => $request_id,
  582. 'call_minutes' => 1
  583. ];
  584. $log_id = Db::name('user_match_audio_log')->insertGetId($data);
  585. if (!$log_id) {
  586. Db::rollback();
  587. $this->error('扣费失败');
  588. }
  589. }
  590. //有性别差,扣费
  591. if($price > 0){
  592. $rs = model('wallet')->lockChangeAccountRemain($this->auth->id,$to_user_id,'gold',-$price,12,'语音通话消费' . $data['call_minutes'] . '分钟','user_match_audio_log',$log_id, 0, $request_id);
  593. if($rs['status'] === false){
  594. Db::rollback();
  595. $this->error($rs['msg']);
  596. }
  597. }
  598. //另一方加钱,0收费
  599. if($money > 0){
  600. $rs = model('wallet')->lockChangeAccountRemain($to_user_id,$this->auth->id,'money',$money,22,'语音通话收益' . $data['call_minutes'] . '分钟','user_match_audio_log',$log_id,2, $request_id);
  601. if($rs['status'] === false){
  602. Db::rollback();
  603. $this->error($rs['msg']);
  604. }
  605. $touserinfo = $to_user_info;
  606. //增加赠送用户上级余额
  607. if ($touserinfo['intro_uid']) {
  608. //获取返利比率
  609. $agent_info = Db::name('user')->where(['id' => $touserinfo['intro_uid']])->field('is_agent,h_intro_income_rebate_rate')->find();
  610. $intro_income_rebate_rate = ($agent_info['is_agent'] == 1) ? $agent_info['h_intro_income_rebate_rate'] : (int)config('site.intro_income_rebate_rate'); //邀请人收礼物返利比率
  611. if ($intro_income_rebate_rate > 0 && $intro_income_rebate_rate <= 100) {
  612. //上级获得金额
  613. $intro_uid_money = bcdiv(bcmul($money,$intro_income_rebate_rate,2),100,2);
  614. if ($intro_uid_money > 0) {
  615. $intro_result = model('Wallet')->lockChangeAccountRemain($touserinfo['intro_uid'],$to_user_id,'money',$intro_uid_money,68, '邀请人语音聊天获赠奖励' . $data['call_minutes'] . '分钟','user_match_audio_log',$log_id, 0, $request_id);
  616. if($intro_result['status']===false)
  617. {
  618. Db::rollback();
  619. $this->error($intro_result['msg']);
  620. }
  621. }
  622. }
  623. }
  624. }
  625. //增加亲密度
  626. $user_intimacy_rs = addintimacy($this->auth->id, $to_user_id, $price);
  627. if (!$user_intimacy_rs['status']) {
  628. Db::rollback();
  629. $this->error('您的网络开小差啦~');
  630. }
  631. //tag任务赠送金币
  632. //与1名异性语音通话奖励
  633. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,25);
  634. if($task_rs === false){
  635. Db::rollback();
  636. $this->error('完成任务赠送奖励失败');
  637. }
  638. $task_rs = \app\common\model\TaskLog::tofinish($to_user_id,25);
  639. if($task_rs === false){
  640. Db::rollback();
  641. $this->error('完成任务赠送奖励失败');
  642. }
  643. //发送消息
  644. /*if (isset($user_intimacy_rs) && $user_intimacy_rs['level_remark']) {
  645. $tenim = new \app\api\controller\Tenim;
  646. $tenim->sendMessageToUser($this->auth->id, $to_user_id, $user_intimacy_rs['level_remark'], 1);
  647. }*/
  648. Db::commit();
  649. $rs = [
  650. 'money' => $data['money'],
  651. ];
  652. $this->success('success',$rs);
  653. }
  654. //视频通话每分钟调用一次
  655. public function videochat_onemin(){
  656. if ($this->auth->is_kefu == 1) { //我是客服或者对方是客服
  657. $this->success('success',['money' => 'free']);
  658. }
  659. if ($this->auth->gender == 0) { //女生不花钱
  660. $this->error('您的网络开小差啦~');
  661. }
  662. //检测用户
  663. $to_user_id = input_post('to_user_id');
  664. $request_id = input('request_id', '', 'trim'); //唯一请求标识
  665. $to_user_info = Db::name('user')->field('id,intro_uid,real_status,gender,free_video,free_audio,free_typing,video_price,is_kefu')->where('id',$to_user_id)->find();
  666. if(!$to_user_info){
  667. $this->error('不存在的用户');
  668. }
  669. if ($to_user_info['is_kefu'] == 1) { //我是客服或者对方是客服
  670. $this->success('success',['money' => 'free']);
  671. }
  672. if ($to_user_info['gender'] != 0) {
  673. $this->error('同性不能聊天~');
  674. }
  675. /* //检查是否免费过
  676. $count = Db::name('user_match_video_log_free')->where(['user_id' => $this->auth->id])->count('id');
  677. if (!$count) {
  678. //记录日志
  679. $data = [
  680. 'user_id' => $this->auth->id,
  681. 'price' => 0,
  682. 'createtime' => time(),
  683. 'to_user_id' => $to_user_id,
  684. 'money' => 0,
  685. ];
  686. $log_id = Db::name('user_match_video_log_free')->insertGetId($data);
  687. if(!$log_id){
  688. $this->error('扣费失败');
  689. }
  690. $this->success('success');
  691. }*/
  692. //验证金额
  693. $wallet_info = Db::name('user_wallet')->where(['user_id' => $this->auth->id])->find();
  694. if ($wallet_info['vip_endtime'] >= time()) { //会员
  695. $price = $to_user_info['video_price'];//config('site.video_min_price'); //扣费金币
  696. //获取折扣
  697. $vip_video_discount = config('site.vip_video_discount');
  698. if ($vip_video_discount >= 0 && $vip_video_discount <= 10) {
  699. $price = bcdiv(bcmul($price,$vip_video_discount,2),10,0);
  700. }
  701. } else {
  702. $price = $to_user_info['video_price'];//config('site.video_min_price'); //扣费金币
  703. }
  704. //正常价格
  705. $bili = config('site.money_to_gold'); //兑换比例
  706. $gift_plat_scale = config('site.gift_plat_scale'); //抽成比例
  707. $money = bcdiv($price,$bili,2); //对应人民币
  708. $money = bcdiv(bcmul($money,100 - $gift_plat_scale,2),100,2); //抽成后收益
  709. Db::startTrans();
  710. //查询是否有匹配记录
  711. $user_match_video_log_info = [];
  712. if ($request_id) {
  713. $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();
  714. }
  715. if ($user_match_video_log_info) {
  716. //修改记录日志
  717. $data = [
  718. 'price' => bcadd($user_match_video_log_info['price'],$price,0),
  719. 'createtime' => time(),
  720. 'money' => bcadd($user_match_video_log_info['money'],$money,2),
  721. 'call_minutes' => $user_match_video_log_info['call_minutes'] + 1
  722. ];
  723. $log_rs = Db::name('user_match_video_log')->where(['id' => $user_match_video_log_info['id'], 'createtime' => $user_match_video_log_info['createtime']])->setField($data);
  724. if (!$log_rs) {
  725. Db::rollback();
  726. $this->error('扣费失败');
  727. }
  728. $log_id = $user_match_video_log_info['id'];
  729. } else {
  730. //添加记录日志
  731. $data = [
  732. 'user_id' => $this->auth->id,
  733. 'price' => $price,
  734. 'createtime' => time(),
  735. 'to_user_id' => $to_user_id,
  736. 'money' => $money,
  737. 'request_id' => $request_id,
  738. 'call_minutes' => 1
  739. ];
  740. $log_id = Db::name('user_match_video_log')->insertGetId($data);
  741. if (!$log_id) {
  742. Db::rollback();
  743. $this->error('扣费失败');
  744. }
  745. }
  746. //有性别差,扣费
  747. if($price > 0){
  748. $rs = model('wallet')->lockChangeAccountRemain($this->auth->id,$to_user_id,'gold',-$price,11,'视频通话消费' . $data['call_minutes'] . '分钟','user_match_video_log',$log_id, 0, $request_id);
  749. if($rs['status'] === false){
  750. Db::rollback();
  751. $this->error($rs['msg']);
  752. }
  753. }
  754. //另一方加钱,0收费
  755. if($money > 0){
  756. $rs = model('wallet')->lockChangeAccountRemain($to_user_id,$this->auth->id,'money',$money,21,'视频通话收益' . $data['call_minutes'] . '分钟','user_match_video_log',$log_id,2, $request_id);
  757. if($rs['status'] === false){
  758. Db::rollback();
  759. $this->error($rs['msg']);
  760. }
  761. $touserinfo = $to_user_info;
  762. //增加赠送用户上级余额
  763. if ($touserinfo['intro_uid']) {
  764. //获取返利比率
  765. $agent_info = Db::name('user')->where(['id' => $touserinfo['intro_uid']])->field('is_agent,h_intro_income_rebate_rate')->find();
  766. $intro_income_rebate_rate = ($agent_info['is_agent'] == 1) ? $agent_info['h_intro_income_rebate_rate'] : (int)config('site.intro_income_rebate_rate'); //邀请人收礼物返利比率
  767. if ($intro_income_rebate_rate > 0 && $intro_income_rebate_rate <= 100) {
  768. //上级获得金额
  769. $intro_uid_money = bcdiv(bcmul($money,$intro_income_rebate_rate,2),100,2);
  770. if ($intro_uid_money > 0) {
  771. $intro_result = model('Wallet')->lockChangeAccountRemain($touserinfo['intro_uid'],$to_user_id,'money',$intro_uid_money,68, '邀请人视频聊天获赠奖励' . $data['call_minutes'] . '分钟','user_match_video_log',$log_id, 0, $request_id);
  772. if($intro_result['status']===false)
  773. {
  774. Db::rollback();
  775. $this->error($intro_result['msg']);
  776. }
  777. }
  778. }
  779. }
  780. }
  781. //增加亲密度
  782. $user_intimacy_rs = addintimacy($this->auth->id, $to_user_id, $price);
  783. if (!$user_intimacy_rs['status']) {
  784. Db::rollback();
  785. $this->error('您的网络开小差啦~');
  786. }
  787. //tag任务赠送金币
  788. //与1名异性视频通话奖励
  789. $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,26);
  790. if($task_rs === false){
  791. Db::rollback();
  792. $this->error('完成任务赠送奖励失败');
  793. }
  794. $task_rs = \app\common\model\TaskLog::tofinish($to_user_id,26);
  795. if($task_rs === false){
  796. Db::rollback();
  797. $this->error('完成任务赠送奖励失败');
  798. }
  799. Db::commit();
  800. //发送消息
  801. /*if (isset($user_intimacy_rs) && $user_intimacy_rs['level_remark']) {
  802. $tenim = new \app\api\controller\Tenim;
  803. $tenim->sendMessageToUser($this->auth->id, $to_user_id, $user_intimacy_rs['level_remark'], 1);
  804. }*/
  805. $rs = [
  806. 'money' => $data['money'],
  807. ];
  808. $this->success('success',$rs);
  809. }
  810. //消息列表通话
  811. public function calllist() {
  812. if ($this->auth->gender == 1) {
  813. $list = Db::name('user_gold_log')->where(['user_id' => $this->auth->id, 'log_type' => ['in', [11, 12]]])->order('id desc')->autopage()->select();
  814. } elseif ($this->auth->gender == 0) {
  815. $list = Db::name('user_money_log')->where(['user_id' => $this->auth->id, 'log_type' => ['in', [21, 22]]])->order('id desc')->autopage()->select();
  816. } else {
  817. $this->success('success', []);
  818. }
  819. if (!$list) {
  820. $this->success('success', $list);
  821. }
  822. $arr = [];
  823. $mt_user_match_audio_log = Db::name('user_match_audio_log');
  824. $mt_user_match_video_log = Db::name('user_match_video_log');
  825. $mt_user = Db::name('user');
  826. foreach ($list as &$v) {
  827. $data = [];
  828. if ($this->auth->gender == 1) {
  829. if ($v['log_type'] == 11) { //视频通话
  830. $log_info = $mt_user_match_video_log->field('to_user_id user_id, createtime, call_minutes')->where(['id' => $v['table_id']])->find();
  831. $data['desc'] = '视频时长' . $log_info['call_minutes'] . '分钟';
  832. } else { //语音通话
  833. $log_info = $mt_user_match_audio_log->field('to_user_id user_id, createtime, call_minutes')->where(['id' => $v['table_id']])->find();
  834. $data['desc'] = '语音时长' . $log_info['call_minutes'] . '分钟';
  835. }
  836. } else {
  837. if ($v['log_type'] == 21) { //视频通话
  838. $log_info = $mt_user_match_video_log->field('user_id, createtime, call_minutes')->where(['id' => $v['table_id']])->find();
  839. $data['desc'] = '视频时长' . $log_info['call_minutes'] . '分钟';
  840. } else { //语音通话
  841. $log_info = $mt_user_match_audio_log->field('user_id, createtime, call_minutes')->where(['id' => $v['table_id']])->find();
  842. $data['desc'] = '语音时长' . $log_info['call_minutes'] . '分钟';
  843. }
  844. }
  845. $user_info = $mt_user->field('nickname, avatar,is_active')->where(['id' => $log_info['user_id']])->find();
  846. $data['user_id'] = $log_info['user_id'];
  847. $data['nickname'] = $user_info['nickname'];
  848. $data['avatar'] = one_domain_image($user_info['avatar']);
  849. $data['createtime'] = get_last_time($log_info['createtime']);
  850. $data['is_active'] = $user_info['is_active'];
  851. $arr[] = $data;
  852. }
  853. $this->success('success', $arr);
  854. }
  855. //查询对方用户收费价格和我的余额
  856. public function otheruserinfo(){
  857. $user_id = input('user_id', 0, 'intval');
  858. if (!$user_id) {
  859. $this->error('您的网络开小差啦~');
  860. }
  861. $field = [
  862. 'chat_price','voice_price','video_price','gender','is_kefu', 'open_match_audio', 'open_match_video'
  863. ];
  864. $info = Db::name('user')->field($field)->where('id',$user_id)->find();
  865. if ($info['is_kefu'] != 1 && $this->auth->is_kefu != 1) { //不是客服
  866. if ($info['gender'] == $this->auth->gender || $info['gender'] == -1 || $this->auth->gender == -1) {
  867. $this->error('性别存在问题');
  868. }
  869. }
  870. if ($this->auth->gender == 0) { //收费价格按照女号
  871. $info['chat_price'] = $this->auth->chat_price;
  872. $info['voice_price'] = $this->auth->voice_price;
  873. $info['video_price'] = $this->auth->video_price;
  874. $info['open_match_audio'] = $this->auth->open_match_audio;
  875. $info['open_match_video'] = $this->auth->open_match_video;
  876. }
  877. $info['chat_price_vip'] = $info['chat_price']; //vip价格
  878. $info['voice_price_vip'] = $info['voice_price'];
  879. $info['video_price_vip'] = $info['video_price'];
  880. $info['is_vip'] = 0; //是否vip: 0否 1是
  881. //获取聊天折扣
  882. $vip_chat_discount = config('site.vip_chat_discount');
  883. if ($vip_chat_discount >= 0 && $vip_chat_discount <= 10) {
  884. $info['vip_chat_discount'] = $vip_chat_discount;
  885. } else {
  886. $info['vip_chat_discount'] = 10;
  887. }
  888. //获取语音视频折扣
  889. $vip_video_discount = config('site.vip_video_discount');
  890. if ($vip_video_discount >= 0 && $vip_video_discount <= 10) {
  891. $info['vip_voice_discount'] = config('site.vip_video_discount'); //语音
  892. $info['vip_video_discount'] = config('site.vip_video_discount'); //视频
  893. } else {
  894. $info['vip_voice_discount'] = 10;
  895. $info['vip_video_discount'] = 10;
  896. }
  897. //获取聊天折扣
  898. $info['chat_price_vip'] = ceil($info['chat_price'] * $info['vip_chat_discount'] / 10);
  899. //获取语音折扣
  900. $info['voice_price_vip'] = ceil($info['voice_price'] * $info['vip_voice_discount'] / 10);
  901. //获取视频折扣
  902. $info['video_price_vip'] = ceil($info['video_price'] * $info['vip_video_discount'] / 10);
  903. if ($this->auth->gender == 0) { //查询男号余额和vip
  904. $wallet_info = Db::name('user_wallet')->where(['user_id' => $user_id])->find();
  905. } else {
  906. $wallet_info = Db::name('user_wallet')->where(['user_id' => $this->auth->id])->find();
  907. }
  908. if ($wallet_info['vip_endtime'] >= time()) {
  909. $info['is_vip'] = 1;
  910. }
  911. $info['gold'] = $wallet_info['gold'];
  912. $info['plat_scale'] = config('site.gift_plat_scale'); //平台抽成百分比
  913. $info['money_to_gold'] = config('site.money_to_gold'); //
  914. $this->success('success',$info);
  915. }
  916. //语音视频随聊
  917. public function getrandomuser() {
  918. $type = input('type', 0, 'intval'); //类型:1语音 2视频
  919. if (!in_array($type, [1, 2, 3])) {
  920. $this->error('您的网络开小差了');
  921. }
  922. $size = input('size',0,'intval');// 是否查 10 条
  923. $size = $size > 0 ? 1 : 0;
  924. //给出备选用户
  925. $map = [
  926. 'gender' => $this->auth->gender == 1 ? 0 : 1, //异性
  927. 'is_active' => 1, //在线的
  928. 'status' =>1, //未封禁用户
  929. 'is_kefu' => 0, //不是客服
  930. ];
  931. if ($this->auth->gender == 1) {
  932. $map['real_status|idcard_status'] = 1; //真人认证或实名认证
  933. }
  934. if ($type == 1) {
  935. $map['open_match_audio'] = 1;
  936. } elseif ($type == 2) {
  937. $map['open_match_video'] = 1;
  938. }
  939. $key = md5(json_encode($map));// 根据搜索条件做Key
  940. $lists = Cache::remember("getrandomuser_{$key}_{$size}",function () use ($map,$size){
  941. $query = Db::name('user')
  942. ->field('id,nickname,username,avatar')
  943. ->where($map)
  944. ->order('is_active desc, logintime desc');
  945. if ($size == 1){
  946. $query->limit(10);
  947. }else{
  948. $query->page($this->page,100);
  949. }
  950. $lists = $query->select();
  951. $lists = list_domain_image($lists,['avatar,audio_bio']);
  952. $mt_user_greet_content = Db::name('user_greet_content');
  953. foreach ($lists as &$v) {
  954. $info = $mt_user_greet_content->where(['user_id' => $v['id'], 'is_default' => 1])->find();
  955. if ($info) {
  956. if ($info['type'] == 0) {
  957. $v['greet_content'] = $info['content'];
  958. } elseif ($info['type'] == 1) {
  959. $v['greet_content'] = '[语音]';
  960. } elseif ($info['type'] == 2) {
  961. $v['greet_content'] = '[图片]';
  962. }
  963. } else {
  964. $v['greet_content'] = '';
  965. }
  966. }
  967. return $lists;
  968. },2);
  969. $count = Db::name('user')->where(['is_active' => 1])->count('id');
  970. $return_data['count'] = config('site.randomuser_num') > 0 ? config('site.randomuser_num') + $count : $count;
  971. $return_data['list'] = $lists;
  972. $this->success('success',$return_data);
  973. }
  974. //查询免费体验视频通话用户信息
  975. public function getfreevideouserinfo() {
  976. $to_user_id = input('to_user_id', 0, 'intval');
  977. $to_user_info = Db::name('user')->field('id,gender,nickname,avatar,birthday,height,bio')->where(['id' => $to_user_id, 'is_kefu' => 0])->find();
  978. if(!$to_user_info){
  979. $this->error('不存在的用户');
  980. }
  981. if ($to_user_info['gender'] == $this->auth->gender) {
  982. $this->error('同性不能聊天~');
  983. }
  984. $to_user_info['desc'] = '';
  985. $age = birthtime_to_age($to_user_info['birthday']);
  986. if ($age > 0) {
  987. $to_user_info['desc'] = $age . '岁';
  988. } else {
  989. $to_user_info['desc'] = '18岁';
  990. }
  991. if ($to_user_info['height']) {
  992. $to_user_info['desc'] .= ' | ' . $to_user_info['height'];
  993. }
  994. //查询是否免费过
  995. $to_user_info['free_count'] = 1;//Db::name('user_match_video_log_free')->where(['user_id' => $this->auth->id])->count('id');
  996. $this->success('信息', $to_user_info);
  997. }
  998. //免费体验视频通话1分钟
  999. public function videochat_onemin_free(){
  1000. $this->success('success');
  1001. if ($this->auth->is_kefu == 1) { //我是客服或者对方是客服
  1002. $this->success('success');
  1003. }
  1004. //检查是否免费过
  1005. $count = Db::name('user_match_video_log_free')->where(['user_id' => $this->auth->id])->count('id');
  1006. if ($count) {
  1007. $this->error('已经免费体验过');
  1008. }
  1009. //检测用户
  1010. $to_user_id = input_post('to_user_id');
  1011. $to_user_info = Db::name('user')->field('id,real_status,gender,free_video,free_audio,free_typing,video_price,is_kefu')->where('id',$to_user_id)->find();
  1012. if(!$to_user_info){
  1013. $this->error('不存在的用户');
  1014. }
  1015. if ($to_user_info['is_kefu'] == 1) { //我是客服或者对方是客服
  1016. $this->success('success');
  1017. }
  1018. if ($to_user_info['gender'] == $this->auth->gender) {
  1019. $this->error('同性不能聊天~');
  1020. }
  1021. //记录日志
  1022. $data = [
  1023. 'user_id' => $this->auth->id,
  1024. 'price' => 0,
  1025. 'createtime' => time(),
  1026. 'to_user_id' => $to_user_id,
  1027. 'money' => 0,
  1028. ];
  1029. $log_id = Db::name('user_match_video_log_free')->insertGetId($data);
  1030. if(!$log_id){
  1031. $this->error('扣费失败');
  1032. }
  1033. $this->success('success');
  1034. }
  1035. //男性非会员解锁聊天
  1036. public function unlockchat() {
  1037. }
  1038. /**
  1039. * 是否关注
  1040. */
  1041. public function isFollows() {
  1042. $user_id = $this->request->request("user_id",0,"intval");
  1043. if (!$user_id || $user_id<=0) {
  1044. $this->error(__('Invalid parameters'));
  1045. }
  1046. $map = [
  1047. 'uid' => $this->auth->id,
  1048. 'follow_uid' => $user_id,
  1049. ];
  1050. $check = Db::name('user_follow')->where($map)->find();
  1051. $data = [];
  1052. if($check){
  1053. $data["is_show_follow"] = 0;
  1054. }else{
  1055. $data["is_show_follow"] = 1;
  1056. }
  1057. $this->success("获取成功!",$data);
  1058. }
  1059. //我的礼物榜
  1060. public function gift_ranklist(){
  1061. //日榜
  1062. $sql1 = Db::name('gift_user_typing') ->field('user_id,total_price')->where('user_to_id',$this->auth->id)->whereTime('createtime','today')->select(false);
  1063. $sql2 = Db::name('gift_user_dongtai')->field('user_id,total_price')->where('user_to_id',$this->auth->id)->whereTime('createtime','today')->select(false);
  1064. $sql = 'select log.user_id,sum(log.total_price) sum_price,user.nickname,user.avatar from ('.$sql1.' UNION ALL '.$sql2.') as log LEFT JOIN mt_user user on log.user_id = user.id group by log.user_id order by sum_price desc limit 10';
  1065. $rs_day = Db::query($sql);
  1066. //周榜
  1067. $sql1 = Db::name('gift_user_typing') ->field('user_id,total_price')->where('user_to_id',$this->auth->id)->whereTime('createtime','week')->select(false);
  1068. $sql2 = Db::name('gift_user_dongtai')->field('user_id,total_price')->where('user_to_id',$this->auth->id)->whereTime('createtime','week')->select(false);
  1069. $sql = 'select log.user_id,sum(log.total_price) sum_price,user.nickname,user.avatar from ('.$sql1.' UNION ALL '.$sql2.') as log LEFT JOIN mt_user user on log.user_id = user.id group by log.user_id order by sum_price desc limit 10';
  1070. $rs_week = Db::query($sql);
  1071. //月榜
  1072. $sql1 = Db::name('gift_user_typing') ->field('user_id,total_price')->where('user_to_id',$this->auth->id)->whereTime('createtime','month')->select(false);
  1073. $sql2 = Db::name('gift_user_dongtai')->field('user_id,total_price')->where('user_to_id',$this->auth->id)->whereTime('createtime','month')->select(false);
  1074. $sql = 'select log.user_id,sum(log.total_price) sum_price,user.nickname,user.avatar from ('.$sql1.' UNION ALL '.$sql2.') as log LEFT JOIN mt_user user on log.user_id = user.id group by log.user_id order by sum_price desc limit 10';
  1075. $rs_month = Db::query($sql);
  1076. //
  1077. $rs = [
  1078. 'day' => $rs_day,
  1079. 'week' => $rs_week,
  1080. 'month' => $rs_month,
  1081. ];
  1082. $this->success(1,$rs);
  1083. }
  1084. /////////////////////////////////////////////////////
  1085. /**
  1086. * calc_map_distance() , 根据地图上的两个点各自的x,y坐标,计算出2点之间的直线距离
  1087. * @param array $point_1 第1个点的x,y坐标 array( 101 , 202 )
  1088. * @param array $point_2 第2个点的x,y坐标 array( 101 , 202 )
  1089. * @param bool $calc_as_string 是否计算为字符串公里距离 , 如果未否返回数字
  1090. * @return float | false | string
  1091. */
  1092. private function calc_map_distance( $point_1=array( ) , $point_2=array( ) , $calc_as_string=false ) {
  1093. if( empty( $point_1 ) || empty( $point_2 ) ){
  1094. return false;
  1095. }
  1096. // 经纬度不存在,或者经纬度超过最大范围 +-180 , +-90 ,返回false
  1097. $p1_x = $point_1[0];
  1098. $p1_y = $point_1[1];
  1099. $p2_x = $point_2[0];
  1100. $p2_y = $point_2[1];
  1101. if(
  1102. $p1_x < -180 || $p1_x > 180
  1103. || $p2_x < -180 || $p2_x > 180
  1104. || $p1_y < -90 || $p1_y > 90
  1105. || $p2_y < -90 || $p2_y > 90
  1106. ){
  1107. return '0公里';
  1108. }
  1109. // 根据2点各自的坐标,计算2点之间直线距离的公式
  1110. $distance = round(6378.138*2*asin(sqrt(pow(sin(( $p1_x *pi()/180-$p2_x*pi()/180)/2),2)+cos( $p1_x *pi()/180)*cos($p2_x*pi()/180)* pow(sin(( $p1_y *pi()/180-$p2_y*pi()/180)/2),2)))*1000);
  1111. // 是否计算为字符串公里距离
  1112. if( !$calc_as_string ){
  1113. return (string)round( $distance / 1000 , 1 ) . '公里';
  1114. }
  1115. // 如果计算为字符串公里距离
  1116. if( $distance / 1000 > 1 ){
  1117. $k = (string)round( $distance / 1000 , 1 );
  1118. $m = (string)$distance % 1000 ;
  1119. $distance = "{$k}公里{$m}米";
  1120. }
  1121. else{
  1122. $distance = "{$distance}米";
  1123. }
  1124. return $distance;
  1125. }
  1126. //地图api,根据两地坐标,获得两地距离,打卡用的
  1127. //type=0直线,type=1开车
  1128. private function getmapjuli($start_lon,$start_lat,$end_lon,$end_lat,$type = 0){
  1129. $result = 0;
  1130. $apiurl = 'https://restapi.amap.com/v3/distance?';
  1131. $param = [
  1132. 'key' => '398c424811d1a59beac2f915323d334e',
  1133. 'origins' => $start_lon.','.$start_lat,
  1134. 'destination' => $end_lon.','.$end_lat,
  1135. 'type' => $type,
  1136. 'output' => 'json',
  1137. ];
  1138. $apiurl .= http_build_query($param);
  1139. $request_rs = json_decode(curl_get($apiurl),true);
  1140. if(isset($request_rs['status']) && $request_rs['status'] == 1){
  1141. if(isset($request_rs['results'][0]['distance']))
  1142. {
  1143. $result = $request_rs['results'][0]['distance'];
  1144. }
  1145. }
  1146. //dump($result);
  1147. return $result;
  1148. }
  1149. public function distance()
  1150. {
  1151. $a = $this->calc_map_distance([118.339282,35.028445],[118.437399,35.017438]);
  1152. dump($a);
  1153. $a = $this->calc_map_distance([118.339282,35.028445],[118.437399,35.017438],true);
  1154. dump($a);
  1155. $b = $this->getmapjuli(118.339282,35.028445,118.437399,35.017438,1);
  1156. dump($b);
  1157. $b = $this->getmapjuli(118.339282,35.028445,118.437399,35.017438,0);
  1158. dump($b);
  1159. }
  1160. }