Tenim.php 50 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\service\TenimService;
  5. use think\Request;
  6. use getusersig\getusersig;
  7. use tencentim\tencentim;
  8. use Redis;
  9. use think\Db;
  10. /**
  11. * 腾讯im接口
  12. */
  13. class Tenim extends Api
  14. {
  15. protected $noNeedLogin = ['trtc_callback',"callback",'test','createIMGroup','updateRoomInfo','setImManage','sendMessageToUser','outMemberFromRoom',
  16. 'autoUserLine','getRoomUser','getGroupList','getGroupInfo'];
  17. protected $noNeedRight = ['*'];
  18. public function test() {
  19. $groupinfo = $this->getGroupInfo("112");
  20. print_r($groupinfo);
  21. exit;
  22. // 获取所有派对信息
  23. $partyList = \app\common\model\Party::field("id,user_id,party_name")->where(["status"=>1])->order("id","asc")->select();
  24. foreach($partyList as $k => $v) {
  25. if($k>=140 && $k<180) {
  26. $groupinfo = $this->getGroupInfo((string)$v["id"]);
  27. print_r($groupinfo);
  28. // $groupinfo = json_encode($groupinfo);
  29. // Db::table("hx_aaaa")->insert(["party_id"=>$v["id"],"user_id"=>$v["user_id"],"party_name"=>$v["party_name"],"json"=>$groupinfo]);
  30. }
  31. }
  32. exit;
  33. // $this->success("",$partyList);
  34. }
  35. /**
  36. * 创建im群组
  37. */
  38. public function createIMGroup() {
  39. $random = rand(10000000,99999999);
  40. $usersig = $this->usersig("administrator");
  41. // 获取配置信息
  42. $config = config("tencent_im");
  43. $url = "https://console.tim.qq.com/v4/group_open_http_svc/create_group";
  44. $url .= "?sdkappid=".$config["sdkappid"];
  45. $url .= "&identifier=administrator";
  46. $url .= "&usersig=".$usersig;
  47. $url .= "&random==".$random;
  48. $url .= "&contenttype=json";
  49. $tencentObj = new tencentim($url);
  50. // 获取群im信息
  51. $imInfo = Db::table("hx_aaaa")->where(["party_id"=>112])->select();
  52. if($imInfo) foreach($imInfo as $k => $v) {
  53. // if($k>=160 && $k<200) {
  54. $grouparr = json_decode($v["json"], true);
  55. $grouparr = $grouparr["GroupInfo"][0];
  56. $AppDefinedData = $grouparr["AppDefinedData"];
  57. $data = [];
  58. $data["Owner_Account"] = (string)$v["user_id"];
  59. $data["Type"] = "AVChatRoom";
  60. $data["GroupId"] = (string)$v["party_id"];
  61. $data["Name"] = $this->substr((string)$v["party_name"],0,7);
  62. $AppDefinedDataNew = [
  63. [
  64. "Key" => "roomInfo",
  65. "Value" => "sssssss"
  66. ],
  67. [
  68. "Key" => "seat0",
  69. "Value" => '{"mute":false,"status":0,"user":""}'
  70. ],
  71. [
  72. "Key" => "seat1",
  73. "Value" => $AppDefinedData[2]["Value"]
  74. ],
  75. [
  76. "Key" => "seat2",
  77. "Value" => $AppDefinedData[3]["Value"]
  78. ],
  79. [
  80. "Key" => "seat3",
  81. "Value" => $AppDefinedData[4]["Value"]
  82. ],
  83. [
  84. "Key" => "seat4",
  85. "Value" => $AppDefinedData[5]["Value"]
  86. ],
  87. [
  88. "Key" => "seat5",
  89. "Value" => $AppDefinedData[6]["Value"]
  90. ],
  91. [
  92. "Key" => "seat6",
  93. "Value" => $AppDefinedData[7]["Value"]
  94. ],
  95. [
  96. "Key" => "seat7",
  97. "Value" => $AppDefinedData[8]["Value"]
  98. ],
  99. [
  100. "Key" => "seat8",
  101. "Value" => $AppDefinedData[9]["Value"]
  102. ]
  103. ];
  104. $data["AppDefinedData"] = json_encode($AppDefinedDataNew);
  105. $groupInfo = $tencentObj->toSend($data);
  106. if($groupInfo["ActionStatus"] != 'OK') {
  107. echo $v["party_id"];
  108. break;
  109. }
  110. // }
  111. }
  112. print_r($groupInfo);exit;
  113. }
  114. public function substr(string $string, int $start, int $length = null)
  115. {
  116. return mb_substr($string, $start, $length, 'UTF-8');
  117. }
  118. /**
  119. * 更新房间信息
  120. */
  121. public function updateRoomInfo() {
  122. $random = rand(10000000, 99999999);
  123. $usersig = $this->usersig("administrator");
  124. // 获取配置信息
  125. $config = config("tencent_im");
  126. $url = "https://console.tim.qq.com/v4/group_open_http_svc/modify_group_base_info";
  127. $url .= "?sdkappid=" . $config["sdkappid"];
  128. $url .= "&identifier=administrator";
  129. $url .= "&usersig=" . $usersig;
  130. $url .= "&random=" . $random;
  131. $url .= "&contenttype=json";
  132. $tencentObj = new tencentim($url);
  133. // 获取群im信息
  134. $imInfo = Db::table("hx_aaaa")->select();
  135. if($imInfo) foreach($imInfo as $k => $v) {
  136. if($k>=120 && $k<180) {
  137. $grouparr = json_decode($v["json"], true);
  138. $groupsites = $grouparr["GroupInfo"];
  139. // 循环房间
  140. if ($groupsites) foreach ($groupsites as $k => $v) {
  141. // 循环座位
  142. $data = [];
  143. foreach ($v["AppDefinedData"] as $m => $n) {
  144. // 解析字段信息
  145. $siteInfo = json_decode($n["Value"], true);
  146. $data["AppDefinedData"][] = [
  147. "Key" => $n["Key"],
  148. "Value" => $n["Value"],
  149. ];
  150. }
  151. if (!empty($data)) {
  152. $data["GroupId"] = $v["GroupId"];
  153. $res = $tencentObj->toSend($data);
  154. } else {
  155. echo "error!";
  156. break;
  157. }
  158. }
  159. }
  160. }
  161. print_r($res);
  162. exit;
  163. }
  164. /**
  165. * 获取群组信息
  166. */
  167. public function getGroupInfo($party_id='0') {
  168. $party_id = !empty($party_id) ? $party_id : $this->request->param('part_id',0);
  169. $random = rand(10000000,99999999);
  170. $usersig = $this->usersig("administrator");
  171. // 获取配置信息
  172. $config = config("tencent_im");
  173. $url = "https://console.tim.qq.com/v4/group_open_http_svc/get_group_info";
  174. $url .= "?sdkappid=".$config["sdkappid"];
  175. $url .= "&identifier=administrator";
  176. $url .= "&usersig=".$usersig;
  177. $url .= "&random==".$random;
  178. $url .= "&contenttype=json";
  179. $tencentObj = new tencentim($url);
  180. $data = [];
  181. $data["GroupIdList"] = [$party_id];
  182. $data["ResponseFilter"] = [
  183. "GroupBaseInfoFilter" => ["GroupId","Type","Name","FaceUrl","Owner_Account","MemberNum"],
  184. "MemberInfoFilter" => ["Account","Role"],
  185. "AppDefinedDataFilter_Group" => ["roomInfo"],
  186. ];
  187. $groupInfo = $tencentObj->toSend($data);
  188. $this->success('获取成功',$groupInfo['GroupInfo']);
  189. }
  190. /**
  191. * 获取所有群组
  192. */
  193. public function getGroupList() {
  194. $random = rand(10000000,99999999);
  195. $usersig = $this->usersig("administrator");
  196. // 获取配置信息
  197. $config = config("tencent_im");
  198. $url = "https://console.tim.qq.com/v4/group_open_http_svc/get_appid_group_list";
  199. $url .= "?sdkappid=".$config["sdkappid"];
  200. $url .= "&identifier=administrator";
  201. $url .= "&usersig=".$usersig;
  202. $url .= "&random==".$random;
  203. $url .= "&contenttype=json";
  204. $tencentObj = new tencentim($url);
  205. $data = [];
  206. $data["Limit"] = 100;//本次获取的群组 ID 数量的上限,不得超过 10000。如果不填,默认为最大值 10000
  207. $data["GroupType"] = 'AVChatRoom';//群组形态包括 Public(公开群),Private(即 Work,好友工作群),ChatRoom(即 Meeting,会议群),AVChatRoom(音视频聊天室),BChatRoom(在线成员广播大群)和社群(Community)
  208. $groupList = $tencentObj->toSend($data);
  209. $result = [];
  210. if (isset($groupList['ActionStatus']) && $groupList['ActionStatus'] == 'OK') {
  211. $result = isset($groupList['GroupIdList']) ? $groupList['GroupIdList'] : [];
  212. }
  213. $this->success('获取成功',$result);
  214. }
  215. /**
  216. * 获取用户所加入的群组
  217. */
  218. public function getJoindGroupList($user_id) {
  219. $random = rand(10000000,99999999);
  220. $usersig = $this->usersig("administrator");
  221. // 获取配置信息
  222. $config = config("tencent_im");
  223. $url = "https://console.tim.qq.com/v4/group_open_http_svc/get_joined_group_list";
  224. $url .= "?sdkappid=".$config["sdkappid"];
  225. $url .= "&identifier=administrator";
  226. $url .= "&usersig=".$usersig;
  227. $url .= "&random=".$random;
  228. $url .= "&contenttype=json";
  229. $tencentObj = new tencentim($url);
  230. $data = [];
  231. $data["Member_Account"] = $user_id;
  232. $data["WithHugeGroups"] = 1;
  233. $data["GroupType"] = 'AVChatRoom';
  234. $data["ResponseFilter"] = ["GroupBaseInfoFilter" => ['GroupId'] ];
  235. $groupInfo = $tencentObj->toSend($data);
  236. // \app\common\model\Test::update(["content"=>json_encode($groupInfo)],["id"=>1]);
  237. return $groupInfo;
  238. }
  239. //"https:\/\/console.tim.qq.com\/v4\/group_open_http_svc\/get_joined_group_list?sdkappid=1400458032&identifier=administrator&usersig=eJyrVgrxCdYrSy1SslIy0jNQ0gHzM1NS80oy0zLBwqamUNHilOzEgoLMFCUrQxMDAxNTCwNjI4hMakVBZlEqUNzU1NTIwMAAIlqSmQsSMzO0MDY0NDOwhJqSmQ40NNwowsvMzzXKw8wsLNIwRr9S28giPKjMPSkpKLPcLcfFPd3TO7swz9fXOdLTVqkWADrXLzo_&random=73931990&contenttype=json"
  240. // /**
  241. // * 删除群成员
  242. // */
  243. // public function delMemberFromGroup($user_id,$party_id) {
  244. // $random = rand(10000000,99999999);
  245. // $usersig = $this->usersig($user_id);
  246. // // 获取配置信息
  247. // $config = config("tencent_im");
  248. // $url = "https://console.tim.qq.com/v4/group_open_http_svc/delete_group_member";
  249. // $url .= "?sdkappid=".$config["sdkappid"];
  250. // $url .= "&identifier=administrator";
  251. // $url .= "&usersig=".$usersig;
  252. // $url .= "&random=".$random;
  253. // $url .= "&contenttype=json";
  254. // $tencentObj = new tencentim($url);
  255. // $data = [];
  256. // $data["GroupId"] = $party_id;
  257. // $data["Silence"] = 1;
  258. // $data["MemberToDel_Account"] = [$user_id];
  259. // $res = $tencentObj->toSend($data);
  260. // \app\common\model\Test::update(["content"=>json_encode($res)],["id"=>1]);
  261. // return $res;
  262. // }
  263. /**
  264. * 设置管理员
  265. */
  266. public function setImManage($manage_user_id,$party_id) {
  267. // $manage_user_id = "2";
  268. // $party_id = "6";
  269. $random = rand(10000000,99999999);
  270. $usersig = $this->usersig("administrator");
  271. // 获取配置信息
  272. $config = config("tencent_im");
  273. $url = "https://console.tim.qq.com/v4/group_open_http_svc/modify_group_base_info";
  274. $url .= "?sdkappid=".$config["sdkappid"];
  275. $url .= "&identifier=administrator";
  276. $url .= "&usersig=".$usersig;
  277. $url .= "&random=".$random;
  278. $url .= "&contenttype=json";
  279. $tencentObj = new tencentim($url);
  280. // 获取群组信息
  281. $groupInfo = $this->getGroupInfo($party_id);
  282. if($groupInfo["GroupInfo"][0]["ErrorCode"] > 0) return false;
  283. $roomInfoData = $groupInfo["GroupInfo"][0]["AppDefinedData"];
  284. $roomInfo = [];
  285. if($roomInfoData) foreach($roomInfoData as $k => $v) {
  286. if($v["Key"] == "roomInfo") $roomInfo = $v["Value"];
  287. }
  288. $roomInfo = json_decode($roomInfo,true);
  289. // 更新的信息
  290. if(isset($roomInfo["managers"])) {
  291. if(!$roomInfo["managers"]) $roomInfo["managers"] = [];
  292. array_push($roomInfo["managers"],$manage_user_id);
  293. $roomInfo["managers"] = array_unique($roomInfo["managers"]);
  294. }
  295. $data = [];
  296. $data["GroupId"] = $party_id;
  297. $data["AppDefinedData"][0] = [
  298. "Key" => "roomInfo",
  299. "Value" => json_encode($roomInfo),
  300. // "Value" => json_encode(json_decode('{"bg":"","cover":"","isScreen":0,"managers":["14","29"],"needRequest":0,"onMode":2,"ownerId":"55","ownerName":"过户手续","pwd":"","roomName":"告白气球~满眼是✨✨","seatSize":9,"silencers":[]}',true)),
  301. ];
  302. if(isset($roomInfo["ownerId"]) && isset($roomInfo["roomName"])) {
  303. $tencentObj->toSend($data);
  304. }
  305. }
  306. /**
  307. * 强制下线
  308. */
  309. public function downSite($user_id,$groupsites) {
  310. $random = rand(10000000,99999999);
  311. $usersig = $this->usersig("administrator");
  312. // 获取配置信息
  313. $config = config("tencent_im");
  314. $url = "https://console.tim.qq.com/v4/group_open_http_svc/modify_group_base_info";
  315. $url .= "?sdkappid=".$config["sdkappid"];
  316. $url .= "&identifier=administrator";
  317. $url .= "&usersig=".$usersig;
  318. $url .= "&random=".$random;
  319. $url .= "&contenttype=json";
  320. $tencentObj = new tencentim($url);
  321. // 先更新下麦时间
  322. $update = [];
  323. $update["offsite_time"] = time();
  324. $update["status"] = 2;
  325. \app\common\model\UserOnsiteTime::update($update,["user_id"=>$user_id,"status"=>1]);
  326. // 循环房间
  327. if($groupsites) foreach($groupsites as $k => $v) {
  328. // 循环座位
  329. $data = [];
  330. foreach($v["AppDefinedData"] as $m => $n) {
  331. // 解析字段信息
  332. $siteInfo = json_decode($n["Value"],true);
  333. if($m != 0 && isset($siteInfo["status"]) && $siteInfo["status"] == 1 && isset($siteInfo["status"]) && $siteInfo["user"] == $user_id) {
  334. $data["AppDefinedData"][] = [
  335. "Key" => $n["Key"],
  336. "Value" => '{"mute":false,"status":0,"user":""}',
  337. ];
  338. }
  339. }
  340. if(!empty($data)) {
  341. $data["GroupId"] = $v["GroupId"];
  342. return $tencentObj->toSend($data);
  343. }
  344. }
  345. }
  346. /**
  347. * 踢出房间内所有用户
  348. */
  349. public function outMemberFromRoom($party_id) {
  350. if($party_id <= 0) return false;
  351. $message = [];
  352. $message["type"] = "91";
  353. $message["content"] = "房间已被管理员关闭!详情请联系客服!";
  354. $msgData = [];
  355. $msgData["version"] = "1.0";
  356. $msgData["action"] = 301;
  357. $msgData["command"] = "";
  358. $msgData["message"] = json_encode($message);
  359. $random = rand(10000000,99999999);
  360. $usersig = $this->usersig("administrator");
  361. // 获取配置信息
  362. $config = config("tencent_im");
  363. $url = "https://console.tim.qq.com/v4/group_open_http_svc/send_group_msg";
  364. $url .= "?sdkappid=".$config["sdkappid"];
  365. $url .= "&identifier=administrator";
  366. $url .= "&usersig=".$usersig;
  367. $url .= "&random=".$random;
  368. $url .= "&contenttype=json";
  369. $tencentObj = new tencentim($url);
  370. $data = [];
  371. $data["GroupId"] = $party_id;
  372. $data["Random"] = rand(1000000,9999999);
  373. $data["MsgBody"][] = [
  374. "MsgType" => "TIMCustomElem",
  375. "MsgContent" => [
  376. "Data"=> json_encode($msgData)
  377. ],
  378. ];
  379. $tencentObj->toSend($data);
  380. }
  381. /**
  382. * 获取usersig签名
  383. */
  384. public function getUsersig() {
  385. $user_id = $this->auth->id;
  386. $this->success("获取成功!",$this->usersig($user_id));
  387. }
  388. /**
  389. * 获取usersig签名-具体操作
  390. */
  391. private function usersig($user_id) {
  392. // 获取配置信息
  393. $config = config("tencent_im");
  394. $usersigObj = new getusersig($config["sdkappid"],$config["key"]);
  395. $usersig = $usersigObj->genUserSig($user_id);
  396. return $usersig;
  397. }
  398. /**
  399. * 强制下麦
  400. */
  401. public function updateSiteInfo() {
  402. $user_id = $this->request->request("user_id");// 用户ID
  403. if(!$user_id) $this->error("参数缺失!");
  404. // 更新用户在线状态为离线
  405. \app\common\model\User::update(["is_online"=>0],["id"=>$user_id]);
  406. \app\common\model\User::update(["is_live"=>0],["id"=>$user_id]);
  407. \app\common\model\Party::update(["is_online"=>0],["user_id"=>$user_id]);
  408. // 获取用户所在群信息
  409. $groupids = $this->getJoindGroupList($user_id);
  410. if($groupids["ErrorCode"] == 0) {
  411. $grouplist = $groupids["GroupIdList"];
  412. $groupsites = [];
  413. if($grouplist) foreach($grouplist as $k => $v) {
  414. // 获取群组消息
  415. $groupInfo = $this->getGroupInfo($v["GroupId"]);
  416. if($groupInfo["ErrorCode"] == 0) $groupsites[] = $groupInfo["GroupInfo"][0];
  417. // 踢出用户在线组
  418. $redis = new Redis();
  419. $redisconfig = config("redis");
  420. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  421. if ($redisconfig['redis_pwd']) {
  422. $redis->auth($redisconfig['redis_pwd']);
  423. }
  424. if($redisconfig['redis_selectdb'] > 0){
  425. $redis->select($redisconfig['redis_selectdb']);
  426. }
  427. $redis->HDel("online_".$v["GroupId"],$user_id);
  428. }
  429. // 强制下麦
  430. $this->downSite($user_id,$groupsites);
  431. }
  432. $this->success("状态更新成功!");
  433. }
  434. /**
  435. * 更新麦位前四
  436. */
  437. public function updatePosition($user_id,$party_id) {
  438. // 获取用户头像
  439. $userInfo = \app\common\model\User::field("avatar")->where(["id"=>$user_id])->find();
  440. $userAvatar = isset($userInfo["avatar"])?$userInfo["avatar"]:"";
  441. // 更新下麦时间
  442. $update = [];
  443. $update["offsite_time"] = time();
  444. $update["status"] = 2;
  445. \app\common\model\UserOnsiteTime::update($update,["user_id"=>$user_id,"status"=>1]);
  446. //
  447. $redis = new Redis();
  448. $redisconfig = config("redis");
  449. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  450. if ($redisconfig['redis_pwd']) {
  451. $redis->auth($redisconfig['redis_pwd']);
  452. }
  453. if($redisconfig['redis_selectdb'] > 0){
  454. $redis->select($redisconfig['redis_selectdb']);
  455. }
  456. $room_type = Db::name('party')->where('id',$party_id)->value('room_type');
  457. $redisData = $redis->get($room_type."_".$party_id);
  458. if(!$redisData){
  459. return true;
  460. }
  461. $partyInfo = json_decode($redisData,true);
  462. // 遍历已有头像
  463. $partyuser = isset($partyInfo["party_user"])?$partyInfo["party_user"]:"";
  464. if(is_array($partyuser)) foreach($partyuser as $k => $v) if($v === $userAvatar) unset($partyInfo["party_user"][$k]);
  465. $redis->set($room_type."_".$party_id,json_encode($partyInfo));
  466. }
  467. /**
  468. * 取消排麦
  469. */
  470. public function cancelLineUp($user_id,$party_id) {
  471. if (!$party_id || !$user_id) {
  472. return false;
  473. }
  474. $redis = new Redis();
  475. $redisconfig = config("redis");
  476. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  477. if ($redisconfig['redis_pwd']) {
  478. $redis->auth($redisconfig['redis_pwd']);
  479. }
  480. if($redisconfig['redis_selectdb'] > 0){
  481. $redis->select($redisconfig['redis_selectdb']);
  482. }
  483. $data=unserialize($redis->hGet("party_lineup",$party_id));
  484. // 更改红点排麦数量
  485. $num = 0;
  486. $send = false;
  487. if($data) foreach($data as $k => $v) {
  488. if($v["user_id"] == $user_id) {
  489. $send = true;
  490. unset($data[$k]);
  491. break;
  492. }
  493. }
  494. $redis->hSet("party_lineup",$party_id,serialize($data));
  495. if($send) {
  496. is_array($data) && $num = count($data);
  497. $random = rand(10000000,99999999);
  498. $usersig = $this->usersig("administrator");
  499. // 获取配置信息
  500. $config = config("tencent_im");
  501. $url = "https://console.tim.qq.com/v4/group_open_http_svc/send_group_msg";
  502. $url .= "?sdkappid=".$config["sdkappid"];
  503. $url .= "&identifier=administrator";
  504. $url .= "&usersig=".$usersig;
  505. $url .= "&random=".$random;
  506. $url .= "&contenttype=json";
  507. $tencentObj = new tencentim($url);
  508. $data = [];
  509. $data["GroupId"] = $party_id;
  510. $data["Random"] = rand(1000000,9999999);
  511. $message = [
  512. "message" => json_encode(["type"=>23,"content"=>$num]),
  513. "version" => "1.0",
  514. "action" => 301,
  515. "command" => ""
  516. ];
  517. $data["MsgBody"][] = [
  518. "MsgType" => "TIMCustomElem",
  519. "MsgContent" => [
  520. "Data"=> json_encode($message)
  521. ],
  522. ];
  523. $tencentObj->toSend($data);
  524. }
  525. }
  526. public function trtc_callback(){
  527. $input = file_get_contents("php://input");
  528. //filePut('start:'.$input,'callback.txt');
  529. /*$input = '{
  530. "EventGroupId": 1,
  531. "EventType": 104,
  532. "CallbackTs": 1640331295244,
  533. "EventInfo": {
  534. "RoomId": 1604,
  535. "EventTs": 1640331295,
  536. "EventMsTs": 1640331295239,
  537. "UserId": "26",
  538. "Role": 20,
  539. "Reason": 1
  540. }
  541. }';*/
  542. $input = '{
  543. "EventGroupId": 1,
  544. "EventType": 104,
  545. "CallbackTs": 1640331295244,
  546. "EventInfo": {
  547. "RoomId": 140,
  548. "EventTs": 1640331295,
  549. "EventMsTs": 1640331295239,
  550. "UserId": "179",
  551. "Role": 21,
  552. "Reason": 5
  553. }
  554. }';
  555. $input = json_decode($input,true);
  556. $roomId = $input['EventInfo']['RoomId'];
  557. //房间事件组
  558. if($input['EventGroupId'] == 1){
  559. if($input['EventType'] == 101){
  560. //创建房间,第一个进来的
  561. }elseif($input['EventType'] == 102){
  562. //解散房间,最后一个走的
  563. //没有UserId
  564. }elseif($input['EventType'] == 103){
  565. //进入房间,主播role=20 观众role=21
  566. $redis = new Redis();
  567. $redisconfig = config("redis");
  568. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  569. if ($redisconfig['redis_pwd']) {
  570. $redis->auth($redisconfig['redis_pwd']);
  571. }
  572. if($redisconfig['redis_selectdb'] > 0){
  573. $redis->select($redisconfig['redis_selectdb']);
  574. }
  575. $userId = $input['EventInfo']['UserId'];
  576. $redis->hSet("online_" . $roomId, $userId, $userId);
  577. $redis->zAdd("party_user_".$roomId,$userId,0); //新加的
  578. // 记录在线用户在房间情况
  579. $redis->hSet("livingUser",$userId,$roomId);
  580. // 更新房间在线状态
  581. $partyInfo = $redis->get("party_" . $roomId);
  582. if ($partyInfo) {
  583. $partyInfo = json_decode($partyInfo, true);
  584. if ($partyInfo["is_online"] != 1) {
  585. $partyInfo["is_online"] = 1;
  586. $redis->set("party_" . $roomId, json_encode($partyInfo));
  587. \app\common\model\Party::update(["is_online" => 1], ["id" => $roomId]);
  588. }
  589. }
  590. // 更新房间在线状态
  591. $liveInfo = $redis->get("live_" . $roomId);
  592. if ($liveInfo) {
  593. $liveInfo = json_decode($liveInfo, true);
  594. if ($input['EventInfo']['Role'] == 20) {
  595. $liveInfo["is_online"] = 1;
  596. $redis->set("live_" . $roomId, json_encode($liveInfo));
  597. \app\common\model\Party::update(["is_online" => 1], ["id" => $roomId]);
  598. $rs_user = Db::name('user')->where('id',$userId)->update(['is_live'=>1]);
  599. }
  600. }
  601. }elseif($input['EventType'] == 104){
  602. //退出房间,主播role=20 观众role=21
  603. $redis = new Redis();
  604. $redisconfig = config("redis");
  605. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  606. if ($redisconfig['redis_pwd']) {
  607. $redis->auth($redisconfig['redis_pwd']);
  608. }
  609. if($redisconfig['redis_selectdb'] > 0){
  610. $redis->select($redisconfig['redis_selectdb']);
  611. }
  612. $userId = $input['EventInfo']['UserId'];
  613. $redis->HDel("online_" . $roomId, $userId);
  614. $redis->zRem("party_user_".$roomId,$userId); //新加的
  615. // 扣除在线用户在房间情况
  616. $redis->hDel("livingUser",$userId);
  617. // 更新房间在线状态
  618. $partyInfo = $redis->get("party_" . $roomId);
  619. if ($partyInfo) {
  620. $partyInfo = json_decode($partyInfo, true);
  621. $memCount = count($redis->hGetAll("online_" . $roomId));
  622. if ($memCount <= 0) {
  623. $partyInfo["is_online"] = 0;
  624. $redis->set("party_" . $roomId, json_encode($partyInfo));
  625. \app\common\model\Party::update(["is_online" => 0], ["id" => $roomId]);
  626. }
  627. }
  628. //
  629. $liveInfo = $redis->get("live_" . $roomId);
  630. if ($liveInfo) {
  631. $liveInfo = json_decode($liveInfo, true);
  632. if($input['EventInfo']['Role'] == 20){
  633. $liveInfo["is_online"] = 0;
  634. $redis->set("live_" . $roomId, json_encode($liveInfo));
  635. \app\common\model\Party::update(["is_online" => 0], ["id" => $roomId]);
  636. $rs_user = Db::name('user')->where('id',$userId)->update(['is_live'=>0]);
  637. }
  638. }
  639. //退出房间获取房间自定义属性
  640. $tenimService = new TenimService();
  641. $imParams = ['party_id' => (string)$roomId];
  642. $imRes = $tenimService->getGroupAttr($imParams);
  643. if ($imRes['status'] == 1) {
  644. if (isset($imRes['data']) && !empty($imRes['data'])) {
  645. $imFieldArr = ['seat0','seat1','seat2','seat3','seat4','seat5','seat6','seat7','seat8','seat9'];
  646. foreach ($imRes['data'] as $imKey => &$imVal) {
  647. if (in_array($imVal['key'],$imFieldArr)) {
  648. $tempData = json_decode($imVal['value'],true);
  649. if (isset($tempData['user']) && $tempData['user'] == $userId) {
  650. $tempData['status'] = 0;
  651. $tempData['user'] = "0";
  652. }
  653. $imVal['value'] = json_encode($tempData);
  654. }
  655. }
  656. $imAttrParams = [
  657. 'party_id' => $roomId,
  658. 'party_attr' => $imRes['data'],
  659. ];
  660. $tenimService->getGroupAttrEdit($imAttrParams);
  661. }
  662. }
  663. }
  664. }elseif($input['EventGroupId'] == 2){
  665. }
  666. //结束
  667. echo json_encode(['code' => 0]);exit;
  668. }
  669. /**
  670. * 回调
  671. */
  672. public function callback() {
  673. $input = file_get_contents("php://input"); // 主题信息
  674. $input = json_decode($input,true);
  675. $CallbackCommand = $input["CallbackCommand"];
  676. switch ($CallbackCommand) {
  677. case 'State.StateChange': // 用户在线状态变更
  678. $info = $input["Info"];
  679. if($info["Action"] == "Login") { // 用户登录
  680. $loginToday = Db::name('user')->where('id',$info["To_Account"])->whereTime('onlinetime', 'today')->find();
  681. if ($loginToday){
  682. \app\common\model\User::update(["is_online"=>1,"onlinetime"=>time()],["id"=>$info["To_Account"]]);
  683. }else{
  684. \app\common\model\User::update(["is_online"=>1,"onlinetime"=>time()],["id"=>$info["To_Account"]]);
  685. }
  686. $res = [];
  687. $res["ActionStatus"] = "OK";
  688. $res["ErrorCode"] = 0;
  689. $res["ErrorInfo"] = "";
  690. echo json_encode($res);exit;
  691. } elseif($info["Action"] == "Logout" || $info["Action"] == "Disconnect") { // 用户退出 不需要管什么原因
  692. // 更新用户在线状态为离线
  693. \app\common\model\User::update(["is_online"=>0],["id"=>$info["To_Account"]]);
  694. \app\common\model\User::update(["is_live"=>0],["id"=>$info["To_Account"]]);
  695. // 获取用户在派对直播间情况信息
  696. $redis = new Redis();
  697. $redisconfig = config("redis");
  698. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  699. if ($redisconfig['redis_pwd']) {
  700. $redis->auth($redisconfig['redis_pwd']);
  701. }
  702. if($redisconfig['redis_selectdb'] > 0){
  703. $redis->select($redisconfig['redis_selectdb']);
  704. }
  705. $livingUserPartyId = $redis->hGet("livingUser", $info["To_Account"]);
  706. if ($livingUserPartyId) {
  707. // 扣除在线用户在房间情况
  708. $redis->hDel("livingUser", $info["To_Account"]);
  709. $redis->HDel("online_" . $livingUserPartyId, $info["To_Account"]);
  710. $redis->zRem("party_user_".$livingUserPartyId,$info["To_Account"]); //新加的
  711. }
  712. // 获取用户所在群信息
  713. $groupids = $this->getJoindGroupList($info["To_Account"]);
  714. // \app\common\model\Test::update(["content"=>json_encode($groupids)],["id"=>1]);
  715. if($groupids["ErrorCode"] == 0) {
  716. $grouplist = $groupids["GroupIdList"];
  717. $groupsites = [];
  718. if($grouplist) foreach($grouplist as $k => $v) {
  719. // 获取群组消息
  720. $groupInfo = $this->getGroupInfo($v["GroupId"]);
  721. if($groupInfo["ErrorCode"] == 0) $groupsites[] = $groupInfo["GroupInfo"][0];
  722. // 踢出用户在线组
  723. $redis = new Redis();
  724. $redisconfig = config("redis");
  725. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  726. if ($redisconfig['redis_pwd']) {
  727. $redis->auth($redisconfig['redis_pwd']);
  728. }
  729. if($redisconfig['redis_selectdb'] > 0){
  730. $redis->select($redisconfig['redis_selectdb']);
  731. }
  732. $redis->HDel("online_".$v["GroupId"],$info["To_Account"]);
  733. $redis->zRem("party_user_".$v["GroupId"],$info["To_Account"]); //新加的
  734. // 更新麦位前四
  735. $this->updatePosition($info["To_Account"],$v["GroupId"]);
  736. // 取消排麦
  737. $this->cancelLineup($info["To_Account"],$v["GroupId"]);
  738. // 房间状态变更
  739. $partyInfo = $redis->get("party_".$v["GroupId"]);
  740. if($partyInfo) {
  741. $partyInfo = json_decode($partyInfo,true);
  742. $memCount = count($redis->hGetAll("online_".$v["GroupId"]));
  743. if($memCount <= 0) {
  744. $partyInfo["is_online"] = 0;
  745. $redis->set("party_".$v["GroupId"],json_encode($partyInfo));
  746. \app\common\model\Party::update(["is_online"=>0],["id"=>$v["GroupId"]]);
  747. }
  748. }
  749. $liveInfo = $redis->get("live_".$v["GroupId"]);
  750. if($liveInfo) {
  751. $liveInfo = json_decode($liveInfo,true);
  752. $memCount = count($redis->hGetAll("online_".$v["GroupId"]));
  753. if($memCount <= 0) {
  754. $liveInfo["is_online"] = 0;
  755. $redis->set("live_".$v["GroupId"],json_encode($liveInfo));
  756. \app\common\model\Party::update(["is_online"=>0],["id"=>$v["GroupId"]]);
  757. }
  758. }
  759. }
  760. // 强制下麦
  761. print_r($this->downSite($info["To_Account"],$groupsites));
  762. }
  763. }
  764. break;
  765. /*case 'Group.CallbackAfterNewMemberJoin': // 新成员入群
  766. $redis = new Redis();
  767. $redisconfig = config("redis");
  768. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  769. if ($redisconfig['redis_pwd']) {
  770. $redis->auth($redisconfig['redis_pwd']);
  771. }
  772. if($redisconfig['redis_selectdb'] > 0){
  773. $redis->select($redisconfig['redis_selectdb']);
  774. }
  775. $members = $input["NewMemberList"];
  776. if($members) foreach($members as $k => $v) {
  777. $redis->hSet("online_".$input["GroupId"],$v["Member_Account"],$v["Member_Account"]);
  778. // 更新房间在线状态
  779. $party_id = $input["GroupId"];
  780. $partyInfo = $redis->get("party_".$party_id);
  781. if($partyInfo) {
  782. $partyInfo = json_decode($partyInfo,true);
  783. if($partyInfo["is_online"] != 1) {
  784. $partyInfo["is_online"] = 1;
  785. $redis->set("party_".$party_id,json_encode($partyInfo));
  786. \app\common\model\Party::update(["is_online"=>1],["id"=>$party_id]);
  787. }
  788. }
  789. }
  790. $res = [];
  791. $res["ActionStatus"] = "OK";
  792. $res["ErrorCode"] = 0;
  793. $res["ErrorInfo"] = "";
  794. echo json_encode($res);
  795. break;*/
  796. /*case 'Group.CallbackAfterMemberExit': // 成员离开
  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. $members = $input["ExitMemberList"];
  807. if($members) foreach($members as $k => $v) {
  808. $redis->HDel("online_".$input["GroupId"],$v["Member_Account"]);
  809. }
  810. // 更新房间在线状态
  811. $party_id = $input["GroupId"];
  812. $partyInfo = $redis->get("party_".$party_id);
  813. if($partyInfo) {
  814. $partyInfo = json_decode($partyInfo,true);
  815. $memCount = count($redis->hGetAll("online_".$party_id));
  816. if($memCount <= 0) {
  817. $partyInfo["is_online"] = 0;
  818. $redis->set("party_".$party_id,json_encode($partyInfo));
  819. \app\common\model\Party::update(["is_online"=>0],["id"=>$party_id]);
  820. }
  821. }
  822. $liveInfo = $redis->get("live_".$party_id);
  823. if($liveInfo) {
  824. $liveInfo = json_decode($liveInfo,true);
  825. $memCount = count($redis->hGetAll("online_".$party_id));
  826. if($memCount <= 0) {
  827. $liveInfo["is_online"] = 0;
  828. $redis->set("live_".$party_id,json_encode($liveInfo));
  829. \app\common\model\Party::update(["is_online"=>0],["id"=>$party_id]);
  830. }
  831. }
  832. $res = [];
  833. $res["ActionStatus"] = "OK";
  834. $res["ErrorCode"] = 0;
  835. $res["ErrorInfo"] = "";
  836. echo json_encode($res);
  837. break;*/
  838. /* case 'Group.CallbackBeforeSendMsg': // 群内发送消息之前
  839. $config = config("wxMiniProgram");
  840. $access_token_url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$config["appid"]."&secret=".$config["secret"];
  841. $access_token_arr = $this->getJson($access_token_url);
  842. $access_token = isset($access_token_arr["access_token"])?$access_token_arr["access_token"]:"";
  843. if(!$access_token) {
  844. $res = [];
  845. $res["ActionStatus"] = "OK";
  846. $res["ErrorInfo"] = "";
  847. $res["ErrorCode"] = 0;
  848. echo json_encode($res);
  849. break;
  850. }
  851. // \app\common\model\Test::update(["content"=>json_encode($access_token)],["id"=>1]);
  852. $infoMessage = $input["MsgBody"];
  853. $badMessage = false;
  854. if($infoMessage) foreach($infoMessage as $k => $v) {
  855. if(isset($v["MsgContent"]["Text"])) {
  856. $message = json_decode($v["MsgContent"]["Text"],true);
  857. $content = isset($message["content"])?$message["content"]:"";
  858. $message_check_url ='https://api.weixin.qq.com/wxa/msg_sec_check?access_token='.$access_token;
  859. $tencentObj = new tencentim($message_check_url);
  860. $content_json = '{"content": "'.$content.'"}';
  861. $body = $tencentObj->messageCheck($content_json);
  862. if($body["errcode"] == 87014) {
  863. // \app\common\model\Test::update(["content"=>$body["errcode"]],["id"=>1]);
  864. // $res = [];
  865. // $res["ActionStatus"] = "OK";
  866. // $res["ErrorInfo"] = "检测到敏感词汇!";
  867. // $res["ErrorCode"] = 1;
  868. // echo json_encode($res);exit;
  869. $message["content"] = "*******";
  870. $infoMessage[$k]["MsgContent"]["Text"] = json_encode($message);
  871. $badMessage = true;
  872. }
  873. }
  874. }
  875. if($badMessage) {
  876. $res = [];
  877. $res["ActionStatus"] = "OK";
  878. $res["ErrorInfo"] = "检测到敏感词汇!";
  879. $res["ErrorCode"] = 10102;
  880. $res["MsgBody"] = $infoMessage;
  881. } else {
  882. $res = [];
  883. $res["ActionStatus"] = "OK";
  884. $res["ErrorInfo"] = "";
  885. $res["ErrorCode"] = 0;
  886. }
  887. // \app\common\model\Test::update(["content"=>json_encode($res)],["id"=>1]);
  888. echo json_encode($res);exit;
  889. break;*/
  890. default:
  891. break;
  892. }
  893. exit;
  894. }
  895. private function getJson($url){
  896. $ch = curl_init();
  897. curl_setopt($ch, CURLOPT_URL, $url);
  898. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  899. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  900. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  901. $output = curl_exec($ch);
  902. curl_close($ch);
  903. return json_decode($output, true);
  904. }
  905. /**
  906. * 发送消息给某人
  907. */
  908. public function sendMessageToUser($from_user,$to_user,$message) {
  909. // $from_user = 54;
  910. // $to_user = 6;
  911. // $message = "sdsd";
  912. $random = rand(10000000,99999999);
  913. $usersig = $this->usersig("administrator");
  914. // 获取配置信息
  915. $config = config("tencent_im");
  916. $url = "https://console.tim.qq.com/v4/openim/sendmsg";
  917. $url .= "?sdkappid=".$config["sdkappid"];
  918. $url .= "&identifier=administrator";
  919. $url .= "&usersig=".$usersig;
  920. $url .= "&random=".$random;
  921. $url .= "&contenttype=json";
  922. $tencentObj = new tencentim($url);
  923. $data = [];
  924. $data["SyncOtherMachine"] = 1;
  925. $data["From_Account"] = (string)$from_user;
  926. $data["To_Account"] = (string)$to_user;
  927. $data["MsgRandom"] = rand(1000000,9999999);
  928. $data["MsgTimeStamp"] = time();
  929. $data["MsgBody"][] = [
  930. "MsgType" => "TIMTextElem",
  931. "MsgContent" => [
  932. "Text"=> $message
  933. ],
  934. ];
  935. $tencentObj->toSend($data);
  936. }
  937. /**
  938. * 发送消息给某人-接口调用
  939. */
  940. public function sendToUser() {
  941. $from_user = $this->request->request("from_user");// 发送者
  942. $to_user = $this->request->request("to_user");// 接收者
  943. $message = $this->request->request("message");// 接收者
  944. if(!$from_user || !$to_user || !$message) $this->error("参数缺失!");
  945. $this->sendMessageToUser($from_user,$to_user,$message);
  946. }
  947. //请求的基础参数
  948. private function baseTencentObj($url)
  949. {
  950. $random = rand(10000000,99999999);
  951. $usersig = $this->usersig("administrator");
  952. // 获取配置信息
  953. $config = config("tencent_im");
  954. $url = "$url";
  955. $url .= "?sdkappid=".$config["sdkappid"];
  956. $url .= "&identifier=administrator";
  957. $url .= "&usersig=".$usersig;
  958. $url .= "&random=".$random;
  959. $url .= "&contenttype=json";
  960. return new tencentim($url);
  961. }
  962. /** 设置管理员(im端的改变)
  963. * @param $user_id
  964. * @param $party_id
  965. * @param int $status 1:yes 0:no
  966. * @return array|false|mixed
  967. */
  968. public function setUpIMAdmin($user_id, $party_id, int $status=0) {
  969. $url = "https://console.tim.qq.com/v4/group_open_http_svc/modify_group_member_info";
  970. $tencentObj = $this->baseTencentObj($url);
  971. $groupInfo = $this->getGroupInfo($party_id);
  972. if($groupInfo["GroupInfo"][0]["ErrorCode"] > 0) return false;
  973. // 更新的信息
  974. $data = [];
  975. $data["GroupId"] = $party_id;
  976. if ($status==1){
  977. $data['Role'] = 'Admin';
  978. }else{
  979. $data['Role'] = 'Member';
  980. }
  981. $data['Member_Account'] = $user_id;
  982. return $tencentObj->toSend($data);
  983. }
  984. //获取群成员详细资料(目前没用到)
  985. private function getGroupMemberDetails($party_id)
  986. {
  987. $url = "https://console.tim.qq.com/v4/group_open_http_svc/get_group_member_info";
  988. $tencentObj = $this->baseTencentObj($url);
  989. // 获取群组信息
  990. $groupInfo = $this->getGroupInfo($party_id);
  991. if($groupInfo["GroupInfo"][0]["ErrorCode"] > 0) return false;
  992. // 更新的信息
  993. $data = [];
  994. $data["GroupId"] = $party_id;
  995. return $tencentObj->toSend($data);
  996. }
  997. //IM管理员维护,同步本地管理员
  998. public function imAdminMaintenance()
  999. {
  1000. $partyIds = \app\admin\model\party\Party::column('id');
  1001. foreach ($partyIds as $party_id){
  1002. $groupInfo = $this->getGroupInfo($party_id);
  1003. if($groupInfo["GroupInfo"][0]["ErrorCode"] > 0) continue;
  1004. $roomInfoData = $groupInfo["GroupInfo"][0]["AppDefinedData"];
  1005. $roomInfo = [];
  1006. if($roomInfoData) foreach($roomInfoData as $k => $v) {
  1007. if($v["Key"] == "roomInfo") $roomInfo = $v["Value"];
  1008. }
  1009. $roomInfo = json_decode($roomInfo,true);
  1010. // 更新管理员
  1011. if(isset($roomInfo["managers"]) && !empty($roomInfo['managers'])) {
  1012. foreach ($roomInfo['managers'] as $v){
  1013. $this->setUpIMAdmin($v,$party_id,1);
  1014. }
  1015. }
  1016. }
  1017. $this->success("成功!");
  1018. }
  1019. /**
  1020. * 获取用户在线更新
  1021. */
  1022. public function autoUserLine() {
  1023. $random = rand(10000000,99999999);
  1024. $usersig = $this->usersig("administrator");
  1025. // 获取配置信息
  1026. $config = config("tencent_im");
  1027. $url = "https://console.tim.qq.com/v4/openim/query_online_status";
  1028. $url .= "?sdkappid=".$config["sdkappid"];
  1029. $url .= "&identifier=administrator";
  1030. $url .= "&usersig=".$usersig;
  1031. $url .= "&random=".$random;
  1032. $url .= "&contenttype=json";
  1033. $tencentObj = new tencentim($url);
  1034. // 获取用户
  1035. $where = [];
  1036. $userData = model('User')->field('id')->where($where)->order('id asc')->select();
  1037. $userArr = array_column($userData,'id');
  1038. $data = [];
  1039. $data["To_Account"] = $userArr;
  1040. $result = [];
  1041. if(!empty($data)) {
  1042. $result = $tencentObj->toSend($data);
  1043. if (isset($result['ActionStatus']) && $result['ActionStatus'] == 'OK') {
  1044. if (isset($result['ErrorList'])) {//没有人员
  1045. unset($result['ErrorList']);
  1046. /*foreach ($result['ErrorList'] as $errKey => $errVal) {
  1047. $userError[] = $errVal['To_Account'];
  1048. }*/
  1049. }
  1050. if (isset($result['QueryResult'])) {
  1051. $userOnline = $userOffline=[];
  1052. foreach ($result['QueryResult'] as $key => $value) {
  1053. if (in_array($value['Status'],['Online','PushOnline'])) {//在线(前台在线和后台在线)
  1054. $userOnline[] = intval($value['To_Account']);
  1055. } else {//离线
  1056. $userOffline[] = intval($value['To_Account']);
  1057. }
  1058. }
  1059. if (!empty($userOnline)) {//处理在线
  1060. $onlineWhere['id'] = ['in',$userOnline];
  1061. $onlineWhere['is_online'] = 0;
  1062. model('User')->where($onlineWhere)->update(['is_online'=>1]);
  1063. }
  1064. if (!empty($userOffline)) {//处理离线
  1065. $offlineWhere['id'] = ['in',$userOffline];
  1066. $offlineWhere['is_online'] = 1;
  1067. model('User')->where($offlineWhere)->update(['is_online'=>0]);
  1068. }
  1069. }
  1070. }
  1071. }
  1072. $this->success('操作成功');
  1073. }
  1074. /**
  1075. * 获取房间用户
  1076. */
  1077. public function getRoomUser() {
  1078. $partyIds = $this->request->param('party_ids','');
  1079. if (!empty($partyIds)) {
  1080. $partyIds = explode(',',$partyIds);
  1081. }
  1082. $random = rand(10000000,99999999);
  1083. $usersig = $this->usersig("administrator");
  1084. // 获取配置信息
  1085. $config = config("tencent_im");
  1086. $url = "https://console.tim.qq.com/v4/group_open_avchatroom_http_svc/get_members";
  1087. $url .= "?sdkappid=".$config["sdkappid"];
  1088. $url .= "&identifier=administrator";
  1089. $url .= "&usersig=".$usersig;
  1090. $url .= "&random=".$random;
  1091. $url .= "&contenttype=json";
  1092. $tencentObj = new tencentim($url);
  1093. //获取用户 ["57","62","63","105","106","107","108","109","116","119"]
  1094. $partyArr = $partyIds;
  1095. $memberList = [];
  1096. if(!empty($partyArr)) {
  1097. foreach ($partyArr as $key => $value) {
  1098. $data["GroupId"] = $value;
  1099. $result = $tencentObj->toSend($data);
  1100. if (isset($result['ActionStatus']) && $result['ActionStatus'] == 'OK') {
  1101. if (isset($result['MemberList']) && !empty($result['MemberList'])) {
  1102. foreach ($result['MemberList'] as $ukey => $uval) {
  1103. $memberList[$value]['member_list'][] = [
  1104. 'avatar' => $uval['Avatar'],
  1105. 'user_id'=> $uval['Member_Account'],
  1106. 'nickname' => $uval['NickName'],
  1107. ];
  1108. }
  1109. $memberList[$value]['online_num'] = count($memberList[$value]['member_list']);
  1110. }
  1111. }
  1112. }
  1113. }
  1114. $result = $memberList;
  1115. $this->success('操作成功',$result);
  1116. }
  1117. /**
  1118. * 获取房间用户
  1119. */
  1120. public function getGroupAttr() {
  1121. $partyId = $this->request->param('party_id','');
  1122. if (!empty($partyIds)) {
  1123. $this->error('参数错误');
  1124. }
  1125. $random = rand(10000000,99999999);
  1126. $usersig = $this->usersig("administrator");
  1127. // 获取配置信息
  1128. $config = config("tencent_im");
  1129. $url = "https://console.tim.qq.com/v4/group_open_attr_http_svc/get_group_attr";
  1130. $url .= "?sdkappid=".$config["sdkappid"];
  1131. $url .= "&identifier=administrator";
  1132. $url .= "&usersig=".$usersig;
  1133. $url .= "&random=".$random;
  1134. $url .= "&contenttype=json";
  1135. $tencentObj = new tencentim($url);
  1136. $result = [];
  1137. if(!empty($partyId)) {
  1138. $data["GroupId"] = $partyId;
  1139. $result = $tencentObj->toSend($data);
  1140. }
  1141. $this->success('操作成功',$result);
  1142. }
  1143. }