Tenim.php 42 KB

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