Tenim.php 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794
  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. protected $noNeedRight = ['*'];
  16. public function test() {
  17. $groupinfo = $this->getGroupInfo("112");
  18. print_r($groupinfo);
  19. exit;
  20. // 获取所有派对信息
  21. $partyList = \app\common\model\Party::field("id,user_id,party_name")->where(["status"=>1])->order("id","asc")->select();
  22. foreach($partyList as $k => $v) {
  23. if($k>=140 && $k<180) {
  24. $groupinfo = $this->getGroupInfo((string)$v["id"]);
  25. print_r($groupinfo);
  26. // $groupinfo = json_encode($groupinfo);
  27. // Db::table("hx_aaaa")->insert(["party_id"=>$v["id"],"user_id"=>$v["user_id"],"party_name"=>$v["party_name"],"json"=>$groupinfo]);
  28. }
  29. }
  30. exit;
  31. // $this->success("",$partyList);
  32. }
  33. /**
  34. * 创建im群组
  35. */
  36. public function createIMGroup() {
  37. $random = rand(10000000,99999999);
  38. $usersig = $this->usersig("administrator");
  39. // 获取配置信息
  40. $config = config("tencent_im");
  41. $url = "https://console.tim.qq.com/v4/group_open_http_svc/create_group";
  42. $url .= "?sdkappid=".$config["sdkappid"];
  43. $url .= "&identifier=administrator";
  44. $url .= "&usersig=".$usersig;
  45. $url .= "&random==".$random;
  46. $url .= "&contenttype=json";
  47. $tencentObj = new tencentim($url);
  48. // 获取群im信息
  49. $imInfo = Db::table("hx_aaaa")->where(["party_id"=>112])->select();
  50. if($imInfo) foreach($imInfo as $k => $v) {
  51. // if($k>=160 && $k<200) {
  52. $grouparr = json_decode($v["json"], true);
  53. $grouparr = $grouparr["GroupInfo"][0];
  54. $AppDefinedData = $grouparr["AppDefinedData"];
  55. $data = [];
  56. $data["Owner_Account"] = (string)$v["user_id"];
  57. $data["Type"] = "AVChatRoom";
  58. $data["GroupId"] = (string)$v["party_id"];
  59. $data["Name"] = $this->substr((string)$v["party_name"],0,7);
  60. $AppDefinedDataNew = [
  61. [
  62. "Key" => "roomInfo",
  63. "Value" => "sssssss"
  64. ],
  65. [
  66. "Key" => "seat0",
  67. "Value" => '{"mute":false,"status":0,"user":""}'
  68. ],
  69. [
  70. "Key" => "seat1",
  71. "Value" => $AppDefinedData[2]["Value"]
  72. ],
  73. [
  74. "Key" => "seat2",
  75. "Value" => $AppDefinedData[3]["Value"]
  76. ],
  77. [
  78. "Key" => "seat3",
  79. "Value" => $AppDefinedData[4]["Value"]
  80. ],
  81. [
  82. "Key" => "seat4",
  83. "Value" => $AppDefinedData[5]["Value"]
  84. ],
  85. [
  86. "Key" => "seat5",
  87. "Value" => $AppDefinedData[6]["Value"]
  88. ],
  89. [
  90. "Key" => "seat6",
  91. "Value" => $AppDefinedData[7]["Value"]
  92. ],
  93. [
  94. "Key" => "seat7",
  95. "Value" => $AppDefinedData[8]["Value"]
  96. ],
  97. [
  98. "Key" => "seat8",
  99. "Value" => $AppDefinedData[9]["Value"]
  100. ]
  101. ];
  102. $data["AppDefinedData"] = json_encode($AppDefinedDataNew);
  103. $groupInfo = $tencentObj->toSend($data);
  104. if($groupInfo["ActionStatus"] != 'OK') {
  105. echo $v["party_id"];
  106. break;
  107. }
  108. // }
  109. }
  110. print_r($groupInfo);exit;
  111. }
  112. public function substr(string $string, int $start, int $length = null): string
  113. {
  114. return mb_substr($string, $start, $length, 'UTF-8');
  115. }
  116. /**
  117. * 更新房间信息
  118. */
  119. public function updateRoomInfo() {
  120. $random = rand(10000000, 99999999);
  121. $usersig = $this->usersig("administrator");
  122. // 获取配置信息
  123. $config = config("tencent_im");
  124. $url = "https://console.tim.qq.com/v4/group_open_http_svc/modify_group_base_info";
  125. $url .= "?sdkappid=" . $config["sdkappid"];
  126. $url .= "&identifier=administrator";
  127. $url .= "&usersig=" . $usersig;
  128. $url .= "&random=" . $random;
  129. $url .= "&contenttype=json";
  130. $tencentObj = new tencentim($url);
  131. // 获取群im信息
  132. $imInfo = Db::table("hx_aaaa")->select();
  133. if($imInfo) foreach($imInfo as $k => $v) {
  134. if($k>=120 && $k<180) {
  135. $grouparr = json_decode($v["json"], true);
  136. $groupsites = $grouparr["GroupInfo"];
  137. // 循环房间
  138. if ($groupsites) foreach ($groupsites as $k => $v) {
  139. // 循环座位
  140. $data = [];
  141. foreach ($v["AppDefinedData"] as $m => $n) {
  142. // 解析字段信息
  143. $siteInfo = json_decode($n["Value"], true);
  144. $data["AppDefinedData"][] = [
  145. "Key" => $n["Key"],
  146. "Value" => $n["Value"],
  147. ];
  148. }
  149. if (!empty($data)) {
  150. $data["GroupId"] = $v["GroupId"];
  151. $res = $tencentObj->toSend($data);
  152. } else {
  153. echo "error!";
  154. break;
  155. }
  156. }
  157. }
  158. }
  159. print_r($res);
  160. exit;
  161. }
  162. /**
  163. * 获取群组信息
  164. */
  165. public function getGroupInfo($party_id) {
  166. $random = rand(10000000,99999999);
  167. $usersig = $this->usersig("administrator");
  168. // 获取配置信息
  169. $config = config("tencent_im");
  170. $url = "https://console.tim.qq.com/v4/group_open_http_svc/get_group_info";
  171. $url .= "?sdkappid=".$config["sdkappid"];
  172. $url .= "&identifier=administrator";
  173. $url .= "&usersig=".$usersig;
  174. $url .= "&random==".$random;
  175. $url .= "&contenttype=json";
  176. $tencentObj = new tencentim($url);
  177. $data = [];
  178. $data["GroupIdList"] = [$party_id];
  179. $data["ResponseFilter"] = ["AppDefinedDataFilter_Group"=>[]];
  180. $groupInfo = $tencentObj->toSend($data);
  181. return $groupInfo;
  182. }
  183. /**
  184. * 获取用户所加入的群组
  185. */
  186. public function getJoindGroupList($user_id) {
  187. $random = rand(10000000,99999999);
  188. $usersig = $this->usersig("administrator");
  189. // 获取配置信息
  190. $config = config("tencent_im");
  191. $url = "https://console.tim.qq.com/v4/group_open_http_svc/get_joined_group_list";
  192. $url .= "?sdkappid=".$config["sdkappid"];
  193. $url .= "&identifier=administrator";
  194. $url .= "&usersig=".$usersig;
  195. $url .= "&random=".$random;
  196. $url .= "&contenttype=json";
  197. $tencentObj = new tencentim($url);
  198. $data = [];
  199. $data["Member_Account"] = $user_id;
  200. $data["WithHugeGroups"] = 1;
  201. $data["GroupType"] = 'AVChatRoom';
  202. $data["ResponseFilter"] = ["GroupBaseInfoFilter" => ['GroupId'] ];
  203. $groupInfo = $tencentObj->toSend($data);
  204. // \app\common\model\Test::update(["content"=>json_encode($groupInfo)],["id"=>1]);
  205. return $groupInfo;
  206. }
  207. //"https:\/\/console.tim.qq.com\/v4\/group_open_http_svc\/get_joined_group_list?sdkappid=1400458032&identifier=administrator&usersig=eJyrVgrxCdYrSy1SslIy0jNQ0gHzM1NS80oy0zLBwqamUNHilOzEgoLMFCUrQxMDAxNTCwNjI4hMakVBZlEqUNzU1NTIwMAAIlqSmQsSMzO0MDY0NDOwhJqSmQ40NNwowsvMzzXKw8wsLNIwRr9S28giPKjMPSkpKLPcLcfFPd3TO7swz9fXOdLTVqkWADrXLzo_&random=73931990&contenttype=json"
  208. // /**
  209. // * 删除群成员
  210. // */
  211. // public function delMemberFromGroup($user_id,$party_id) {
  212. // $random = rand(10000000,99999999);
  213. // $usersig = $this->usersig($user_id);
  214. // // 获取配置信息
  215. // $config = config("tencent_im");
  216. // $url = "https://console.tim.qq.com/v4/group_open_http_svc/delete_group_member";
  217. // $url .= "?sdkappid=".$config["sdkappid"];
  218. // $url .= "&identifier=administrator";
  219. // $url .= "&usersig=".$usersig;
  220. // $url .= "&random=".$random;
  221. // $url .= "&contenttype=json";
  222. // $tencentObj = new tencentim($url);
  223. // $data = [];
  224. // $data["GroupId"] = $party_id;
  225. // $data["Silence"] = 1;
  226. // $data["MemberToDel_Account"] = [$user_id];
  227. // $res = $tencentObj->toSend($data);
  228. // \app\common\model\Test::update(["content"=>json_encode($res)],["id"=>1]);
  229. // return $res;
  230. // }
  231. /**
  232. * 设置管理员
  233. */
  234. public function setImManage($manage_user_id,$party_id) {
  235. // $manage_user_id = "2";
  236. // $party_id = "6";
  237. $random = rand(10000000,99999999);
  238. $usersig = $this->usersig("administrator");
  239. // 获取配置信息
  240. $config = config("tencent_im");
  241. $url = "https://console.tim.qq.com/v4/group_open_http_svc/modify_group_base_info";
  242. $url .= "?sdkappid=".$config["sdkappid"];
  243. $url .= "&identifier=administrator";
  244. $url .= "&usersig=".$usersig;
  245. $url .= "&random=".$random;
  246. $url .= "&contenttype=json";
  247. $tencentObj = new tencentim($url);
  248. // 获取群组信息
  249. $groupInfo = $this->getGroupInfo($party_id);
  250. if($groupInfo["GroupInfo"][0]["ErrorCode"] > 0) return false;
  251. $roomInfoData = $groupInfo["GroupInfo"][0]["AppDefinedData"];
  252. $roomInfo = [];
  253. if($roomInfoData) foreach($roomInfoData as $k => $v) {
  254. if($v["Key"] == "roomInfo") $roomInfo = $v["Value"];
  255. }
  256. $roomInfo = json_decode($roomInfo,true);
  257. // 更新的信息
  258. if(isset($roomInfo["managers"])) {
  259. if(!$roomInfo["managers"]) $roomInfo["managers"] = [];
  260. array_push($roomInfo["managers"],$manage_user_id);
  261. $roomInfo["managers"] = array_unique($roomInfo["managers"]);
  262. }
  263. $data = [];
  264. $data["GroupId"] = $party_id;
  265. $data["AppDefinedData"][0] = [
  266. "Key" => "roomInfo",
  267. "Value" => json_encode($roomInfo),
  268. // "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)),
  269. ];
  270. if(isset($roomInfo["ownerId"]) && isset($roomInfo["roomName"])) {
  271. $tencentObj->toSend($data);
  272. }
  273. }
  274. /**
  275. * 强制下线
  276. */
  277. public function downSite($user_id,$groupsites) {
  278. $random = rand(10000000,99999999);
  279. $usersig = $this->usersig("administrator");
  280. // 获取配置信息
  281. $config = config("tencent_im");
  282. $url = "https://console.tim.qq.com/v4/group_open_http_svc/modify_group_base_info";
  283. $url .= "?sdkappid=".$config["sdkappid"];
  284. $url .= "&identifier=administrator";
  285. $url .= "&usersig=".$usersig;
  286. $url .= "&random=".$random;
  287. $url .= "&contenttype=json";
  288. $tencentObj = new tencentim($url);
  289. // 先更新下麦时间
  290. $update = [];
  291. $update["offsite_time"] = time();
  292. $update["status"] = 2;
  293. \app\common\model\UserOnsiteTime::update($update,["user_id"=>$user_id,"status"=>1]);
  294. // 循环房间
  295. if($groupsites) foreach($groupsites as $k => $v) {
  296. // 循环座位
  297. $data = [];
  298. foreach($v["AppDefinedData"] as $m => $n) {
  299. // 解析字段信息
  300. $siteInfo = json_decode($n["Value"],true);
  301. if($m != 0 && isset($siteInfo["status"]) && $siteInfo["status"] == 1 && isset($siteInfo["status"]) && $siteInfo["user"] == $user_id) {
  302. $data["AppDefinedData"][] = [
  303. "Key" => $n["Key"],
  304. "Value" => '{"mute":false,"status":0,"user":""}',
  305. ];
  306. }
  307. }
  308. if(!empty($data)) {
  309. $data["GroupId"] = $v["GroupId"];
  310. return $tencentObj->toSend($data);
  311. }
  312. }
  313. }
  314. /**
  315. * 踢出房间内所有用户
  316. */
  317. public function outMemberFromRoom($party_id) {
  318. if($party_id <= 0) return false;
  319. $message = [];
  320. $message["type"] = "91";
  321. $message["content"] = "房间已被管理员关闭!详情请联系客服!";
  322. $msgData = [];
  323. $msgData["version"] = "1.0";
  324. $msgData["action"] = 301;
  325. $msgData["command"] = "";
  326. $msgData["message"] = json_encode($message);
  327. $random = rand(10000000,99999999);
  328. $usersig = $this->usersig("administrator");
  329. // 获取配置信息
  330. $config = config("tencent_im");
  331. $url = "https://console.tim.qq.com/v4/group_open_http_svc/send_group_msg";
  332. $url .= "?sdkappid=".$config["sdkappid"];
  333. $url .= "&identifier=administrator";
  334. $url .= "&usersig=".$usersig;
  335. $url .= "&random=".$random;
  336. $url .= "&contenttype=json";
  337. $tencentObj = new tencentim($url);
  338. $data = [];
  339. $data["GroupId"] = $party_id;
  340. $data["Random"] = rand(1000000,9999999);
  341. $data["MsgBody"][] = [
  342. "MsgType" => "TIMCustomElem",
  343. "MsgContent" => [
  344. "Data"=> json_encode($msgData)
  345. ],
  346. ];
  347. $tencentObj->toSend($data);
  348. }
  349. /**
  350. * 获取usersig签名
  351. */
  352. public function getUsersig() {
  353. $user_id = $this->auth->id;
  354. $this->success("获取成功!",$this->usersig($user_id));
  355. }
  356. /**
  357. * 获取usersig签名-具体操作
  358. */
  359. private function usersig($user_id) {
  360. // 获取配置信息
  361. $config = config("tencent_im");
  362. $usersigObj = new getusersig($config["sdkappid"],$config["key"]);
  363. $usersig = $usersigObj->genUserSig($user_id);
  364. return $usersig;
  365. }
  366. /**
  367. * 强制下麦
  368. */
  369. public function updateSiteInfo() {
  370. $user_id = $this->request->request("user_id");// 用户ID
  371. if(!$user_id) $this->error("参数缺失!");
  372. // 更新用户在线状态为离线
  373. \app\common\model\User::update(["is_online"=>0],["id"=>$user_id]);
  374. \app\common\model\User::update(["is_live"=>0],["id"=>$user_id]);
  375. \app\common\model\Party::update(["is_online"=>0],["user_id"=>$user_id]);
  376. // 获取用户所在群信息
  377. $groupids = $this->getJoindGroupList($user_id);
  378. if($groupids["ErrorCode"] == 0) {
  379. $grouplist = $groupids["GroupIdList"];
  380. $groupsites = [];
  381. if($grouplist) foreach($grouplist as $k => $v) {
  382. // 获取群组消息
  383. $groupInfo = $this->getGroupInfo($v["GroupId"]);
  384. if($groupInfo["ErrorCode"] == 0) $groupsites[] = $groupInfo["GroupInfo"][0];
  385. // 踢出用户在线组
  386. $redis = new Redis();
  387. $redisconfig = config("redis");
  388. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  389. $redis->HDel("online_".$v["GroupId"],$user_id);
  390. }
  391. // 强制下麦
  392. $this->downSite($user_id,$groupsites);
  393. }
  394. $this->success("状态更新成功!");
  395. }
  396. /**
  397. * 更新麦位前四
  398. */
  399. public function updatePosition($user_id,$party_id) {
  400. // 获取用户头像
  401. $userInfo = \app\common\model\User::field("avatar")->where(["id"=>$user_id])->find();
  402. $userAvatar = isset($userInfo["avatar"])?$userInfo["avatar"]:"";
  403. $redis = new Redis();
  404. $redisconfig = config("redis");
  405. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  406. $redisData = $redis->get("party_".$party_id);
  407. if(!$redisData) {
  408. return true;
  409. }
  410. $partyInfo = json_decode($redisData,true);
  411. // 遍历已有头像
  412. $partyuser = isset($partyInfo["party_user"])?$partyInfo["party_user"]:"";
  413. if(is_array($partyuser)) foreach($partyuser as $k => $v) if($v === $userAvatar) unset($partyInfo["party_user"][$k]);
  414. $redis->set("party_".$party_id,json_encode($partyInfo));
  415. }
  416. /**
  417. * 取消排麦
  418. */
  419. public function cancelLineUp($user_id,$party_id) {
  420. if (!$party_id || !$user_id) {
  421. return false;
  422. }
  423. $redis = new Redis();
  424. $redisconfig = config("redis");
  425. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  426. $data=unserialize($redis->hGet("party_lineup",$party_id));
  427. // 更改红点排麦数量
  428. $num = 0;
  429. $send = false;
  430. if($data) foreach($data as $k => $v) {
  431. if($v["user_id"] == $user_id) {
  432. $send = true;
  433. unset($data[$k]);
  434. break;
  435. }
  436. }
  437. $redis->hSet("party_lineup",$party_id,serialize($data));
  438. if($send) {
  439. is_array($data) && $num = count($data);
  440. $random = rand(10000000,99999999);
  441. $usersig = $this->usersig("administrator");
  442. // 获取配置信息
  443. $config = config("tencent_im");
  444. $url = "https://console.tim.qq.com/v4/group_open_http_svc/send_group_msg";
  445. $url .= "?sdkappid=".$config["sdkappid"];
  446. $url .= "&identifier=administrator";
  447. $url .= "&usersig=".$usersig;
  448. $url .= "&random=".$random;
  449. $url .= "&contenttype=json";
  450. $tencentObj = new tencentim($url);
  451. $data = [];
  452. $data["GroupId"] = $party_id;
  453. $data["Random"] = rand(1000000,9999999);
  454. $message = [
  455. "message" => json_encode(["type"=>23,"content"=>$num]),
  456. "version" => "1.0",
  457. "action" => 301,
  458. "command" => ""
  459. ];
  460. $data["MsgBody"][] = [
  461. "MsgType" => "TIMCustomElem",
  462. "MsgContent" => [
  463. "Data"=> json_encode($message)
  464. ],
  465. ];
  466. $tencentObj->toSend($data);
  467. }
  468. }
  469. /**
  470. * 回调
  471. */
  472. public function callback() {
  473. $input = file_get_contents("php://input"); // 主题信息
  474. $input = json_decode($input,true);
  475. $CallbackCommand = $input["CallbackCommand"];
  476. switch ($CallbackCommand) {
  477. case 'State.StateChange': // 用户在线状态变更
  478. $info = $input["Info"];
  479. if($info["Action"] == "Login") { // 用户登录
  480. \app\common\model\User::update(["is_online"=>1,"onlinetime"=>time()],["id"=>$info["To_Account"]]);
  481. $res = [];
  482. $res["ActionStatus"] = "OK";
  483. $res["ErrorCode"] = 0;
  484. $res["ErrorInfo"] = "";
  485. echo json_encode($res);exit;
  486. } elseif($info["Action"] == "Logout" || $info["Action"] == "Disconnect") { // 用户退出 不需要管什么原因
  487. // 更新用户在线状态为离线
  488. \app\common\model\User::update(["is_online"=>0],["id"=>$info["To_Account"]]);
  489. \app\common\model\User::update(["is_live"=>0],["id"=>$info["To_Account"]]);
  490. // 获取用户在派对直播间情况信息
  491. $redis = new Redis();
  492. $redisconfig = config("redis");
  493. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  494. $livingUserPartyId = $redis->hGet("livingUser", $info["To_Account"]);
  495. if ($livingUserPartyId) {
  496. // 扣除在线用户在房间情况
  497. $redis->hDel("livingUser", $info["To_Account"]);
  498. $redis->HDel("online_" . $livingUserPartyId, $info["To_Account"]);
  499. }
  500. // 获取用户所在群信息
  501. $groupids = $this->getJoindGroupList($info["To_Account"]);
  502. // \app\common\model\Test::update(["content"=>json_encode($groupids)],["id"=>1]);
  503. if($groupids["ErrorCode"] == 0) {
  504. $grouplist = $groupids["GroupIdList"];
  505. $groupsites = [];
  506. if($grouplist) foreach($grouplist as $k => $v) {
  507. // 获取群组消息
  508. $groupInfo = $this->getGroupInfo($v["GroupId"]);
  509. if($groupInfo["ErrorCode"] == 0) $groupsites[] = $groupInfo["GroupInfo"][0];
  510. // 踢出用户在线组
  511. $redis = new Redis();
  512. $redisconfig = config("redis");
  513. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  514. $redis->HDel("online_".$v["GroupId"],$info["To_Account"]);
  515. // 更新麦位前四
  516. $this->updatePosition($info["To_Account"],$v["GroupId"]);
  517. // 取消排麦
  518. $this->cancelLineup($info["To_Account"],$v["GroupId"]);
  519. // 房间状态变更
  520. $partyInfo = $redis->get("party_".$v["GroupId"]);
  521. if($partyInfo) {
  522. $partyInfo = json_decode($partyInfo,true);
  523. $memCount = count($redis->hGetAll("online_".$v["GroupId"]));
  524. if($memCount <= 0) {
  525. $partyInfo["is_online"] = 0;
  526. $redis->set("party_".$v["GroupId"],json_encode($partyInfo));
  527. \app\common\model\Party::update(["is_online"=>0],["id"=>$v["GroupId"]]);
  528. }
  529. }
  530. $liveInfo = $redis->get("live_".$v["GroupId"]);
  531. if($liveInfo) {
  532. $liveInfo = json_decode($liveInfo,true);
  533. $memCount = count($redis->hGetAll("online_".$v["GroupId"]));
  534. if($memCount <= 0) {
  535. $liveInfo["is_online"] = 0;
  536. $redis->set("live_".$v["GroupId"],json_encode($liveInfo));
  537. \app\common\model\Party::update(["is_online"=>0],["id"=>$v["GroupId"]]);
  538. }
  539. }
  540. }
  541. // 强制下麦
  542. print_r($this->downSite($info["To_Account"],$groupsites));
  543. }
  544. }
  545. break;
  546. // case 'Group.CallbackAfterNewMemberJoin': // 新成员入群
  547. // $redis = new Redis();
  548. // $redisconfig = config("redis");
  549. // $redis->connect($redisconfig["host"], $redisconfig["port"]);
  550. // $members = $input["NewMemberList"];
  551. // if($members) foreach($members as $k => $v) {
  552. // $redis->hSet("online_".$input["GroupId"],$v["Member_Account"],$v["Member_Account"]);
  553. // // 更新房间在线状态
  554. // $party_id = $input["GroupId"];
  555. // $partyInfo = $redis->get("party_".$party_id);
  556. // if($partyInfo) {
  557. // $partyInfo = json_decode($partyInfo,true);
  558. // if($partyInfo["is_online"] != 1) {
  559. // $partyInfo["is_online"] = 1;
  560. // $redis->set("party_".$party_id,json_encode($partyInfo));
  561. // \app\common\model\Party::update(["is_online"=>1],["id"=>$party_id]);
  562. // }
  563. // }
  564. // }
  565. // $res = [];
  566. // $res["ActionStatus"] = "OK";
  567. // $res["ErrorCode"] = 0;
  568. // $res["ErrorInfo"] = "";
  569. // echo json_encode($res);
  570. // break;
  571. // case 'Group.CallbackAfterMemberExit': // 成员离开
  572. // $redis = new Redis();
  573. // $redisconfig = config("redis");
  574. // $redis->connect($redisconfig["host"], $redisconfig["port"]);
  575. // $members = $input["ExitMemberList"];
  576. // if($members) foreach($members as $k => $v) {
  577. // $redis->HDel("online_".$input["GroupId"],$v["Member_Account"]);
  578. // }
  579. // // 更新房间在线状态
  580. // $party_id = $input["GroupId"];
  581. // $partyInfo = $redis->get("party_".$party_id);
  582. // if($partyInfo) {
  583. // $partyInfo = json_decode($partyInfo,true);
  584. // $memCount = count($redis->hGetAll("online_".$party_id));
  585. // if($memCount <= 0) {
  586. // $partyInfo["is_online"] = 0;
  587. // $redis->set("party_".$party_id,json_encode($partyInfo));
  588. // \app\common\model\Party::update(["is_online"=>0],["id"=>$party_id]);
  589. // }
  590. // }
  591. //
  592. // $liveInfo = $redis->get("live_".$party_id);
  593. // if($liveInfo) {
  594. // $liveInfo = json_decode($liveInfo,true);
  595. // $memCount = count($redis->hGetAll("online_".$party_id));
  596. // if($memCount <= 0) {
  597. // $liveInfo["is_online"] = 0;
  598. // $redis->set("live_".$party_id,json_encode($liveInfo));
  599. // \app\common\model\Party::update(["is_online"=>0],["id"=>$party_id]);
  600. // }
  601. // }
  602. //
  603. // $res = [];
  604. // $res["ActionStatus"] = "OK";
  605. // $res["ErrorCode"] = 0;
  606. // $res["ErrorInfo"] = "";
  607. // echo json_encode($res);
  608. // break;
  609. case 'Group.CallbackBeforeSendMsg': // 群内发送消息之前
  610. $config = config("wxMiniProgram");
  611. $access_token_url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$config["appid"]."&secret=".$config["secret"];
  612. $access_token_arr = $this->getJson($access_token_url);
  613. $access_token = isset($access_token_arr["access_token"])?$access_token_arr["access_token"]:"";
  614. if(!$access_token) {
  615. $res = [];
  616. $res["ActionStatus"] = "OK";
  617. $res["ErrorInfo"] = "";
  618. $res["ErrorCode"] = 0;
  619. echo json_encode($res);
  620. break;
  621. }
  622. // \app\common\model\Test::update(["content"=>json_encode($access_token)],["id"=>1]);
  623. $infoMessage = $input["MsgBody"];
  624. $badMessage = false;
  625. if($infoMessage) foreach($infoMessage as $k => $v) {
  626. if(isset($v["MsgContent"]["Text"])) {
  627. $message = json_decode($v["MsgContent"]["Text"],true);
  628. $content = isset($message["content"])?$message["content"]:"";
  629. $message_check_url ='https://api.weixin.qq.com/wxa/msg_sec_check?access_token='.$access_token;
  630. $tencentObj = new tencentim($message_check_url);
  631. $content_json = '{"content": "'.$content.'"}';
  632. $body = $tencentObj->messageCheck($content_json);
  633. if($body["errcode"] == 87014) {
  634. // \app\common\model\Test::update(["content"=>$body["errcode"]],["id"=>1]);
  635. // $res = [];
  636. // $res["ActionStatus"] = "OK";
  637. // $res["ErrorInfo"] = "检测到敏感词汇!";
  638. // $res["ErrorCode"] = 1;
  639. // echo json_encode($res);exit;
  640. $message["content"] = "*******";
  641. $infoMessage[$k]["MsgContent"]["Text"] = json_encode($message);
  642. $badMessage = true;
  643. }
  644. }
  645. }
  646. if($badMessage) {
  647. $res = [];
  648. $res["ActionStatus"] = "OK";
  649. $res["ErrorInfo"] = "检测到敏感词汇!";
  650. $res["ErrorCode"] = 10102;
  651. $res["MsgBody"] = $infoMessage;
  652. } else {
  653. $res = [];
  654. $res["ActionStatus"] = "OK";
  655. $res["ErrorInfo"] = "";
  656. $res["ErrorCode"] = 0;
  657. }
  658. // \app\common\model\Test::update(["content"=>json_encode($res)],["id"=>1]);
  659. echo json_encode($res);exit;
  660. break;
  661. default:
  662. break;
  663. }
  664. exit;
  665. }
  666. private function getJson($url){
  667. $ch = curl_init();
  668. curl_setopt($ch, CURLOPT_URL, $url);
  669. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  670. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  671. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  672. $output = curl_exec($ch);
  673. curl_close($ch);
  674. return json_decode($output, true);
  675. }
  676. /**
  677. * 发送消息给某人
  678. */
  679. public function sendMessageToUser($from_user,$to_user,$message) {
  680. // $from_user = 54;
  681. // $to_user = 6;
  682. // $message = "sdsd";
  683. $random = rand(10000000,99999999);
  684. $usersig = $this->usersig("administrator");
  685. // 获取配置信息
  686. $config = config("tencent_im");
  687. $url = "https://console.tim.qq.com/v4/openim/sendmsg";
  688. $url .= "?sdkappid=".$config["sdkappid"];
  689. $url .= "&identifier=administrator";
  690. $url .= "&usersig=".$usersig;
  691. $url .= "&random=".$random;
  692. $url .= "&contenttype=json";
  693. $tencentObj = new tencentim($url);
  694. $data = [];
  695. $data["SyncOtherMachine"] = 1;
  696. $data["From_Account"] = (string)$from_user;
  697. $data["To_Account"] = (string)$to_user;
  698. $data["MsgRandom"] = rand(1000000,9999999);
  699. $data["MsgTimeStamp"] = time();
  700. $data["MsgBody"][] = [
  701. "MsgType" => "TIMTextElem",
  702. "MsgContent" => [
  703. "Text"=> $message
  704. ],
  705. ];
  706. $tencentObj->toSend($data);
  707. }
  708. /**
  709. * 发送消息给某人-接口调用
  710. */
  711. public function sendToUser() {
  712. $from_user = $this->request->request("from_user");// 发送者
  713. $to_user = $this->request->request("to_user");// 接收者
  714. $message = $this->request->request("message");// 接收者
  715. if(!$from_user || !$to_user || !$message) $this->error("参数缺失!");
  716. $this->sendMessageToUser($from_user,$to_user,$message);
  717. }
  718. }