Usercenter.php 51 KB

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