SenderTrait.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?php
  2. namespace addons\shopro\library\chat\traits;
  3. use GatewayWorker\Lib\Gateway;
  4. use addons\shopro\library\chat\Online;
  5. /**
  6. * 通知基础方法
  7. */
  8. trait SenderTrait
  9. {
  10. /**
  11. * 可以同时给多个 uid 发送,支持 u_id 是数组
  12. */
  13. public static function successById($u_id, array $content)
  14. {
  15. $result = [
  16. 'code' => 1,
  17. 'msg' => '',
  18. 'type' => '',
  19. 'data' => null
  20. ];
  21. $result = array_merge($result, $content);
  22. Gateway::sendToUid($u_id, json_encode($result));
  23. return $result;
  24. }
  25. public static function successByCustomerServiceId($customer_service_id, array $content)
  26. {
  27. return self::successById(Online::getUId($customer_service_id, 'customer_service'), $content);
  28. }
  29. public static function successBySessionId($session_id, array $content)
  30. {
  31. return self::successById(Online::getUId($session_id, 'user'), $content);
  32. }
  33. /**
  34. * 给一个 client_id 发送消息
  35. */
  36. public static function success($client_id, array $content)
  37. {
  38. $result = [
  39. 'code' => 1,
  40. 'msg' => '',
  41. 'type' => '',
  42. 'data' => null
  43. ];
  44. $result = array_merge($result, $content);
  45. Gateway::sendToClient($client_id, json_encode($result));
  46. return $result;
  47. }
  48. /**
  49. * 给所有 client_id 或指定 clientIds 发送
  50. */
  51. public static function successAll(array $content, $clientIds = [])
  52. {
  53. $result = [
  54. 'code' => 1,
  55. 'msg' => '',
  56. 'type' => '',
  57. 'data' => null
  58. ];
  59. $result = array_merge($result, $content);
  60. Gateway::sendToAll(json_encode($result), $clientIds);
  61. return $result;
  62. }
  63. public static function errorById($u_id, array $content)
  64. {
  65. $result = [
  66. 'code' => 0,
  67. 'msg' => '',
  68. 'type' => '',
  69. 'data' => null
  70. ];
  71. $result = array_merge($result, $content);
  72. Gateway::sendToUid($u_id, json_encode($result));
  73. return $result;
  74. }
  75. public static function error($client_id, array $content)
  76. {
  77. $result = [
  78. 'code' => 0,
  79. 'msg' => '',
  80. 'type' => '',
  81. 'data' => null
  82. ];
  83. $result = array_merge($result, $content);
  84. Gateway::sendToClient($client_id, json_encode($result));
  85. return $result;
  86. }
  87. public static function __callStatic($name, $arguments)
  88. {
  89. // 需要存储数据库的消息,先存储数据库,再发送
  90. if (strpos($name, 'message') !== false) {
  91. // 存库
  92. $customerServiceLog = Online::addMessage($name, $arguments);
  93. // 将 message 追加到 content 里面
  94. $content = $arguments[1] ?? [];
  95. $content['data'] = $content['data'] ?? [];
  96. $content['data']['message'] = $customerServiceLog->toArray();
  97. $arguments[1] = $content;
  98. // 重载方法名
  99. $currentName = str_replace('message', 'success', $name);
  100. }
  101. return self::$currentName(...$arguments);
  102. }
  103. }