Party.php 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\controller\Common;
  4. use app\common\model\PartyJoin;
  5. use fast\Random;
  6. use app\common\controller\RedisLeaderboard;
  7. use Redis;
  8. use think\Db;
  9. use think\Exception;
  10. use think\exception\PDOException;
  11. use think\exception\ValidateException;
  12. use think\Request;
  13. use app\common\service\RoomService;
  14. use app\common\library\GatewayworkerTools;
  15. /**
  16. * 派对信息接口
  17. */
  18. class Party extends Common
  19. {
  20. protected $noNeedLogin = ['updatePartyInfo','getPatyType','addUserPositionToParty', 'clearMoney','clearCharm','getPartyRankList','getDefaultBackground','getPartGifList','getPartHeadgifList','isNotalk','getMusicList','updateTops','handleParty'];
  21. protected $noNeedRight = ['*'];
  22. public function __construct(Request $request = null)
  23. {
  24. $this->roomTypeArr = [1=>"party",2=>"live"];
  25. parent::__construct($request);
  26. }
  27. /**
  28. * 创建/进入派对
  29. */
  30. public function createParty() {
  31. $room_type = $this->request->request('room_type',2); // 房间类型:1=派对,2=直播
  32. $partyModel = new \app\common\model\Party();
  33. $user_id = $this->auth->id;
  34. // 开直播时,判断当前用户是否为主播
  35. $anchorInfo = [];
  36. if($room_type == 2) {
  37. $anchorInfo = \app\common\model\UserAnchor::where(["user_id"=>$user_id])->find();
  38. $anchorInfo || $this->error("您还未申请主播!");
  39. $anchorInfo->status == 0 && $this->error("您的主播申请信息还未受理,请耐心等待!");
  40. $anchorInfo->status == 2 && $this->error("您的主播申请未通过,请重新提交!");
  41. }
  42. // 1。实名认证
  43. $userAuthInfo = \app\common\model\UserAuth::where(["user_id"=>$user_id])->find();
  44. if($userAuthInfo) {
  45. if($userAuthInfo->status == 0) {
  46. $this->error("您的实名认证还在这审核中...,请耐心等待!");
  47. } elseif($userAuthInfo->status == 2) {
  48. $this->error("您的实名认证审核未通过,请重新审核!");
  49. }
  50. } else {
  51. $this->error("请先申请实名认证!");
  52. }
  53. if($room_type == 1) {
  54. // 2。开厅申请
  55. $authInfo = model('Guild')->where(["user_id"=>$user_id])->order('id desc')->find();
  56. if($authInfo) {
  57. if($authInfo->status == 0) {
  58. $this->error("您的家族申请还在这审核中...,请耐心等待!");
  59. } elseif($authInfo->status == -1) {
  60. $this->error("您的家族申请已解散,请重新申请!");
  61. }
  62. } else {
  63. $this->error("请先申请家族!");
  64. }
  65. }
  66. // 判断派对是否存在
  67. $redis = new Redis();
  68. $redisconfig = config("redis");
  69. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  70. if ($redisconfig['redis_pwd']) {
  71. $redis->auth($redisconfig['redis_pwd']);
  72. }
  73. if($redisconfig['redis_selectdb'] > 0){
  74. $redis->select($redisconfig['redis_selectdb']);
  75. }
  76. $where = [];
  77. $where["user_id"] = $user_id;
  78. $where["room_type"] = $room_type;
  79. $sqlPartyInfo = $partyModel->where($where)->find();
  80. if($sqlPartyInfo["status"] == 0){
  81. // 清楚对应的记录
  82. $redis->del($this->roomTypeArr[$room_type]."_".$sqlPartyInfo["id"]);
  83. // 删除派对记录
  84. \app\common\model\Party::where('id',$sqlPartyInfo["id"])->delete();
  85. $where["user_id"] = $user_id;
  86. $where["room_type"] = $room_type;
  87. $sqlPartyInfo = $partyModel->where($where)->find();
  88. }
  89. if(!$sqlPartyInfo) { // sql中不存在派对信息
  90. $partylimit = config("site.roomLimit");
  91. $partycount = $partyModel->where(['is_close'=>0])->count("id");
  92. if($partycount >= $partylimit && $partylimit != -1) {
  93. $this->error("房间数量已达上线,请联系客服!");
  94. }
  95. $party_name = $this->auth->u_id."的房间"; // 派对名称
  96. $party_logo = "/assets/api/party_logo.png"; // 派对logo
  97. $party_type = isset($anchorInfo['party_type_id']) ? $anchorInfo['party_type_id'] : 0; // 派对类型(情感互动,心动点单 等)
  98. $party_notice = "请编辑房间公告"; // 派对公告
  99. $party_notice_detail = "请编辑房间公告内容!"; // 派对公告详情
  100. if (!$party_name || !$party_logo || !$party_notice) {
  101. $this->error(__('Invalid parameters'));
  102. }
  103. $party_ids = $partyModel->column("party_id");
  104. // 创建派对ID (临时ID四位,派对数不超过8999)
  105. $party_id = $this->auth->getUinqueId(4,$party_ids);
  106. if($party_id > 9999) {
  107. $this->error("派对超限,请联系客服");
  108. }
  109. if ($room_type == 1) {//家族房间获取家族信息
  110. $guildWhere['user_id'] = $user_id;
  111. $guildWhere['status'] = 1;
  112. $guild = model('Guild')->where($guildWhere)->order('id desc')->find();
  113. if (!empty($guild)) {
  114. $party_name = $guild['name'].'的房间';
  115. $party_logo = $guild['image'];
  116. $party_notice = $guild['desc'];
  117. $party_notice_detail = $guild['notice'];
  118. }
  119. $party_type = 7;
  120. }
  121. $data = [];
  122. $data["user_id"] = $this->auth->id;
  123. $data["room_type"] = $room_type;
  124. $data["party_id"] = $party_id;
  125. $data["party_hot"] = 0;
  126. $data["party_name"] = $party_name;
  127. $data["party_logo"] = $party_logo;
  128. $data["party_type"] = $party_type;
  129. $data["party_notice"] = $party_notice;
  130. $data["party_notice_detail"] = $party_notice_detail;
  131. $data["is_online"] = 1;
  132. $data["status"] = 0;//前端创建成功后会调用接口修改房间状态
  133. $data["is_recommend"] = 0;
  134. $data["createtime"] = time();
  135. $id = $partyModel->insertGetId($data);
  136. if(!$id) {
  137. $this->error("派对创建失败,请稍后重试!");
  138. }
  139. $data["id"] = $id;
  140. if($room_type == 2) {
  141. \app\common\model\User::update(["is_live"=>1],["id"=>$user_id]);
  142. }
  143. $partyInfo = $partyModel->where(["id"=>$id])->find();
  144. $partyInfo["is_new"] = 1;
  145. // 冠名
  146. $userInfo = [];
  147. if($partyInfo["naming"]) {
  148. $userInfo = \app\common\model\User::field("id,nickname,avatar")->where(["id"=>$partyInfo["naming"]])->find();
  149. }
  150. // 头像
  151. if($partyInfo["user_id"] > 0 && $room_type == 2) {
  152. $partyInfo["avatar"] = \app\common\model\User::where(["id"=>$partyInfo["user_id"]])->value("avatar");
  153. }
  154. // 派对类型
  155. $partyTypeName = "普通房";
  156. if($partyInfo["party_type"]) {
  157. $partyTypeName = \app\common\model\PartyType::where(["id"=>$partyInfo["party_type"]])->value("name");
  158. }
  159. $partyInfo["naming"] = $userInfo;
  160. $partyInfo["type_name"] = $partyTypeName;
  161. // 加入缓存排序
  162. $redis->zAdd($this->roomTypeArr[$room_type]."Rank", $partyInfo['party_hot'], $partyInfo["id"]);
  163. // 加入缓存
  164. $redis->set($this->roomTypeArr[$room_type]."_".$partyInfo["id"],json_encode($partyInfo));
  165. if($room_type != 2) {
  166. // 创建公会
  167. /*\app\common\model\Guild::createGuild($partyInfo["id"], $partyInfo["party_name"], $user_id);
  168. \app\common\model\User::update(["is_guild" => 3,'guild_id'], ["id" => $user_id]);*/
  169. //更新家族 party_id
  170. $guildWhere['user_id'] = $user_id;
  171. $guildWhere['status'] = 1;
  172. $guild = model('Guild')->where($guildWhere)->order('id desc')->find();
  173. if (!empty($guild)) {
  174. model('Guild')->where($guildWhere)->update(['party_id'=>$partyInfo['id']]);
  175. }
  176. }
  177. } else {
  178. if($sqlPartyInfo["is_close"] == 1) $this->error("该房间已被关闭!");
  179. if($sqlPartyInfo["status"] == 0){
  180. // 清楚对应的记录
  181. $redis->del($this->roomTypeArr[$room_type]."_".$sqlPartyInfo["id"]);
  182. // 删除派对记录
  183. \app\common\model\Party::where('id',$sqlPartyInfo["id"])->delete();
  184. $this->error("创建失败,请重试");//不清楚具体要做什么先注释
  185. }
  186. // if($sqlPartyInfo["status"] != 1) $this->error("该房间为预创建房间,请联系管理员正式开通!");
  187. // 如果是房主并且房间处于离线状态下激活
  188. if ($sqlPartyInfo['user_id'] != $user_id) {
  189. $this->error("当前直播已结束!");
  190. }
  191. $partyInfo = $sqlPartyInfo;
  192. $partyInfo["is_new"] = 0;
  193. }
  194. $this->success("获取成功!",$partyInfo);
  195. }
  196. /**
  197. * 更新房间状态为正常
  198. */
  199. public function savePartyStatus() {
  200. $party_id = $this->request->request('party_id'); // 派对ID
  201. $room_type = $this->request->request('room_type',1); // 房间类型:1=派对,2=直播
  202. if (!$party_id || !in_array($room_type,[1,2])) $this->error(__('Invalid parameters'));
  203. $user_id = $this->auth->id;
  204. $partyInfo = \app\common\model\Party::get($party_id);
  205. if($partyInfo->status < 0) $this->error("当前状态不支持变更!");
  206. if($partyInfo->user_id !== $user_id) $this->error("当前账号异常,非工会长禁止操作!");
  207. $partyInfo->status = 1;
  208. $res = $partyInfo->save();
  209. if($res !== false) {
  210. // 更新redis 加入缓存排序
  211. $redis = new Redis();
  212. $redisconfig = config("redis");
  213. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  214. if ($redisconfig['redis_pwd']) {
  215. $redis->auth($redisconfig['redis_pwd']);
  216. }
  217. if($redisconfig['redis_selectdb'] > 0){
  218. $redis->select($redisconfig['redis_selectdb']);
  219. }
  220. // 更新redis 加入缓存
  221. $redPartyInfo = $redis->get($this->roomTypeArr[$room_type]."_".$partyInfo["id"]);
  222. if($redPartyInfo) {
  223. $redPartyInfo = json_decode($redPartyInfo,true);
  224. $redPartyInfo["status"] = 1;
  225. $redis->set($this->roomTypeArr[$room_type]."_".$partyInfo["id"],json_encode($redPartyInfo));
  226. }
  227. $this->success("更新公会状态成功!");
  228. } else {
  229. $this->error("网络错误,请稍后重试!");
  230. }
  231. }
  232. /**
  233. * 删除派对(群解散)
  234. */
  235. public function closeParty() {
  236. $party_id = $this->request->request('party_id'); // 派对ID
  237. $room_type = $this->request->request('room_type',1); // 房间类型:1=派对,2=直播
  238. if (!$party_id || !in_array($room_type,[1,2])) $this->error(__('Invalid parameters'));
  239. $partyInfo = \app\common\model\Party::where(["id"=>$party_id])->find();
  240. if(!$partyInfo) $this->error(__('派对不存在!'));
  241. $res = $partyInfo->delete();
  242. if($res !== false) {
  243. // redis 删除
  244. $redis = new Redis();
  245. $redisconfig = config("redis");
  246. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  247. if ($redisconfig['redis_pwd']) {
  248. $redis->auth($redisconfig['redis_pwd']);
  249. }
  250. if($redisconfig['redis_selectdb'] > 0){
  251. $redis->select($redisconfig['redis_selectdb']);
  252. }
  253. $redis->zRem($this->roomTypeArr[$room_type]."Rank",$party_id);
  254. $redis->del($this->roomTypeArr[$room_type]."_".$party_id);
  255. $this->success("删除成功!");
  256. } else {
  257. $this->error("删除失败!");
  258. }
  259. }
  260. /**
  261. * 获取派对列表排序
  262. */
  263. public function getPartyRankList() {
  264. $thispage = $this->request->request('thispage',1,"intval"); // 当前页数
  265. $pagenum = $this->request->request('pagenum',10,"intval"); // 每页显示条数0=不做分页
  266. $type_id = $this->request->request('type_id'); // 派对类型
  267. $room_type = $this->request->request('room_type',1); // 房间类型:1=派对,2=直播
  268. $is_recommend = $this->request->request('is_recommend'); // 推荐0=否1=是
  269. $all = $this->request->request('all'); // 全部分类0=否1=是
  270. $index = $this->request->request('index',0); // 全部分类0=否1=是
  271. $start = ($thispage-1)*$pagenum;
  272. $end = $start+($pagenum-1);
  273. // 获取排序
  274. $redis = new Redis();
  275. $redisconfig = config("redis");
  276. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  277. if ($redisconfig['redis_pwd']) {
  278. $redis->auth($redisconfig['redis_pwd']);
  279. }
  280. if($redisconfig['redis_selectdb'] > 0){
  281. $redis->select($redisconfig['redis_selectdb']);
  282. }
  283. $redisPartyRankList = $redis->zRevRange($this->roomTypeArr[$room_type]."Rank",0,-1,true);
  284. $partyModel = new \app\common\model\Party();
  285. if(!$redisPartyRankList) {
  286. $userModel = new \app\common\model\User();
  287. // 直接从数据库获取所有数据
  288. $where = [];
  289. $where["a.status"] = 1;
  290. $where["a.is_online"] = 1;
  291. $where["a.room_type"] = $room_type;
  292. $sqlPartyList = $partyModel->alias("a")->field("a.*,b.name as type_name")
  293. ->join("hx_party_type b","a.party_type = b.id","left")->where($where)->select();
  294. $userList = $userModel->field("id,nickname,avatar")->where(["status"=>"normal"])->select();
  295. $userInfoArr = [];
  296. if($userList) foreach($userList as $k => $v) $userInfoArr[$v["id"]] = $v;
  297. if($sqlPartyList) {
  298. foreach($sqlPartyList as $k => $v) {
  299. // 加入缓存排序
  300. $redis->zAdd($this->roomTypeArr[$room_type]."Rank", $v['party_hot'], $v["id"]);
  301. // 设置冠名
  302. $sqlPartyList[$k]["naming"] = isset($userInfoArr[$v["naming"]])?$userInfoArr[$v["naming"]]:[];
  303. // 设置房主头像
  304. $sqlPartyList[$k]["avatar"] = isset($userInfoArr[$v["user_id"]])?$userInfoArr[$v["user_id"]]["avatar"]:[];
  305. // 加入缓存
  306. $redis->set($this->roomTypeArr[$room_type]."_".$v["id"],json_encode($v));
  307. }
  308. $redisPartyRankList = $redis->zRevRange($this->roomTypeArr[$room_type]."Rank",0,-1,true);
  309. }
  310. }
  311. if($redisPartyRankList) {
  312. $resultInfo = $partyModel->getPatyInfoByPartyId($redisPartyRankList,$this->roomTypeArr[$room_type],$type_id,$is_recommend,$all,$start,$end,$index);
  313. $this->success("获取成功!",$resultInfo);
  314. }else{
  315. $this->success("获取成功!",[]);
  316. }
  317. }
  318. /**
  319. * 获取派对列表排序
  320. */
  321. public function getPartyList() {
  322. try {
  323. $thispage = $this->request->request('thispage',1,"intval"); // 当前页数
  324. $pagenum = $this->request->request('pagenum',10,"intval"); // 每页显示条数0=不做分页
  325. $type_id = $this->request->request('type_id'); // 派对类型
  326. $is_recommend = $this->request->request('is_recommend'); // 推荐0=否1=是
  327. $all = $this->request->request('all'); // 全部分类0=否1=是
  328. $index = $this->request->request('index',0); // 全部分类0=否1=是
  329. $start = ($thispage-1)*$pagenum;
  330. $end = $start+($pagenum-1);
  331. // 获取排序
  332. $redis = new Redis();
  333. $redisconfig = config("redis");
  334. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  335. if ($redisconfig['redis_pwd']) {
  336. $redis->auth($redisconfig['redis_pwd']);
  337. }
  338. if($redisconfig['redis_selectdb'] > 0){
  339. $redis->select($redisconfig['redis_selectdb']);
  340. }
  341. $redisPartyRankList = $redis->zRevRange("partyRank",0,-1,true);
  342. $redisLiveRankList = $redis->zRevRange("liveRank",0,-1,true);
  343. $roomService = new RoomService();
  344. if(!$redisPartyRankList) {//party
  345. $roomParams = ['room_type' => 1];
  346. $roomPartyRes = $roomService->roomRedis($roomParams);
  347. $redisPartyRankList = $roomPartyRes['data'];
  348. }
  349. if(!$redisLiveRankList) {//live
  350. $roomParams = ['room_type' => 2];
  351. $roomLiveRes = $roomService->roomRedis($roomParams);
  352. $redisLiveRankList = $roomLiveRes['data'];
  353. }
  354. $redisRoomListIds = [];
  355. $partyIds = !empty($redisPartyRankList) ? array_keys($redisPartyRankList) : [];
  356. $liveIds = !empty($redisLiveRankList) ? array_keys($redisLiveRankList) : [];
  357. $redisRoomListIds = array_merge($redisRoomListIds,$partyIds,$liveIds);
  358. if(!empty($redisRoomListIds)) {
  359. $roomListParams = [
  360. 'ids' => $redisRoomListIds,
  361. 'type_id' => $type_id,
  362. 'is_recommend' => $is_recommend,
  363. 'all' => $all,
  364. 'start' => $start,
  365. 'end' => $end,
  366. 'index' => $index,
  367. ];
  368. $resultInfo = $roomService->getRoomList($roomListParams);
  369. if (!$resultInfo['status']) {
  370. throw new Exception($resultInfo['msg']);
  371. }
  372. }
  373. if (!isset($resultInfo['data'])) {
  374. $resultInfo['data'] = [];
  375. }
  376. $this->success("获取成功!",$resultInfo['data']);
  377. } catch (Exception $e) {;
  378. $this->error($e->getMessage());
  379. }
  380. }
  381. /**
  382. * 获取派对用户排序
  383. */
  384. public function getPartyUserRank() {
  385. $room_type = $this->request->request('room_type',1); // 房间类型
  386. $party_id = $this->request->request("party_id");// 派对ID
  387. if (!$party_id) $this->error(__('Invalid parameters'));
  388. $redis = new Redis();
  389. $redisconfig = config("redis");
  390. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  391. if ($redisconfig['redis_pwd']) {
  392. $redis->auth($redisconfig['redis_pwd']);
  393. }
  394. if($redisconfig['redis_selectdb'] > 0){
  395. $redis->select($redisconfig['redis_selectdb']);
  396. }
  397. $res = [];
  398. // 获取今天
  399. $day = date("Ymd");
  400. // 获取本周第一天
  401. $weekday = $this->firstOfWeek(date("Y-m-d H:i:s"));
  402. // 获取本月第一天
  403. $monthday = date("Ym01");
  404. $userModel = new \app\common\model\User();
  405. // 获取条数
  406. $num = 50;
  407. // 获取50条财富排行日记录
  408. $getday = $redis->zRevRange($this->roomTypeArr[$room_type]."_jewel_get_".$party_id.":".$day."d",0,$num-1,true);
  409. $res['getRankListDay'] = $userModel->rankList($getday);
  410. // 获取50条财富排行日记录
  411. $today = $redis->zRevRange($this->roomTypeArr[$room_type]."_jewel_to_".$party_id.":".$day."d",0,$num-1,true);
  412. $res['toRankListDay'] = $userModel->rankList($today);
  413. // 获取50条财富排行周记录
  414. $getweek = $redis->zRevRange($this->roomTypeArr[$room_type]."_jewel_get_".$party_id.":".$weekday."w",0,$num-1,true);
  415. $res['getRankListWeek'] = $userModel->rankList($getweek);
  416. // 获取50条贡献排行周记录
  417. $toweek = $redis->zRevRange($this->roomTypeArr[$room_type]."_jewel_to_".$party_id.":".$weekday."w",0,$num-1,true);
  418. $res['toRankListWeek'] = $userModel->rankList($toweek);
  419. // 获取50条财富排行月记录
  420. $toweek = $redis->zRevRange($this->roomTypeArr[$room_type]."_jewel_get_".$party_id.":".$monthday."m",0,$num-1,true);
  421. $res['getRankListMonth'] = $userModel->rankList($toweek);
  422. // 获取50条贡献排行周记录
  423. $toweek = $redis->zRevRange($this->roomTypeArr[$room_type]."_jewel_to_".$party_id.":".$monthday."m",0,$num-1,true);
  424. $res['toRankListMonth'] = $userModel->rankList($toweek);
  425. return $this->success("获取成功!",$res);
  426. }
  427. /**
  428. * 派对热度更新(已废弃)
  429. */
  430. public function changeUserPartyhot() {
  431. $party_id = $this->request->request('party_id',0,"intval"); // 派对ID
  432. $room_type = $this->request->request('room_type',1); // 房间类型
  433. $party_hot = $this->request->request('party_hot'); // 房间热度(正数表示提高的热度值,负数表示降低的热度值)
  434. if (!$party_id || !$party_hot) {
  435. $this->error(__('Invalid parameters'));
  436. }
  437. $redis = new Redis();
  438. $redisconfig = config("redis");
  439. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  440. if ($redisconfig['redis_pwd']) {
  441. $redis->auth($redisconfig['redis_pwd']);
  442. }
  443. if($redisconfig['redis_selectdb'] > 0){
  444. $redis->select($redisconfig['redis_selectdb']);
  445. }
  446. // 更新热度
  447. $redis->zIncrBy($this->roomTypeArr[$room_type]."Rank", $party_hot, $party_id);
  448. return $this->success("更新成功!");
  449. }
  450. /**
  451. * 更新主持人和麦位前四位至首页房间排行
  452. */
  453. public function addUserPositionToParty() {
  454. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  455. $user_id = $this->request->request('user_id',0,"intval"); // 用户ID
  456. $upOrdown = $this->request->request('upordown'); // 上下麦:1=上麦-1=下麦
  457. $room_type = $this->request->request('room_type',1); // 房间类型
  458. $avatar = $this->request->request('avatar'); // 用户头像 (upOrdown参数为-1时可以不传)
  459. $position = $this->request->request('position'); // 麦位置:0=支持人,1=1号麦,2=2号麦,3=3号麦,4=4号麦
  460. if (!$party_id || !$user_id || !in_array($position,[0,1,2,3,4,5,6,7,8]) || !in_array($upOrdown,[1,-1])) {
  461. $this->error(__('Invalid parameters'));
  462. }
  463. if($upOrdown == 1) {
  464. // 先完成所有麦上记录
  465. \app\common\model\UserOnsiteTime::update(["status"=>2],["user_id"=>$user_id]);
  466. // 保存上麦记录
  467. $data = [];
  468. $data["user_id"] = $user_id;
  469. $data["party_id"] = $party_id;
  470. $data["onsite_time"] = time();
  471. \app\common\model\UserOnsiteTime::insert($data);
  472. }
  473. if($upOrdown == -1) {
  474. // 更新下麦时间
  475. $update = [];
  476. $update["offsite_time"] = time();
  477. $update["status"] = 2;
  478. \app\common\model\UserOnsiteTime::update($update,["user_id"=>$user_id,"status"=>1]);
  479. }
  480. if(in_array($position,[5,6,7,8])) return $this->success("设置成功!");
  481. $redis = new Redis();
  482. $redisconfig = config("redis");
  483. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  484. if ($redisconfig['redis_pwd']) {
  485. $redis->auth($redisconfig['redis_pwd']);
  486. }
  487. if($redisconfig['redis_selectdb'] > 0){
  488. $redis->select($redisconfig['redis_selectdb']);
  489. }
  490. $redisData = $redis->get($this->roomTypeArr[$room_type]."_".$party_id);
  491. if($redisData) {
  492. $partyInfo = json_decode($redisData,true);
  493. if($upOrdown == 1) {
  494. // 删掉已有头像,防止重复
  495. $partyuser = isset($partyInfo["party_user"])?$partyInfo["party_user"]:"";
  496. if(is_array($partyuser)) foreach($partyuser as $k => $v) if($v === $avatar) unset($partyInfo["party_user"][$k]);
  497. $partyInfo["party_user"][$position] = $avatar;
  498. } else {
  499. if(isset($partyInfo["party_user"])) unset($partyInfo["party_user"][$position]);
  500. }
  501. // sort($partyInfo["party_user"]);
  502. $redis->set($this->roomTypeArr[$room_type]."_".$party_id,json_encode($partyInfo));
  503. }
  504. return $this->success("设置成功!");
  505. }
  506. /**
  507. * 获取派对在线人数列表
  508. */
  509. public function getOnlieList() {
  510. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID 逻辑ID
  511. $page = $this->request->request('page',1); // 分页
  512. $pageNum = $this->request->request('pageNum',10); // 分页
  513. // 分页搜索构建
  514. $pageStart = ($page-1)*$pageNum;
  515. if (!$party_id) {
  516. $this->error(__('Invalid parameters'));
  517. }
  518. $redis = new Redis();
  519. $redisconfig = config("redis");
  520. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  521. if ($redisconfig['redis_pwd']) {
  522. $redis->auth($redisconfig['redis_pwd']);
  523. }
  524. if($redisconfig['redis_selectdb'] > 0){
  525. $redis->select($redisconfig['redis_selectdb']);
  526. }
  527. $res = $redis->hGetAll("online_".$party_id);
  528. $user_ids = [];$userList = [];
  529. if($res) $user_ids = array_values($res);
  530. // 获取用户列表信息
  531. if($user_ids){
  532. $userList = \app\common\model\User::field("id,avatar,nickname,level,gender")->where(["id"=>["in",$user_ids],'is_stealth'=>0])->limit($pageStart,$pageNum)->select();
  533. }
  534. $this->success("获取成功!",$userList);
  535. }
  536. /** 连续进房提示
  537. * @param $user_id
  538. * @param $party_id
  539. * @param $redis
  540. * @return int
  541. */
  542. private function getUserJoinPartyDays($user_id, $party_id,$redis)
  543. {
  544. $days = 1;
  545. $joinPartyDays = $redis->hGet("joinParty_days",$user_id."-".$party_id);
  546. if ($joinPartyDays){
  547. $joinPartyDaysArr = explode('-',$joinPartyDays);
  548. $oldTime = (int)$joinPartyDaysArr[0];
  549. $todayStartTime = strtotime(date('Y-m-d'));//今天0点
  550. $yesterdayStartTime = strtotime(date("Y-m-d",strtotime("-1 day")));//昨天开始时间戳
  551. $todayEndTime = $todayStartTime+24 * 60 * 60-1;//今天结束时间戳
  552. //昨天登录过,+1
  553. if ($yesterdayStartTime <= $oldTime && $oldTime < $todayStartTime){
  554. $days = (int)$joinPartyDaysArr[1];
  555. $days++;
  556. $redis->hSet("joinParty_days", $user_id . "-" . $party_id, time().'-'. $days);
  557. }elseif($todayStartTime <= $oldTime && $oldTime <= $todayEndTime){
  558. //今天登录过 days
  559. $days = (int)$joinPartyDaysArr[1];
  560. } else {
  561. $redis->hSet("joinParty_days", $user_id . "-" . $party_id, time().'-1');
  562. }
  563. }else{
  564. $redis->hSet("joinParty_days", $user_id . "-" . $party_id, time().'-1');
  565. }
  566. return $days;
  567. }
  568. /**
  569. * 加入派对
  570. */
  571. public function joinParty() {
  572. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID 逻辑ID
  573. $room_type = $this->request->request("room_type",1);//
  574. $party_pass = $this->request->request("party_pass");//
  575. if (!$party_id || !in_array($room_type,[1,2])) {
  576. $this->error(__('Invalid parameters'));
  577. }
  578. $user_id = $this->auth->id;
  579. $redis = new Redis();
  580. $redisconfig = config("redis");
  581. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  582. if ($redisconfig['redis_pwd']) {
  583. $redis->auth($redisconfig['redis_pwd']);
  584. }
  585. if($redisconfig['redis_selectdb'] > 0){
  586. $redis->select($redisconfig['redis_selectdb']);
  587. }
  588. $redis->zAdd("party_user_".$party_id,$this->auth->u_id,$user_id);
  589. $redis->hSet("online_".$party_id,$user_id,$user_id); //新增的
  590. // 判断当前用户是否存在在直播间通过切换过来的
  591. $livingUserPartyId = $redis->hGet("livingUser", $user_id);
  592. if ($livingUserPartyId) {
  593. if($livingUserPartyId != $party_id){
  594. // 扣除房间在线人数
  595. $redis->HDel("online_" . $livingUserPartyId, $user_id);
  596. //首页用户头像
  597. $redis->zRem("party_user_".$livingUserPartyId, $user_id);
  598. // 扣除在线用户在房间情况
  599. $redis->hDel("livingUser", $user_id);
  600. }
  601. }
  602. // 记录在线用户在房间情况
  603. $redis->hSet("livingUser", $user_id, $party_id);
  604. // 判断当前用户是否被该房间设置限制 //项目:1=房管,2=禁言,3=拉黑,4=踢出
  605. $lsetList = [];
  606. for($i=1;$i<=4;$i++) {
  607. $hgetlist = $redis->hGet("party_manage_".$party_id,$user_id."-".$i);
  608. $hgetlist = unserialize($hgetlist);
  609. $restime = time() - intval($hgetlist["createtime"]);
  610. // 房管
  611. if($hgetlist && $i == 1) $lsetList["manage_restime"] = "";
  612. // 禁言
  613. if($hgetlist && $i == 2 && $restime < $hgetlist["time"]) $lsetList["manage_notalk"] = $restime;
  614. // 拉黑,管理员不能被拉黑
  615. if($hgetlist && $i == 3 && $restime < $hgetlist["time"] && $this->auth->is_manager == 0) {
  616. $restime = date("Y-m-d H:i:s",($hgetlist["time"]+$hgetlist["createtime"]));
  617. $this->error(__('您已被该房间拉黑,解除时间:'.$restime));
  618. break;
  619. }
  620. // 踢出,管理员不能被踢出
  621. if($hgetlist && $i == 4 && $restime < $hgetlist["time"] && $this->auth->is_manager == 0) {
  622. $restime = date("Y-m-d H:i:s",($hgetlist["time"]+$hgetlist["createtime"]));
  623. $this->error(__('您已被该房间踢出,解除时间:'.$restime));
  624. break;
  625. }
  626. }
  627. // 判断派对密码
  628. $partyInfo = $redis->get($this->roomTypeArr[$room_type]."_".$party_id);
  629. if($partyInfo) {
  630. $partyInfo = json_decode($partyInfo,true);
  631. if($partyInfo["is_close"] == 1) $this->error("该房间已被关闭!");
  632. //if($partyInfo["status"] != 1) $this->error("该房间为预创建房间,请联系管理员正式开通!");
  633. if(isset($partyInfo["party_pass"]) && $partyInfo["party_pass"] && $partyInfo["user_id"] != $user_id) {
  634. if(($party_pass != $partyInfo["party_pass"] || strlen($party_pass) != 4) && $this->auth->is_manager == 0) {
  635. $this->error("派对密码不正确!");
  636. }
  637. }
  638. // 公会管理员和工会长激活派对厅
  639. $guildInfo = \app\common\model\Guild::where(['user_id' => $partyInfo['user_id'], 'status' => 1])->find();
  640. if ($guildInfo) {
  641. // 获取公会管理员
  642. $guildMemberInfo = \app\common\model\GuildMember::where(["user_id" => $user_id, "guild_id" => $guildInfo['id'], 'status' => 1])->find();
  643. if ($guildMemberInfo && $guildMemberInfo['role'] == 0) {
  644. //$this->error("当前直播已结束!");//这种情况理论上不存在
  645. }
  646. }
  647. // // 如果是房主自己进入房间,则更新用户 为在线状态
  648. // if ($partyInfo["user_id"] == $user_id) {
  649. // if ($room_type == 2)
  650. // \app\common\model\User::update(["is_live" => 1], ["id" => $partyInfo["user_id"]]);
  651. // }
  652. } else {
  653. $this->error("派对信息获取失败!");
  654. }
  655. // 获取用户魅力值
  656. $users = $redis->zRange("hourCharm_".$party_id,0,-1,true);
  657. $u = [];
  658. if($users) {
  659. foreach($users as $k => $v) $u[] = [
  660. "user_id"=>$k,
  661. "charm"=>$this->changeW($v)
  662. ];
  663. }
  664. $lsetList["userCharm"] = $u;
  665. // 获取用户排行榜前三名头像
  666. $heads = $redis->hGet("user_jewel_top3",$party_id);
  667. $lsetList["userJewelTop3"] = $heads?json_decode($heads,true):[];
  668. // 判断当前用户是否收藏了此房间
  669. $cellection = $redis->hGet("room_cellection",$user_id."-".$party_id);
  670. $lsetList["is_cellection"] = $cellection?1:0;
  671. if(isset($partyInfo["type_name"]) && $partyInfo["type_name"]) {
  672. // $partyInfo["type_name"] = $partyInfo["type_name"];
  673. } else {
  674. $partyInfo["type_name"] = "普通房";
  675. }
  676. $partyInfo["party_hot"] = $this->changeW($partyInfo["party_hot"]);
  677. $partyInfo['is_new'] = $partyInfo["status"] == 0 ? 1 : 0;
  678. $partyInfo['join_days'] = $this->getUserJoinPartyDays($user_id,$party_id,$redis);
  679. $lsetList["partyInfo"] = $partyInfo;
  680. return $this->success("加入成功!",$lsetList);
  681. }
  682. /**
  683. * 判断是否被禁言
  684. */
  685. public function isNotalk() {
  686. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID 逻辑ID
  687. $user_id = $this->request->request('user_id',0,"intval"); // 用户ID 逻辑ID
  688. if (!$user_id || !$party_id) {
  689. $this->error(__('Invalid parameters'));
  690. }
  691. $redis = new Redis();
  692. $redisconfig = config("redis");
  693. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  694. if ($redisconfig['redis_pwd']) {
  695. $redis->auth($redisconfig['redis_pwd']);
  696. }
  697. if($redisconfig['redis_selectdb'] > 0){
  698. $redis->select($redisconfig['redis_selectdb']);
  699. }
  700. // 判断当前用户是否被该房间设置限制 //项目:1=房管,2=禁言,3=拉黑,4=踢出
  701. $lsetList = [];
  702. $lsetList["is_notalk"] = 0;
  703. $lsetList["notalk_time"] = 0;
  704. $hgetlist = $redis->hGet("party_manage_".$party_id,$user_id."-2");
  705. $hgetlist = unserialize($hgetlist);
  706. $restime = time() - intval($hgetlist["createtime"]);
  707. // 禁言
  708. if($hgetlist && $restime < $hgetlist["time"]) {
  709. $lsetList["is_notalk"] = 1;
  710. $lsetList["notalk_time"] = $restime;
  711. }
  712. return $this->success("获取成功!",$lsetList);
  713. }
  714. /**
  715. * 退出派对
  716. */
  717. public function outParty() {
  718. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  719. if (!$party_id) {
  720. $this->error(__('Invalid parameters'));
  721. }
  722. $user_u_id = $this->auth->u_id;
  723. $userId = $this->auth->id;
  724. $redis = new Redis();
  725. $redisconfig = config("redis");
  726. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  727. if ($redisconfig['redis_pwd']) {
  728. $redis->auth($redisconfig['redis_pwd']);
  729. }
  730. if($redisconfig['redis_selectdb'] > 0){
  731. $redis->select($redisconfig['redis_selectdb']);
  732. }
  733. $redis->zRem("party_user_".$party_id,$userId);
  734. // 处理online_party_id
  735. //$redis->connect($redisconfig["host"], $redisconfig["port"]);
  736. $redis->HDel("online_" . $party_id, $this->auth->id);
  737. // 扣除在线用户在房间情况
  738. $redis->hDel("livingUser", $this->auth->id);
  739. // 更新房间在线状态
  740. $partyInfo = $redis->get("party_" . $party_id);
  741. if ($partyInfo) {
  742. $partyInfo = json_decode($partyInfo, true);
  743. $memCount = count($redis->hGetAll("online_" . $party_id));
  744. if ($memCount <= 0) {
  745. $partyInfo["is_online"] = 0;
  746. $redis->set("party_" . $party_id, json_encode($partyInfo));
  747. \app\common\model\Party::update(["is_online" => 0], ["id" => $party_id]);
  748. }
  749. }
  750. $liveInfo = $redis->get("live_" . $party_id);
  751. if ($liveInfo) {
  752. $liveInfo = json_decode($liveInfo, true);
  753. $memCount = count($redis->hGetAll("online_" . $party_id));
  754. if ($memCount <= 0) {
  755. $liveInfo["is_online"] = 0;
  756. $redis->set("live_" . $party_id, json_encode($liveInfo));
  757. \app\common\model\Party::update(["is_online" => 0], ["id" => $party_id]);
  758. }
  759. }
  760. return $this->success("退出成功!",[]);
  761. }
  762. /**
  763. * 派对内搜索用户
  764. */
  765. public function searchUserParty() {
  766. $u_id = $this->request->request('u_id',0,"intval"); // 用户u_id
  767. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  768. // $redis = new Redis();
  769. // $redisconfig = config("redis");
  770. // $redis->connect($redisconfig["host"], $redisconfig["port"]);
  771. /*if ($redisconfig['redis_pwd']) {
  772. $redis->auth($redisconfig['redis_pwd']);
  773. }
  774. if($redisconfig['redis_selectdb'] > 0){
  775. $redis->select($redisconfig['redis_selectdb']);
  776. }*/
  777. // $userids = $redis->zRange("party_user_".$party_id,0,-1,true);
  778. // $useridArr = [];
  779. // if($userids)foreach($userids as $k => $v) $useridArr[$v] = $k; // 因为array_slip 不能交换数字啊
  780. // $userid = isset($useridArr[$u_id])?$useridArr[$u_id]:0;
  781. $userModel = new \app\common\model\User();
  782. $where = [];
  783. $where["u_id"] = $u_id;
  784. $userInfo = $userModel->field("id,u_id,avatar,nickname,level,gender")->where($where)->select();
  785. return $this->success("查询成功!",$userInfo);
  786. }
  787. /**
  788. * 设置冠名
  789. */
  790. public function setNaming() {
  791. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  792. $user_id = $this->request->request('user_id',0,"intval"); // 用户ID
  793. $type = $this->request->request('type',1); // 1:设置 0:取消设置
  794. if (!$party_id || !$user_id || ($type != 1 && $type != 0)) {
  795. $this->error(__('Invalid parameters'));
  796. }
  797. $redis = new Redis();
  798. $redisconfig = config("redis");
  799. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  800. if ($redisconfig['redis_pwd']) {
  801. $redis->auth($redisconfig['redis_pwd']);
  802. }
  803. if($redisconfig['redis_selectdb'] > 0){
  804. $redis->select($redisconfig['redis_selectdb']);
  805. }
  806. $partyModel = new \app\common\model\Party();
  807. $data = [];
  808. $where = [];
  809. $where["id"] = $party_id;
  810. $partyInfo = $partyModel->where(["id"=>$party_id])->find();
  811. $getredisPartyInfo = $redis->get($this->roomTypeArr[$partyInfo->room_type].'_'.$party_id);
  812. $redisPartyInfo = json_decode($getredisPartyInfo,true);
  813. if($type == 1) {
  814. $data["naming"] = $user_id;
  815. // 冠名
  816. $userInfo = \app\common\model\User::field("id,nickname,avatar")->where(["id"=>$user_id])->find($user_id);
  817. $redisPartyInfo["naming"] = $userInfo;
  818. } else {
  819. $data["naming"] = 0;
  820. $redisPartyInfo["naming"] = [];
  821. }
  822. $redis->set($this->roomTypeArr[$partyInfo->room_type].'_'.$party_id,json_encode($redisPartyInfo));
  823. $res = $partyModel->update($data,$where);
  824. if($res !== false) {
  825. $this->success("操作成功!");
  826. } else {
  827. $this->error("网络错误,请稍后重试!");
  828. }
  829. }
  830. /**
  831. * 派对收藏
  832. */
  833. public function cellectionParty() {
  834. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  835. if (!$party_id) {
  836. $this->error(__('Invalid parameters'));
  837. }
  838. $user_id = $this->auth->id;
  839. $redis = new Redis();
  840. $redisconfig = config("redis");
  841. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  842. if ($redisconfig['redis_pwd']) {
  843. $redis->auth($redisconfig['redis_pwd']);
  844. }
  845. if($redisconfig['redis_selectdb'] > 0){
  846. $redis->select($redisconfig['redis_selectdb']);
  847. }
  848. $partycellectionModel = new \app\common\model\PartyCellection();
  849. // 添加记录
  850. $data = [];
  851. $data["user_id"] = $user_id;
  852. $data["party_id"] = $party_id;
  853. if($partycellectionModel->where($data)->find()) {
  854. $res = $partycellectionModel->where($data)->delete();
  855. $redis->hDel("room_cellection",$user_id."-".$party_id);
  856. return $this->success("取消收藏成功!",$res);
  857. }
  858. $data["createtime"] = time();
  859. $res = $partycellectionModel->insert($data);
  860. $redis->hSet("room_cellection",$user_id."-".$party_id,1);
  861. return $this->success("收藏成功!",$res);
  862. }
  863. /**
  864. * 派对收藏列表
  865. */
  866. public function cellectionPartyList() {
  867. $page = $this->request->request('page',1); // 分页
  868. $pageNum = $this->request->request('pageNum',10); // 分页
  869. // 分页搜索构建
  870. $pageStart = ($page-1)*$pageNum;
  871. $partycellectionModel = new \app\common\model\PartyCellection();
  872. $userModel = new \app\common\model\User();
  873. $where = [];
  874. $where["a.user_id"] = $this->auth->id;
  875. $where["r.room_type"] = 1;
  876. $list = $partycellectionModel->alias("a")
  877. ->field("a.party_id,r.party_logo,r.party_hot,r.party_id as r_id,r.party_name,t.id as party_type_id,t.name as party_type")
  878. ->where($where)
  879. ->join("hx_party r","a.party_id = r.id")
  880. ->join("hx_party_type t","t.id = r.party_type","left")
  881. ->limit($pageStart,$pageNum)
  882. ->select();
  883. if($list) {
  884. // $redis = new Redis();
  885. // $redisconfig = config("redis");
  886. // $redis->connect($redisconfig["host"], $redisconfig["port"]);
  887. /*if ($redisconfig['redis_pwd']) {
  888. $redis->auth($redisconfig['redis_pwd']);
  889. }
  890. if($redisconfig['redis_selectdb'] > 0){
  891. $redis->select($redisconfig['redis_selectdb']);
  892. }*/
  893. // // 获取本周第一天
  894. // $weekday = $this->firstOfWeek(date("Y-m-d H:i:s"));
  895. // // 获取redis 中 用户排行榜前五名
  896. // foreach($list as $k => $v) {
  897. // $getweek = $redis->zRevRange("party_jewel_get_".$v["r_id"].":".$weekday,0,4,true);
  898. // $userlist = $userModel->rankList($getweek);
  899. // if($userlist) {
  900. // $users = [];
  901. // foreach($userlist as $m => $n) {
  902. // $users[] = $n["avatar"];
  903. // }
  904. // $list[$k]["users"] = $users;
  905. // } else {
  906. // $list[$k]["users"] = [];
  907. // }
  908. //
  909. // $mod = isset($v["party_type_id"])?intval($v["party_type_id"])%5:1;
  910. // $list[$k]["party_type_color"] = $mod == 0?5:$mod;
  911. // }
  912. $users = [];
  913. foreach($list as $k => $v) {
  914. $users[$v["party_id"]] = $v["party_hot"];
  915. }
  916. $partyModel = new \app\common\model\Party();
  917. $resultInfo = $partyModel->getPatyInfoByPartyId($users,"party",0,0,1,0,20,0);
  918. $this->success("获取成功!",$resultInfo);
  919. }
  920. return $this->success("获取成功!",$list);
  921. }
  922. /**
  923. * 获取派对信息
  924. */
  925. public function getPartyInfo() {
  926. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  927. if (!$party_id) {
  928. $this->error(__('Invalid parameters'));
  929. }
  930. $user_id = $this->auth->id;
  931. $partyModel = new \app\common\model\Party();
  932. $partycellectionModel = new \app\common\model\PartyCellection();
  933. $userModel = new \app\common\model\User();
  934. // 获取主体信息
  935. $where = [];
  936. $where["a.id"] = $party_id;
  937. $partyInfo = $partyModel->alias("a")
  938. ->field("a.id,a.user_id,a.party_id,a.party_name,a.party_hot,a.party_logo,rt.id as party_type,rt.name as type_name,a.party_notice,a.party_notice_detail")
  939. ->join("hx_party_type rt","rt.id = a.party_type", "left")
  940. ->where($where)
  941. ->find();
  942. if($partyInfo) {
  943. $mod = isset($partyInfo["party_type"])?intval($partyInfo["party_type"])%5:1;
  944. $partyInfo["party_type_color"] = $mod == 0?5:$mod;
  945. if(isset($partyInfo["type_name"]) && $partyInfo["type_name"]) {
  946. // $partyInfo["type_name"] = $partyInfo["type_name"];
  947. } else {
  948. $partyInfo["type_name"] = "普通房";
  949. }
  950. // 获取是否被当前用户收藏
  951. $partyInfo["is_sellection"] = 0;
  952. $where = [];
  953. $where["user_id"] = $user_id;
  954. $where["party_id"] = $party_id;
  955. if($partycellectionModel->where($where)->find()) {
  956. $partyInfo["is_sellection"] = 1;
  957. }
  958. // 获取房主信息
  959. $where = [];
  960. $where["id"] = $partyInfo["user_id"];
  961. $userInfo = $userModel->field("avatar,nickname")->where($where)->find();
  962. // 获取技能信息
  963. $skillList = Model("ViewUserSkill")->getSkillInfo($partyInfo["user_id"]);
  964. $userInfo["skill"] = implode("/",$skillList);
  965. $partyInfo["userInfo"] = $userInfo;
  966. $partyInfo["party_hot"] = $this->changeW($partyInfo["party_hot"]);
  967. }
  968. $this->success("获取成功!",$partyInfo);
  969. }
  970. /**
  971. * 派对设置
  972. */
  973. public function setParty() {
  974. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  975. $party_name = $this->request->request('party_name'); // 派对名称
  976. $party_logo = $this->request->request('party_logo'); // 派对logo/封面
  977. $party_pass = $this->request->request('party_pass'); // 派对密码
  978. $party_type = $this->request->request('party_type'); // 使用场景
  979. $is_screen = $this->request->request('is_screen'); // 是否关闭公屏:1=是,0=否
  980. $on_model = $this->request->request('on_model'); // 上麦模式:1=自由模式,2=麦序模式
  981. $room_type = $this->request->request('room_type',1); // 房间类型:1=派对,2=直播
  982. $background = $this->request->request('background'); // 派对背景
  983. if (!$party_id || (!$party_name && !$party_logo && !$party_pass && !$party_type && !$is_screen && !$on_model && !$background)) {
  984. $this->error(__('Invalid parameters'));
  985. }
  986. if($party_pass && strlen($party_pass) != 4) {
  987. $this->error("房间密码必须为四位!");
  988. }
  989. $partyModel = new \app\common\model\Party();
  990. $data = [];
  991. $party_name && $data["party_name"] = $party_name;
  992. $party_logo && $data["party_logo"] = $party_logo;
  993. $data["party_pass"] = $party_pass;
  994. $party_type && $data["party_type"] = $party_type;
  995. $is_screen && $data["is_screen"] = $is_screen;
  996. $on_model && $data["on_model"] = $on_model;
  997. $background && $data["background"] = $background;
  998. $where = [];
  999. $where["id"] = $party_id;
  1000. $res = $partyModel->update($data,$where);
  1001. if($res) {
  1002. // 获取派对类型
  1003. if($party_type) $data["type_name"] = \app\common\model\PartyType::where(["id"=>$party_type])->value("name");
  1004. // 存redis 房间信息
  1005. $redis = new Redis();
  1006. $redisconfig = config("redis");
  1007. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1008. if ($redisconfig['redis_pwd']) {
  1009. $redis->auth($redisconfig['redis_pwd']);
  1010. }
  1011. if($redisconfig['redis_selectdb'] > 0){
  1012. $redis->select($redisconfig['redis_selectdb']);
  1013. }
  1014. $partyInfo = $redis->get($this->roomTypeArr[$room_type]."_".$party_id);
  1015. if($partyInfo) {
  1016. $partyInfo = json_decode($partyInfo,true);
  1017. $partyInfo = array_replace($partyInfo,$data);
  1018. $redis->set($this->roomTypeArr[$room_type]."_".$party_id,json_encode($partyInfo));
  1019. }
  1020. $this->success("房间设置成功!",$data);
  1021. } else {
  1022. $this->error("网络错误,请稍后重试!");
  1023. }
  1024. }
  1025. /**
  1026. * 获取派对背景
  1027. */
  1028. public function getDefaultBackground() {
  1029. $room_type = $this->request->request('room_type',1); // 房间类型
  1030. if (!in_array($room_type,[1,2])) {
  1031. $this->error(__('Invalid parameters'));
  1032. }
  1033. $this->success("获取成功!",\app\common\model\PartyBackground::where(["room_type"=>$room_type])->select());
  1034. }
  1035. //腾讯im设置管理员
  1036. private function setGroupAdmin($user_id,$party_id,$status)
  1037. {
  1038. $tenIm = new Tenim();
  1039. return $tenIm->setUpIMAdmin($user_id, $party_id,$status);
  1040. }
  1041. /**
  1042. * 派对管理设置
  1043. */
  1044. public function partyManageSet() {
  1045. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  1046. $user_id = $this->request->request('user_id',0,"intval"); // 用户ID
  1047. $item = $this->request->request('item'); // 项目:1=房管,2=禁言,3=拉黑,4=踢出
  1048. $time = $this->request->request('time'); // 限制时间(单位:秒):0=永久
  1049. if (!$party_id || !$user_id || !in_array($item,[1,2,3,4])) {
  1050. $this->error(__('Invalid parameters'));
  1051. }
  1052. if($item>1 && $time<=0) {
  1053. $this->error(__('时间设置有误'));
  1054. }
  1055. $partyUserId = \app\common\model\Party::where('id', $party_id)->value('user_id');
  1056. if ($partyUserId == $user_id && in_array($item, [2, 3, 4])) {
  1057. $this->error("您当前无权限操作!");
  1058. }
  1059. // 获取用户信息
  1060. $userInfo = \app\common\model\User::field("noble,avatar,nickname,gender,level")->where(["id"=>$user_id])->find();
  1061. if(!$userInfo) $this->error("用户信息获取失败!");
  1062. // 国王防踢。
  1063. $noble_no = \app\common\model\NobleLevel::where(["id"=>$userInfo->noble])->value("level_no");
  1064. if(($item == 3 || $item == 4) && $noble_no == "p08PCcNB") {
  1065. $this->error("对方已开通国王贵族,踢出房间失败!");
  1066. }
  1067. $redis = new Redis();
  1068. $redisconfig = config("redis");
  1069. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1070. if ($redisconfig['redis_pwd']) {
  1071. $redis->auth($redisconfig['redis_pwd']);
  1072. }
  1073. if($redisconfig['redis_selectdb'] > 0){
  1074. $redis->select($redisconfig['redis_selectdb']);
  1075. }
  1076. $data = [];
  1077. $data["user_id"] = $user_id;
  1078. $data["avatar"] = $userInfo->avatar;
  1079. $data["nickname"] = $userInfo->nickname;
  1080. $data["gender"] = $userInfo->gender;
  1081. $data["level"] = $userInfo->level;
  1082. $data["item"] = $item;
  1083. $data["time"] = $time;
  1084. $data["createtime"] = time();
  1085. $res = $redis->hSet("party_manage_".$party_id,$user_id."-".$item,serialize($data));
  1086. if($res !== false) {
  1087. $this->success("设置成功!",$data);
  1088. } else {
  1089. $this->error("网络错误,请稍后重试!");
  1090. }
  1091. }
  1092. /**
  1093. * 派对管理设置列表
  1094. */
  1095. public function partyManageSetList() {
  1096. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  1097. $item = $this->request->request('item',1,"intval"); // 项目:1=房管,2=禁言,3=拉黑,4=踢出
  1098. if (!$party_id || !in_array($item,[1,2,3,4])) {
  1099. $this->error(__('Invalid parameters'));
  1100. }
  1101. $time = time();
  1102. $redis = new Redis();
  1103. $redisconfig = config("redis");
  1104. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1105. if ($redisconfig['redis_pwd']) {
  1106. $redis->auth($redisconfig['redis_pwd']);
  1107. }
  1108. if($redisconfig['redis_selectdb'] > 0){
  1109. $redis->select($redisconfig['redis_selectdb']);
  1110. }
  1111. $hget=$redis->hGetAll("party_manage_".$party_id);
  1112. $list=array();
  1113. foreach($hget as $key=>$val) {
  1114. if(substr($key,-2) == "-".$item){
  1115. array_push($list,unserialize($val));
  1116. }
  1117. }
  1118. if($list) {
  1119. foreach($list as $k => $v) if(bcadd($v["createtime"],$v["time"]) <= $time && $v["item"] > 1) unset($list[$k]);
  1120. if($list) $list = array_values($list);
  1121. }
  1122. $this->success("获取成功!",$list);
  1123. }
  1124. /**
  1125. * 派对管理设置移除
  1126. */
  1127. public function partyManageSetDel() {
  1128. $id = $this->request->request('user_id',0,"intval"); // userid
  1129. $party_id = $this->request->request('party_id',0,"intval"); // 房间ID
  1130. $item = $this->request->request('item',1,"intval"); // 项目:1=房管,2=禁言,3=拉黑,4=踢出
  1131. if (!$id || !in_array($item,[1,2,3,4])) {
  1132. $this->error(__('Invalid parameters'));
  1133. }
  1134. $redis = new Redis();
  1135. $redisconfig = config("redis");
  1136. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1137. if ($redisconfig['redis_pwd']) {
  1138. $redis->auth($redisconfig['redis_pwd']);
  1139. }
  1140. if($redisconfig['redis_selectdb'] > 0){
  1141. $redis->select($redisconfig['redis_selectdb']);
  1142. }
  1143. $res = $redis->hDel("party_manage_".$party_id,$id."-".$item);
  1144. if($res !== false) {
  1145. $this->success("移除成功!",$res);
  1146. } else {
  1147. $this->error("网络错误,请稍后重试!");
  1148. }
  1149. }
  1150. /**
  1151. * 更新派对公告
  1152. */
  1153. public function savePartyNotice() {
  1154. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  1155. $room_type = $this->request->request('room_type',1); // 房间类型:1=派对2=直播
  1156. $party_notice = $this->request->request('party_notice'); // 公告标题
  1157. $party_notice_detail = $this->request->request('party_notice_detail'); // 公告内容
  1158. if (!$party_id || !$party_notice || !$party_notice_detail) {
  1159. $this->error(__('Invalid parameters'));
  1160. }
  1161. $partyModel = new \app\common\model\Party();
  1162. $where = [];
  1163. $where["id"] = $party_id;
  1164. $data = [];
  1165. $data["party_notice"] = $party_notice;
  1166. $data["party_notice_detail"] = $party_notice_detail;
  1167. $res = $partyModel->update($data,$where);
  1168. if($res) {
  1169. // 存redis 房间信息
  1170. $redis = new Redis();
  1171. $redisconfig = config("redis");
  1172. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1173. if ($redisconfig['redis_pwd']) {
  1174. $redis->auth($redisconfig['redis_pwd']);
  1175. }
  1176. if($redisconfig['redis_selectdb'] > 0){
  1177. $redis->select($redisconfig['redis_selectdb']);
  1178. }
  1179. $partyInfo = $redis->get($this->roomTypeArr[$room_type]."_".$party_id);
  1180. if($partyInfo) {
  1181. $partyInfo = json_decode($partyInfo,true);
  1182. $partyInfo = array_replace($partyInfo,$data);
  1183. $redis->set($this->roomTypeArr[$room_type]."_".$party_id,json_encode($partyInfo));
  1184. }
  1185. $this->success("更新成功!",$res);
  1186. } else {
  1187. $this->error("网络错误,请稍后重试!");
  1188. }
  1189. }
  1190. /**
  1191. * 开始排麦
  1192. */
  1193. public function addLineUp() {
  1194. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  1195. $mai_id = $this->request->request('mai_id',"1"); // 麦位置
  1196. if (!$party_id) {
  1197. $this->error(__('Invalid parameters'));
  1198. }
  1199. $userInfo = $this->auth->getUserinfo();
  1200. $userid = $userInfo['id'];
  1201. // 获取 房间信息
  1202. $partyUser = \app\common\model\Party::where(['id'=>$party_id])->value("user_id");
  1203. if(!$partyUser) $this->error(__('房间信息未找到!'));
  1204. // $is_home = $partyUser == $userInfo->id?1:0;
  1205. $redis = new Redis();
  1206. $redisconfig = config("redis");
  1207. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1208. if ($redisconfig['redis_pwd']) {
  1209. $redis->auth($redisconfig['redis_pwd']);
  1210. }
  1211. if($redisconfig['redis_selectdb'] > 0){
  1212. $redis->select($redisconfig['redis_selectdb']);
  1213. }
  1214. $data = unserialize($redis->hGet("party_lineup",$party_id));
  1215. $data[$userid]["user_id"] = $userInfo['id'];
  1216. $data[$userid]["avatar"] = $userInfo['avatar'];
  1217. $data[$userid]["mai_id"] = $mai_id;
  1218. $data[$userid]["nickname"] = $userInfo['nickname'];
  1219. // $data["is_home"] = $is_home;
  1220. $data[$userid]["level"] = $userInfo['level'];
  1221. $data[$userid]["gender"] = $userInfo['gender'];
  1222. $res = false;
  1223. $data && $res = $redis->hSet("party_lineup",$party_id,serialize($data));
  1224. $data = array_values($data);
  1225. if($res !== false) {
  1226. $this->success("设置成功!",$data);
  1227. } else {
  1228. $this->error("网络错误,请稍后重试!");
  1229. }
  1230. }
  1231. /**
  1232. * 取消排麦
  1233. */
  1234. public function cancelLineUp() {
  1235. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  1236. $user_id = $this->request->request('user_id',0); // 直播间ID
  1237. $is_empty = $this->request->request('is_empty',0,"intval"); // 是否清空排麦列表 1=清空,0=不清空
  1238. if (!$party_id) {
  1239. $this->error(__('Invalid parameters'));
  1240. }
  1241. $userid = $this->auth->id;
  1242. $redis = new Redis();
  1243. $redisconfig = config("redis");
  1244. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1245. if ($redisconfig['redis_pwd']) {
  1246. $redis->auth($redisconfig['redis_pwd']);
  1247. }
  1248. if($redisconfig['redis_selectdb'] > 0){
  1249. $redis->select($redisconfig['redis_selectdb']);
  1250. }
  1251. $data=unserialize($redis->hGet("party_lineup",$party_id));
  1252. if($data && $is_empty != 1) {
  1253. foreach($data as $k => $v) {
  1254. if($v["user_id"] == $user_id) {
  1255. unset($data[$k]);
  1256. break;
  1257. }
  1258. }
  1259. }
  1260. // unset($data[$userid]);
  1261. if($is_empty == 1) $data = [];
  1262. $redis->hSet("party_lineup",$party_id,serialize($data));
  1263. $this->success("移除成功!");
  1264. }
  1265. /**
  1266. * 排麦列表
  1267. */
  1268. public function lineUpList() {
  1269. $party_id = $this->request->request('party_id',0,"intval"); // 直播间ID
  1270. if (!$party_id) {
  1271. $this->error(__('Invalid parameters'));
  1272. }
  1273. $redis = new Redis();
  1274. $redisconfig = config("redis");
  1275. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1276. if ($redisconfig['redis_pwd']) {
  1277. $redis->auth($redisconfig['redis_pwd']);
  1278. }
  1279. if($redisconfig['redis_selectdb'] > 0){
  1280. $redis->select($redisconfig['redis_selectdb']);
  1281. }
  1282. $data = $redis->hGet("party_lineup",$party_id);
  1283. $dataArr = unserialize($data);
  1284. $datas = [];
  1285. is_array($dataArr) && $datas=array_values($dataArr);
  1286. if($datas) {
  1287. $this->success("获取成功!",$datas);
  1288. } else {
  1289. $this->success("获取成功!",[]);
  1290. }
  1291. }
  1292. /**
  1293. * 获取派对类型
  1294. */
  1295. public function getPatyType() {
  1296. $room_type = $this->request->request("room_type",1);//
  1297. if (!in_array($room_type,[1,2])) $this->error(__('Invalid parameters'));
  1298. $partytypeModel = new \app\common\model\PartyType();
  1299. $partytypeList = $partytypeModel->where(["room_type"=>$room_type])->select();
  1300. $this->success("获取成功!",$partytypeList);
  1301. }
  1302. /**
  1303. * 判断派对是否设置过密码
  1304. */
  1305. public function getPatyIspass() {
  1306. $party_id = $this->request->request("party_id");// 派对ID
  1307. $room_type = $this->request->request("room_type",1);//
  1308. $is_miniprogram = $this->request->request("is_miniprogram",0);//
  1309. if (!$party_id) $this->error(__('Invalid parameters'));
  1310. $user_id = $this->auth->id;
  1311. // 存redis 房间信息
  1312. $redis = new Redis();
  1313. $redisconfig = config("redis");
  1314. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1315. if ($redisconfig['redis_pwd']) {
  1316. $redis->auth($redisconfig['redis_pwd']);
  1317. }
  1318. if($redisconfig['redis_selectdb'] > 0){
  1319. $redis->select($redisconfig['redis_selectdb']);
  1320. }
  1321. $partyInfo = $redis->get($this->roomTypeArr[$room_type]."_".$party_id);
  1322. if($partyInfo) {
  1323. $partyInfo = json_decode($partyInfo,true);
  1324. } else {
  1325. $partyModel = new \app\common\model\Party();
  1326. $partyInfo = $partyModel->field("id,user_id,party_pass")->where(["id"=>$party_id])->find();
  1327. if(!$partyInfo) {
  1328. $this->error(__('房间信息获取失败!'));
  1329. }
  1330. }
  1331. $data = [];
  1332. $data["status"] = 0;
  1333. $data["is_pass"] = $partyInfo["party_pass"]?1:0;
  1334. $partyManage = $redis->hGet("party_manage_".$party_id,$user_id."-1");
  1335. if($partyInfo["user_id"] == $user_id || $this->auth->is_manager == 1 || !empty($partyManage)){ $data["is_pass"] = 0;}
  1336. if($is_miniprogram == 1) { // 小程序单独处理
  1337. // 判断当前用户是否被该房间设置限制 //项目:1=房管,2=禁言,3=拉黑,4=踢出
  1338. $lsetList = [];
  1339. for($i=1;$i<=4;$i++) {
  1340. $hgetlist = $redis->hGet("party_manage_".$party_id,$user_id."-".$i);
  1341. $hgetlist = unserialize($hgetlist);
  1342. $restime = time() - intval($hgetlist["createtime"]);
  1343. // 房管
  1344. if($hgetlist && $i == 1) $lsetList["manage_restime"] = "";
  1345. // 禁言
  1346. if($hgetlist && $i == 2 && $restime < $hgetlist["time"]) $lsetList["manage_notalk"] = $restime;
  1347. // 拉黑
  1348. if($hgetlist && $i == 3 && $restime < $hgetlist["time"]) {
  1349. $restime = date("Y-m-d H:i:s",($hgetlist["time"]+$hgetlist["createtime"]));
  1350. $lsetList["manage_black"] = $restime;
  1351. $lsetList["tips"] = '您已被该房间拉黑,解除时间:'.$restime;
  1352. // $this->error(__('您已被该房间拉黑,解除时间:'.$restime));
  1353. break;
  1354. }
  1355. // 踢出
  1356. if($hgetlist && $i == 4 && $restime < $hgetlist["time"]) {
  1357. $restime = date("Y-m-d H:i:s",($hgetlist["time"]+$hgetlist["createtime"]));
  1358. $lsetList["manage_takeout"] = $restime;
  1359. $lsetList["tips"] = '您已被该房间踢出,解除时间:'.$restime;
  1360. // $this->error(__('您已被该房间踢出,解除时间:'.$restime));
  1361. break;
  1362. }
  1363. }
  1364. if($lsetList) {
  1365. $data["status"] = 1;
  1366. $data["hgetlist"] = $lsetList;
  1367. }
  1368. }
  1369. $this->success("获取成功!",$data);
  1370. }
  1371. /**
  1372. * 获取房间gif表情分类
  1373. */
  1374. public function getPartyGifType()
  1375. {
  1376. $list = \app\common\model\PartyGifType::field("id,name,image")->order("weigh", "asc")->select();
  1377. $this->success("获取成功!", $list);
  1378. }
  1379. /**
  1380. * 获取房间gif表情列表
  1381. */
  1382. public function getPartGifList() {
  1383. $this->success("获取成功!",\app\common\model\PartyGif::field("id,gif_image")->order("weight","asc")->select());
  1384. }
  1385. /**
  1386. * 获取房间头像gif表情列表
  1387. */
  1388. public function getPartHeadgifList() {
  1389. $this->success("获取成功!",\app\common\model\PartyHeadgif::field("id,name,gif_image")->order("weight","asc")->select());
  1390. }
  1391. /**
  1392. * 随机获取礼物盒礼物
  1393. */
  1394. private function getBoxGift($gift_box_type) {
  1395. // 查询本奖池内礼物是否还有可抽礼物
  1396. $where = [];
  1397. $where["Jackpot_id"] = $gift_box_type;
  1398. $where["is_use"] = 0;
  1399. $boxhasgift = \app\common\model\GiftBox::where($where)->select();
  1400. $giftcount = count($boxhasgift);
  1401. $giftArr = [];
  1402. foreach($boxhasgift as $k => $v) $giftArr[$v["id"]] = $v;
  1403. if($giftcount > 1) {
  1404. // 随机抽取$num个礼物
  1405. $giftids = array_rand($giftArr,1);
  1406. \app\common\model\GiftBox::update(["is_use"=>1],["id"=>$giftids]);
  1407. }
  1408. if($giftcount == 1) {
  1409. $giftids = $boxhasgift[0]["id"];
  1410. // 更新宝箱奖池全部礼物为未使用
  1411. \app\common\model\GiftBox::update(["is_use"=>0],["Jackpot_id"=>$gift_box_type]);
  1412. }
  1413. $giftInfo = $giftArr[$giftids];
  1414. return $giftInfo;
  1415. }
  1416. /**
  1417. * 全麦/单独赠送礼物
  1418. */
  1419. public function giveGiftToYou() {
  1420. $is_back = $this->request->request("is_back",0);// 是否背包赠送: 1=是,0=否
  1421. // 接口防并发
  1422. if($is_back){
  1423. if (!$this->apiLimit(50, 1000)) {
  1424. $this->error(__('Operation frequently'));
  1425. }
  1426. }else{
  1427. if (!$this->apiLimit(10, 1000)) {
  1428. $this->error(__('Operation frequently'));
  1429. }
  1430. }
  1431. $user_ids = $this->request->request("user_id");// 赠送对象
  1432. $gift_id = $this->request->request("gift_id");// 礼物ID
  1433. $party_id = $this->request->request("party_id",0);// 派对ID
  1434. $room_type = $this->request->request('room_type',1); // 房间类型
  1435. $number = $this->request->request("number");// 赠送数量
  1436. if (!$user_ids || !in_array($is_back,[0,1]) || !$gift_id || !$number || !in_array($room_type,[1,2])) $this->error(__('Invalid parameters'));
  1437. $user_id_arr = explode(",",$user_ids);
  1438. $userCount = count($user_id_arr);
  1439. $userauthid = $this->auth->id;
  1440. //$soundCoinRate = config("site.giftCoin"); // 声币兑换比例
  1441. $money_to_jewel = config('site.money_to_jewel') ?: 10; //余额兑换钻石
  1442. $userModel = new \app\common\model\User();
  1443. $backGiftId = 0;
  1444. $boxgiftInfo = [];
  1445. // 不可以赠送给自己
  1446. //if(in_array($userauthid,$user_id_arr)) $this->error("不可以赠送给自己!");
  1447. if($is_back == 1) {
  1448. // 获取背包礼物信息
  1449. $giftInfo = \app\common\model\GiftBack::get($gift_id);
  1450. if(!$giftInfo) $this->error("背包礼物获取失败");
  1451. $backGiftId = $giftInfo->gift_id;
  1452. // 随机获取一个礼物
  1453. $allCount = $number*$userCount;
  1454. $giftbackList = \app\common\model\GiftBack::where(["name"=>$giftInfo->name,"user_id"=>$userauthid,'is_use'=>0])->limit($allCount)->select();
  1455. $giftInfo = isset($giftbackList[0])?$giftbackList[0]:[];
  1456. $giftcount = 0;
  1457. $giftList = [];
  1458. if($giftbackList) foreach($giftbackList as $k => $v) {
  1459. $giftcount = $giftcount + $v["number"];
  1460. $giftList[$k] = $v;
  1461. if($giftcount >= $allCount) {
  1462. break;
  1463. }
  1464. }
  1465. if($giftcount < $allCount) $this->error("背包数量不足");
  1466. $giftValue = $giftInfo["value"] * $number;
  1467. $getValue = $giftInfo["value"] * $number;
  1468. } else {
  1469. // 获取礼物信息
  1470. $giftModel = new \app\common\model\Gift();
  1471. $where = [];
  1472. $where["id"] = $gift_id;
  1473. $giftInfo = $giftModel->where($where)->find();
  1474. if (!$giftInfo) $this->error("请选择礼物!");
  1475. $giftValue = $giftInfo["value"] * $number;
  1476. $giftCountValue = $giftInfo["value"] * $number * $userCount;
  1477. $getValue = $giftValue;
  1478. // 判断如果是礼物盒则随机开礼物盒礼物
  1479. if($giftInfo->box_type > 0) {
  1480. $boxgiftInfo = $this->getBoxGift($giftInfo->box_type);
  1481. $getValue = $boxgiftInfo["price"];
  1482. }
  1483. // 判断当前用户余额
  1484. $where = [];
  1485. $where["id"] = $userauthid;
  1486. $userInfo = $userModel->where($where)->lock(true)->find();
  1487. if (!$userInfo) $this->error("用户信息查询失败!");
  1488. if($userInfo["jewel"] < $giftCountValue) $this->error("您的钻石余额不足!");
  1489. }
  1490. $hotValue = $getValue;
  1491. //$getValue = round($getValue * ($soundCoinRate/100));
  1492. // 转换统计
  1493. $progetValue = $hotValue - $getValue;
  1494. if($progetValue >0) {
  1495. $data = [];
  1496. $data["user_id"] = $user_ids;
  1497. $data["party_id"] = $party_id?$party_id:0;
  1498. $data["gift_value"] = $hotValue;
  1499. $data["plat_value"] = $hotValue - $getValue;
  1500. $data["createtime"] = time();
  1501. \app\common\model\UserChangeLog::insert($data);
  1502. }
  1503. // 转换声币后 再进行抽点设置
  1504. $partyInfo = null;
  1505. if(!$party_id) {
  1506. $platRate = 10;
  1507. $guilderRate = 30;
  1508. } else {
  1509. $partyInfo = \app\common\model\Party::field("user_id,platRate,guilderRate")->where(["id"=>$party_id])->find();
  1510. // 获取系统配置信息
  1511. $platRate = $partyInfo->platRate; // 平台抽成百分比
  1512. $guilderRate = $partyInfo->guilderRate; // 工会长抽成百分比
  1513. }
  1514. $platValue = bcmul($platRate/100,$getValue,2);
  1515. $guilderValue = bcmul($guilderRate/100,$getValue,2);
  1516. $getValue = bcsub(bcsub($getValue,$platValue,2),$guilderValue,2);
  1517. // $gif_image = $is_back==1?$giftInfo["gif_image"]:$giftInfo["special"];
  1518. $returnData = [];
  1519. Db::startTrans();
  1520. try {
  1521. $redis = new Redis();
  1522. $redisconfig = config("redis");
  1523. $redis->connect($redisconfig["host"], $redisconfig["port"], 86400 * 31);
  1524. if ($redisconfig['redis_pwd']) {
  1525. $redis->auth($redisconfig['redis_pwd']);
  1526. }
  1527. if($redisconfig['redis_selectdb'] > 0){
  1528. $redis->select($redisconfig['redis_selectdb']);
  1529. }
  1530. // 事务处理余额与记录信息
  1531. $userjewellogModel = new \app\common\model\UserJewelLog();
  1532. //$usersoundcoinlogModel = new \app\common\model\UserSoundcoinLog();
  1533. // 获取当天零点
  1534. $day = date("Ymd");
  1535. // 获取本周第一天
  1536. $weekday = $this->firstOfWeek(date("Y-m-d H:i:s"));
  1537. // 获取本月第一天
  1538. $monthday = date("Ym01");
  1539. $allVal = 0;
  1540. $i = 0;
  1541. foreach($user_id_arr as $user_id) {
  1542. // 获取赠送用户信息
  1543. $where = [];
  1544. $where["id"] = $user_id;
  1545. $touserInfo = $userModel->where($where)->find();
  1546. if($is_back == 1) {
  1547. $b=0;
  1548. foreach($giftList as $k => $v) {
  1549. for($a=1;$a<=$v["number"];$a++) {
  1550. $b++;
  1551. $num = $v["number"] - $a;
  1552. if($num > 0) {
  1553. $res1 = \app\common\model\GiftBack::where(["id"=>$v["id"]])->setDec("number");
  1554. } else {
  1555. $res1 = \app\common\model\GiftBack::update(["is_use"=>1,"use_time"=>time()],["id"=>$v["id"]]);
  1556. }
  1557. if($b == $number) break;
  1558. }
  1559. }
  1560. $res2 = true;
  1561. } else {
  1562. $res1 = true;
  1563. $res2 = true;
  1564. // 扣除当前用户钻石余额
  1565. $rs_wallet = model('wallet')->lockChangeAccountRemain($userauthid, $giftValue, '-', $userInfo["jewel"], "赠送礼物:'" . $giftInfo["name"] . "',扣除" . $giftValue . "钻石!", 3,'jewel');
  1566. if($rs_wallet['status'] == false){
  1567. $this->error($rs_wallet['msg']);
  1568. Db::rollback();
  1569. }
  1570. }
  1571. $giftuserpartyModel = new \app\common\model\GiftUserParty();
  1572. // 添加礼物赠送记录表
  1573. $data = [];
  1574. $data["user_id"] = $userauthid;
  1575. $data["user_to_id"] = $user_id;
  1576. $data["party_id"] = $party_id;
  1577. if($boxgiftInfo){
  1578. $data["gift_id"] = $boxgiftInfo['gift_id'];
  1579. $data["gift_give_type"] = 2;
  1580. $data["gift_name"] = $boxgiftInfo["gift_name"];
  1581. $data["gift_gif_image"] = $boxgiftInfo["image"];
  1582. $data["number"] = $number;
  1583. $data["price"] = $boxgiftInfo["price"];
  1584. $data["value"] = $boxgiftInfo["price"] * $number;
  1585. }else{
  1586. $data["gift_id"] = $backGiftId > 0 ? $backGiftId : $gift_id;
  1587. $data["gift_give_type"] = $is_back ? 1 : 2;
  1588. $data["gift_name"] = $giftInfo["name"];
  1589. $data["gift_gif_image"] = $giftInfo["image"];
  1590. $data["number"] = $number;
  1591. $data["price"] = $giftInfo["value"];
  1592. $data["value"] = $giftValue;
  1593. }
  1594. //每个礼物都要计算平台抽成和房主抽成
  1595. $data['platvalue'] = bcmul($platRate/100,$data["value"],2);
  1596. $data['guildervalue'] = bcmul($guilderRate/100,$data["value"],2);
  1597. $data['guildermoney'] = bcdiv($data['guildervalue'],$money_to_jewel,2);
  1598. $data["createtime"] = time();
  1599. $res5 = $giftuserpartyModel->allowField(true)->save($data);
  1600. $this->bigGiftNotice($giftuserpartyModel);
  1601. // 添加赠送用户余额
  1602. if($getValue > 0){
  1603. $getMoney = bcdiv($getValue,$money_to_jewel,2);
  1604. if($getMoney > 0){
  1605. $rs_wallet = model('wallet')->lockChangeAccountRemain($user_id,$getMoney,'+',0,"{$this->auth->nickname}送你{$giftInfo['name']}x{$number}",101,'money');
  1606. if($rs_wallet['status'] == false){
  1607. $this->error($rs_wallet['msg']);
  1608. Db::rollback();
  1609. }
  1610. }
  1611. }
  1612. // 增加房主抽成
  1613. if ($partyInfo && $guilderValue > 0) {
  1614. $guilderMoney = bcdiv($guilderValue,$money_to_jewel,2);
  1615. if($guilderMoney > 0){
  1616. $rs_wallet = model('wallet')->lockChangeAccountRemain($partyInfo->user_id,$guilderMoney,'+',0,"{$this->auth->nickname}送礼物{$giftInfo['name']}x{$number}给{$touserInfo['nickname']},房间礼物抽成",102,'money');
  1617. if($rs_wallet['status'] == false){
  1618. $this->error($rs_wallet['msg']);
  1619. Db::rollback();
  1620. }
  1621. }
  1622. }
  1623. if ($res1 && $res2 && $res5) {
  1624. $i++;
  1625. if($party_id > 0) {
  1626. // 添加redis记录做财富排行榜日榜用
  1627. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_get_" . $party_id . ":" . $day . "d", $hotValue, $user_id);
  1628. // 添加redis记录做财富排行榜周榜用
  1629. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_get_" . $party_id . ":" . $weekday . "w", $hotValue, $user_id);
  1630. // 添加redis记录做财富排行榜月榜用
  1631. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_get_" . $party_id . ":" . $monthday . "m", $hotValue, $user_id);
  1632. // 添加redis记录做贡献排行榜日榜用
  1633. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_to_" . $party_id . ":" . $day . "d", $giftValue, $userauthid);
  1634. // 添加redis记录做贡献排行榜周榜用
  1635. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_to_" . $party_id . ":" . $weekday . "w", $giftValue, $userauthid);
  1636. // 添加redis记录做贡献排行榜月榜用
  1637. $redis->zIncrBy($this->roomTypeArr[$room_type] . "_jewel_to_" . $party_id . ":" . $monthday . "m", $giftValue, $userauthid);
  1638. // tcp 更新用户魅力值
  1639. $this->updateUserCharm($party_id, $user_id, $hotValue);
  1640. // 如果是主播,则添加魅力值记录做榜单统计
  1641. if($room_type == 2) {
  1642. $data = [];
  1643. $data["user_id"] = $user_id;
  1644. $data["party_id"] = $party_id;
  1645. $data["charm"] = $hotValue;
  1646. $data["createtime"] = time();
  1647. \app\common\model\UserCharmRank::insert($data);
  1648. }
  1649. }
  1650. $getempirical = config("site.getempirical");
  1651. $getempirical = $getempirical * $hotValue;
  1652. // 获取用户贵族信息
  1653. $noble = \app\common\model\User::getUserNoble($this->auth->id);
  1654. if(isset($noble["noble_on"]) && $noble["noble_on"] == 1) {
  1655. $getempirical = $getempirical + $getempirical * ($noble["explain"]/100);
  1656. }
  1657. // 增加用户经验值
  1658. $res = \app\common\model\User::addEmpirical($this->auth->id,$getempirical);
  1659. if ($res){
  1660. $this->auth->level = $res->level;
  1661. }
  1662. // +exp
  1663. \app\common\model\TaskLog::tofinish($this->auth->id,"OBHqCX4g",$number);
  1664. //贵族升级处理
  1665. //$this->checkBeNoble($redis,$this->auth->id,$giftCountValue);
  1666. // +message
  1667. \app\common\model\Message::addMessage($user_id,"礼物通知","收到 ".$this->auth->nickname." 赠送的".$giftInfo["name"]." x".$number." 价值 ".$giftValue ." 钻石");
  1668. $allVal = $allVal + $hotValue;
  1669. // // 剪掉背包礼物
  1670. // if($is_back == 1) {
  1671. // \app\common\model\GiftBack::update(["is_use"=>1],["id"=>$gift_id]);
  1672. // }
  1673. }
  1674. }
  1675. // 获取用户魅力值
  1676. $users = $redis->zRange("hourCharm_".$party_id,0,-1,true);
  1677. $u = [];
  1678. if($users) {
  1679. foreach($users as $k => $v) $u[] = [
  1680. "user_id"=>$k,
  1681. "charm"=>$this->changeW($v)
  1682. ];
  1683. }
  1684. $userCharm = $u;
  1685. // tcp 更新房间热度
  1686. $partyHot = $this->updatePartyHot($party_id, $allVal, $room_type);
  1687. // 如果是派对,则添加派对热度值记录做榜单统计
  1688. if($room_type == 1) {
  1689. $data = [];
  1690. $data["party_id"] = $party_id;
  1691. $data["hot"] = $allVal;
  1692. $data["createtime"] = time();
  1693. \app\common\model\PartyHot::insert($data);
  1694. }
  1695. // tcp 获取房间用户周前三名
  1696. $partyUserTop = $this->getPartyUserTop($party_id, $room_type);
  1697. if($i == $userCount) {
  1698. $returnData["userCharm"] = $userCharm;
  1699. $returnData["partyHot"] = $this->changeW($partyHot);
  1700. $returnData["partyUserTop"] = $partyUserTop;
  1701. if($is_back != 1) {
  1702. if($giftInfo->box_type > 0) { // 不是背包,宝箱中赠送
  1703. $returnData["box_type"] = $giftInfo->box_type;
  1704. $returnData["box_image"] = $giftInfo->image;
  1705. $returnData["image"] = $boxgiftInfo["image"];
  1706. $returnData["name"] = $boxgiftInfo["gift_name"];
  1707. $returnData["gif_image"] = $boxgiftInfo["special"];
  1708. } else {
  1709. $returnData["image"] = $giftInfo["image"];
  1710. $returnData["gif_image"] = $giftInfo["special"];
  1711. }
  1712. } else {
  1713. $returnData["image"] = $giftInfo["image"];
  1714. $returnData["gif_image"] = $giftInfo["gif_image"];
  1715. }
  1716. // 增加抽点记录
  1717. $data = [];
  1718. $data["user_id"] = $user_ids;
  1719. $data["party_id"] = $party_id?$party_id:0;
  1720. $data["gift_value"] = $giftValue;
  1721. $data["plat_value"] = $platValue;
  1722. $data["guilder_value"] = $guilderValue;
  1723. $data["createtime"] = time();
  1724. \app\common\model\UserProfitLog::insert($data);
  1725. Db::commit();
  1726. $this->success("赠送成功!",$returnData);
  1727. } else {
  1728. $this->success("赠送失败!");
  1729. }
  1730. } catch (ValidateException $e) {
  1731. Db::rollback();
  1732. $this->error($e->getMessage());
  1733. } catch (PDOException $e) {
  1734. Db::rollback();
  1735. $this->error($e->getMessage());
  1736. } catch (Exception $e) {
  1737. Db::rollback();
  1738. $this->error($e->getMessage());
  1739. }
  1740. }
  1741. //送礼完成之后,大礼物飘屏
  1742. private function bigGiftNotice($giftUserParty){
  1743. if ($giftUserParty->party_id > 0) {
  1744. $is_big = Db::name('gift')->where('id',$giftUserParty->gift_id)->value('is_big');
  1745. if ($is_big == 1) {
  1746. $partyInfo = $giftUserParty->party;
  1747. $notice = new GatewayworkerTools();
  1748. $notice->sendBigGiftInParty($giftUserParty->user->nickname,$giftUserParty->toUser->nickname,$partyInfo,$giftUserParty);
  1749. }
  1750. }
  1751. }
  1752. //某房间内礼物列表
  1753. public function getPartyGiftLog(){
  1754. $party_id = input('party_id',0);
  1755. $list = Db::name('gift_user_party')->alias('log')->field('log.gift_name,log.gift_gif_image,log.number,log.value,log.guildermoney,log.createtime,user.nickname as give_nickname,b.nickname as get_nickname')
  1756. ->join('user','log.user_id = user.id','LEFT')
  1757. ->join('user b','log.user_to_id = b.id','LEFT')
  1758. ->where('log.party_id',$party_id)->order('log.id desc')->autopage()->select();
  1759. $list = list_domain_image($list,['gift_gif_image']);
  1760. foreach($list as $key => &$val){
  1761. $val['createtime'] = get_last_time($val['createtime']);
  1762. }
  1763. $this->success('success',$list);
  1764. }
  1765. // /**
  1766. // * 播放动效
  1767. // */
  1768. // public function play($party_id,$type,$value,$number) {
  1769. // // 发送tcp
  1770. // $tcpArr = [];
  1771. // $tcpArr['type'] = "play";
  1772. // $tcpArr['data'] = [
  1773. // 'party_id' => $party_id,
  1774. // 'type' => $type,
  1775. // 'value' => $value,
  1776. // 'number' => $number,
  1777. // ];
  1778. // $tcpJson = json_encode($tcpArr);
  1779. // $client = stream_socket_client(config("tcp"));
  1780. // $buffer2 = base64_encode($tcpJson)."****";
  1781. // fwrite($client, $buffer2);
  1782. // }
  1783. /**
  1784. * 更新派对信息(热度等)
  1785. */
  1786. private function updatePartyHot($party_id,$hotValue,$room_type) {
  1787. $partyInfo = \app\common\model\Party::where(['id'=>$party_id])->find();
  1788. if(!$partyInfo) return $hotValue;
  1789. $party_hot = $partyInfo->party_hot > 0 ? $partyInfo->party_hot:0;
  1790. $party_hot_value = $party_hot + $hotValue;
  1791. $party_hot_value = $party_hot_value > 0 ? $party_hot_value : 0;
  1792. if($party_hot_value != $party_hot) {
  1793. // 保存数据
  1794. $partyInfo->party_hot = $party_hot_value;
  1795. $partyInfo->save();
  1796. // 更新redis 加入缓存排序
  1797. $redis = new Redis();
  1798. $redisconfig = config("redis");
  1799. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1800. if ($redisconfig['redis_pwd']) {
  1801. $redis->auth($redisconfig['redis_pwd']);
  1802. }
  1803. if($redisconfig['redis_selectdb'] > 0){
  1804. $redis->select($redisconfig['redis_selectdb']);
  1805. }
  1806. $redis->zAdd($this->roomTypeArr[$room_type]."Rank", $partyInfo['party_hot'], $partyInfo["id"]);
  1807. // 更新redis 加入缓存
  1808. $redPartyInfo = $redis->get($this->roomTypeArr[$room_type]."_".$partyInfo["id"]);
  1809. if($redPartyInfo) {
  1810. $redPartyInfo = json_decode($redPartyInfo,true);
  1811. $redPartyInfo["party_hot"] = $party_hot_value;
  1812. $redis->set($this->roomTypeArr[$room_type]."_".$partyInfo["id"],json_encode($redPartyInfo));
  1813. }
  1814. // // 发送tcp
  1815. // $tcpArr = [];
  1816. // $tcpArr['type'] = "changeRoomHot";
  1817. // $tcpArr['data'] = [
  1818. // 'room_id' => $party_id,
  1819. // 'value' => $party_hot_value,
  1820. // ];
  1821. // $tcpJson = json_encode($tcpArr);
  1822. // $client = stream_socket_client(config("tcp"));
  1823. // $buffer2 = base64_encode($tcpJson)."****";
  1824. // fwrite($client, $buffer2);
  1825. }
  1826. return $party_hot_value;
  1827. }
  1828. /**
  1829. * 用户赠送礼物后房间内用户排行,贡献榜前三名
  1830. */
  1831. private function getPartyUserTop($party_id,$room_type) {
  1832. $redis = new Redis();
  1833. $redisconfig = config("redis");
  1834. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1835. if ($redisconfig['redis_pwd']) {
  1836. $redis->auth($redisconfig['redis_pwd']);
  1837. }
  1838. if($redisconfig['redis_selectdb'] > 0){
  1839. $redis->select($redisconfig['redis_selectdb']);
  1840. }
  1841. // 获取本周第一天
  1842. $weekday = $this->firstOfWeek(date("Y-m-d H:i:s"));
  1843. // 获取当天零点
  1844. $day = date("Ymd");
  1845. $userModel = new \app\common\model\User();
  1846. // 获取条数
  1847. $num = 3;
  1848. // 获取3条财富排行周记录
  1849. $getweek = $redis->zRevRange($this->roomTypeArr[$room_type]."_jewel_to_".$party_id.":".$day."d",0,$num-1,true);
  1850. $userList = $userModel->rankList($getweek);
  1851. $avatarArr = [];
  1852. if($userList) {
  1853. foreach($userList as $k => $v) {
  1854. $v["jewel"] > 0 && $avatarArr[] = $v["avatar"];
  1855. }
  1856. // 加入缓存做备份
  1857. $redis->hSet("user_jewel_top3",$party_id,json_encode($avatarArr));
  1858. // // 发送tcp
  1859. // $tcpArr = [];
  1860. // $tcpArr['type'] = "changeRoomUserTop";
  1861. // $tcpArr['data'] = [
  1862. // 'room_id' => $party_id,
  1863. // 'user_avatar' => $avatarArr,
  1864. // ];
  1865. // $tcpJson = json_encode($tcpArr);
  1866. // $client = stream_socket_client(config("tcp"));
  1867. // $buffer2 = base64_encode($tcpJson)."****";
  1868. // fwrite($client, $buffer2);
  1869. }
  1870. return $avatarArr;
  1871. }
  1872. /**
  1873. * 用户赠送礼物后房间内用户魅力值增加
  1874. */
  1875. private function updateUserCharm($party_id,$user_id,$giftValue) {
  1876. $redis = new Redis();
  1877. $redisconfig = config("redis");
  1878. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1879. if ($redisconfig['redis_pwd']) {
  1880. $redis->auth($redisconfig['redis_pwd']);
  1881. }
  1882. if($redisconfig['redis_selectdb'] > 0){
  1883. $redis->select($redisconfig['redis_selectdb']);
  1884. }
  1885. // 获取用户魅力值
  1886. $users = $redis->zRange("hourCharm_".$party_id,0,-1,true);
  1887. if(!$users) $users[$user_id] = 0;
  1888. if(isset($users[$user_id])) {
  1889. $value = $users[$user_id] + $giftValue;
  1890. } else {
  1891. $value = $giftValue;
  1892. }
  1893. $redis->zAdd("hourCharm_".$party_id,$value,$user_id);
  1894. return true;
  1895. }
  1896. /**
  1897. * 单个房间魅力值清零
  1898. */
  1899. public function partyClearCharm() {
  1900. $party_id = $this->request->request("party_id");// 派对ID
  1901. $userId = $this->request->request("user_id", 0);// 用户ID
  1902. if($party_id <= 0) {
  1903. $this->error("请输入派对ID");
  1904. }
  1905. $redis = new Redis();
  1906. $redisconfig = config("redis");
  1907. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1908. if ($redisconfig['redis_pwd']) {
  1909. $redis->auth($redisconfig['redis_pwd']);
  1910. }
  1911. if($redisconfig['redis_selectdb'] > 0){
  1912. $redis->select($redisconfig['redis_selectdb']);
  1913. }
  1914. if ($userId) {
  1915. $redis->zRem("hourCharm_" . $party_id, $userId);
  1916. } else {
  1917. $redis->del("hourCharm_" . $party_id);
  1918. }
  1919. $this->success("操作成功!");
  1920. }
  1921. /**
  1922. * 获取音乐列表
  1923. */
  1924. public function getMusicList() {
  1925. $this->success("获取成功!",\app\common\model\Music::select());
  1926. }
  1927. //派对举报
  1928. public function report_party() {
  1929. $type = $this->request->param('type');// 类型描述
  1930. $content = $this->request->param('content');// 内容
  1931. $images = $this->request->param('images');// 图片
  1932. $party_id = $this->request->param('party_id');//
  1933. if (!$type || !$content || !$images || !$party_id) {
  1934. $this->error("请完成举报内容!");
  1935. }
  1936. $data = [];
  1937. $data["user_id"] = $this->auth->id;
  1938. $data["party_id"] = $party_id;
  1939. $data["type"] = $type;
  1940. $data["content"] = $content;
  1941. $data["images"] = $images;
  1942. $data["createtime"] = time();
  1943. $res = Db::name('party_report')->insertGetId($data);
  1944. if ($res) {
  1945. $this->success("举报内容提交成功!");
  1946. } else {
  1947. $this->error("网络错误,请稍后重试!");
  1948. }
  1949. }
  1950. //============================定时任务==========================//
  1951. /**
  1952. * redis清理排行榜 并数据库备份
  1953. */
  1954. public function updateTops() {
  1955. // 前一天日期
  1956. $yestaday = date("Ymd",bcsub(time(),86400));
  1957. // 上个周一
  1958. $preweek = $this->firstOfWeek(date("Y-m-d H:i:s",bcsub(time(),604800)));
  1959. // 上个月一号
  1960. $monty = bcsub(date("m"),1);
  1961. if($monty < 10) $monty = "0".$monty;
  1962. $premonth = date("Y").$monty."01";
  1963. $redis = new Redis();
  1964. $redisconfig = config("redis");
  1965. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  1966. if ($redisconfig['redis_pwd']) {
  1967. $redis->auth($redisconfig['redis_pwd']);
  1968. }
  1969. if($redisconfig['redis_selectdb'] > 0){
  1970. $redis->select($redisconfig['redis_selectdb']);
  1971. }
  1972. // 获取所有派对ID
  1973. $party_ids = \app\common\model\Party::where(["status"=>1])->column("id");
  1974. // 获取数据
  1975. $time = time();
  1976. if($party_ids) foreach($party_ids as $k => $v) {
  1977. $keys = [
  1978. "party_jewel_get_".$v.":".$yestaday."d",
  1979. "party_jewel_to_".$v.":".$yestaday."d",
  1980. "party_jewel_get_".$v.":".$preweek."w",
  1981. "party_jewel_to_".$v.":".$preweek."w",
  1982. "party_jewel_get_".$v.":".$premonth."m",
  1983. "party_jewel_to_".$v.":".$premonth."m",
  1984. ];
  1985. foreach($keys as $key) {
  1986. // 备份数据
  1987. $redisData = $redis->zRevRange($key,0,-1,true);
  1988. if($redisData) {
  1989. $keyInfo = \app\common\model\RedisTops::where(["key"=>$key])->find();
  1990. $data = ["party_id"=>$v,"key"=>$key,"value"=>json_encode($redisData),"createtime" => $time];
  1991. if(!$keyInfo) {
  1992. $res = \app\common\model\RedisTops::insert($data);
  1993. // 清理数据
  1994. $res && $redis->zRemRangeByRank($key,0,-1);
  1995. }
  1996. }
  1997. }
  1998. }
  1999. }
  2000. public function handleParty() {
  2001. return false;
  2002. $partyList = \app\common\model\Party::where('is_online',1)->select();
  2003. $redis = new Redis();
  2004. $redisconfig = config("redis");
  2005. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  2006. if ($redisconfig['redis_pwd']) {
  2007. $redis->auth($redisconfig['redis_pwd']);
  2008. }
  2009. if($redisconfig['redis_selectdb'] > 0){
  2010. $redis->select($redisconfig['redis_selectdb']);
  2011. }
  2012. // $redis->del("online_" . 3);die;
  2013. // $redis->hSet("online_" . 3, 4, 4);die;
  2014. foreach ($partyList as $party){
  2015. $userId = $party['user_id'];
  2016. $roomId = $party['id'];
  2017. $redis->HDel("online_" . $roomId, $userId);
  2018. // 扣除在线用户在房间情况
  2019. $redis->hDel("livingUser",$userId);
  2020. // // 更新房间在线状态
  2021. $partyInfo = $redis->get("party_" . $roomId);
  2022. if ($partyInfo) {
  2023. $partyInfo = json_decode($partyInfo, true);
  2024. $memCount = count($redis->hGetAll("online_" . $roomId));
  2025. if ($memCount <= 0) {
  2026. dump($roomId.'--1---');
  2027. $partyInfo["is_online"] = 0;
  2028. $redis->set("party_" . $roomId, json_encode($partyInfo));
  2029. \app\common\model\Party::update(["is_online" => 0], ["id" => $roomId]);
  2030. }
  2031. }
  2032. $liveInfo = $redis->get("live_" . $roomId);
  2033. if ($liveInfo) {
  2034. $liveInfo = json_decode($liveInfo, true);
  2035. $memCount = count($redis->hGetAll("online_" . $roomId));
  2036. if ($memCount <= 0) {
  2037. dump($roomId.'---2--');
  2038. $liveInfo["is_online"] = 0;
  2039. $redis->set("live_" . $roomId, json_encode($liveInfo));
  2040. \app\common\model\Party::update(["is_online" => 0], ["id" => $roomId]);
  2041. }else{
  2042. dump($roomId.'---3--');
  2043. $redis->del("online_" . $roomId);
  2044. $liveInfo["is_online"] = 0;
  2045. $redis->set("live_" . $roomId, json_encode($liveInfo));
  2046. \app\common\model\Party::update(["is_online" => 0], ["id" => $roomId]);
  2047. }
  2048. }
  2049. }
  2050. $this->success("获取成功!");
  2051. }
  2052. }