Tentrtc.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Exception;
  5. use think\Log;
  6. use Redis;
  7. /**
  8. * 实时音视频回调
  9. */
  10. class Tentrtc extends Api
  11. {
  12. protected $noNeedLogin = ['callback'];
  13. protected $noNeedRight = ['*'];
  14. /**
  15. * 支付回调
  16. */
  17. public function callback()
  18. {
  19. try {
  20. $header = $this->request->header();
  21. $body = file_get_contents('php://input');
  22. // 获取body参数
  23. $aRequest = json_decode($body, true);
  24. // 签名验证
  25. if ($this->verifyRoomApiSign($body, $header['sign']) == false) {
  26. Log::write(sprintf('%s,腾讯云回调,签名验证失败:%s', __METHOD__, var_export($body, true)), 'error');
  27. $this->error('签名验证失败');
  28. }
  29. $roomId = $aRequest['EventInfo']['RoomId'];
  30. switch ($aRequest['EventType']) {
  31. case 103:// 进入房间
  32. $redis = new Redis();
  33. $redisconfig = config("redis");
  34. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  35. $userId = $aRequest['EventInfo']['UserId'];
  36. $redis->hSet("online_" . $roomId, $userId, $userId);
  37. // 记录在线用户在房间情况
  38. $redis->hSet("livingUser",$userId,$roomId);
  39. // 更新房间在线状态
  40. $partyInfo = $redis->get("party_" . $roomId);
  41. if ($partyInfo) {
  42. $partyInfo = json_decode($partyInfo, true);
  43. if ($partyInfo["is_online"] != 1) {
  44. $partyInfo["is_online"] = 1;
  45. $redis->set("party_" . $roomId, json_encode($partyInfo));
  46. \app\common\model\Party::update(["is_online" => 1], ["id" => $roomId]);
  47. }
  48. }
  49. // 更新房间在线状态
  50. $liveInfo = $redis->get("live_" . $roomId);
  51. if ($liveInfo) {
  52. $liveInfo = json_decode($liveInfo, true);
  53. if ($liveInfo["is_online"] != 1) {
  54. $liveInfo["is_online"] = 1;
  55. $redis->set("live_" . $roomId, json_encode($liveInfo));
  56. \app\common\model\Party::update(["is_online" => 1], ["id" => $roomId]);
  57. }
  58. }
  59. break;
  60. case 104: // 退出房间
  61. $redis = new Redis();
  62. $redisconfig = config("redis");
  63. $redis->connect($redisconfig["host"], $redisconfig["port"]);
  64. $userId = $aRequest['EventInfo']['UserId'];
  65. $redis->HDel("online_" . $roomId, $userId);
  66. // 扣除在线用户在房间情况
  67. $redis->hDel("livingUser",$userId);
  68. // 更新房间在线状态
  69. $partyInfo = $redis->get("party_" . $roomId);
  70. if ($partyInfo) {
  71. $partyInfo = json_decode($partyInfo, true);
  72. $memCount = count($redis->hGetAll("online_" . $roomId));
  73. if ($memCount <= 0) {
  74. $partyInfo["is_online"] = 0;
  75. $redis->set("party_" . $roomId, json_encode($partyInfo));
  76. \app\common\model\Party::update(["is_online" => 0], ["id" => $roomId]);
  77. }
  78. }
  79. $liveInfo = $redis->get("live_" . $roomId);
  80. if ($liveInfo) {
  81. $liveInfo = json_decode($liveInfo, true);
  82. $memCount = count($redis->hGetAll("online_" . $roomId));
  83. if ($memCount <= 0) {
  84. $liveInfo["is_online"] = 0;
  85. $redis->set("live_" . $roomId, json_encode($liveInfo));
  86. \app\common\model\Party::update(["is_online" => 0], ["id" => $roomId]);
  87. }
  88. }
  89. break;
  90. default:
  91. break;
  92. }
  93. json(0);
  94. exit;
  95. } catch (Exception $e) {
  96. Log::write(sprintf('%s:系统错误: %s IN: %s LINE: %s', __METHOD__, $e->getMessage(), $e->getFile(), $e->getLine()), 'error');
  97. $this->error(['code' => 9999, 'msg' => $e->getMessage()]);
  98. }
  99. }
  100. /**
  101. * 实时音视频验签
  102. */
  103. private function verifyRoomApiSign($aInput, $headerSign)
  104. {
  105. $callbackKey = 'c527c7078f47ba4d';
  106. $sign = hash_hmac('sha256', $aInput, $callbackKey, true);
  107. $sign = rtrim(base64_encode($sign));
  108. if ($sign == $headerSign) {
  109. return true;
  110. } else {
  111. return false;
  112. }
  113. }
  114. }