截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Response.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. namespace app\common\websocket;
  3. use app\common\enum\ChatMsgEnum;
  4. class Response
  5. {
  6. /**
  7. * @notes 结果数据
  8. * @param string $msg
  9. * @param array $data
  10. * @param int $code
  11. * @return array
  12. * @author 段誉
  13. * @date 2021/12/29 18:26
  14. */
  15. private function result(string $msg = 'OK', array $data = [], int $code = 10001)
  16. {
  17. $result = [
  18. 'code' => $code,
  19. 'msg' => $msg,
  20. 'data' => $data
  21. ];
  22. return $result;
  23. }
  24. /**
  25. * @notes 成功
  26. * @param string $msg
  27. * @param array $data
  28. * @param int $code
  29. * @return array
  30. * @author 段誉
  31. * @date 2021/12/29 18:26
  32. */
  33. public function success(string $msg = 'OK', array $data = [], int $code = 10001)
  34. {
  35. return $this->result($msg, $data, $code);
  36. }
  37. /**
  38. * @notes 错误
  39. * @param string $msg
  40. * @param array $data
  41. * @param int $code
  42. * @return array
  43. * @author 段誉
  44. * @date 2021/12/29 18:27
  45. */
  46. public function error(string $msg = 'Error', array $data = [], int $code = 20001)
  47. {
  48. return $this->result($msg, $data, $code);
  49. }
  50. /**
  51. * @notes 整理返送错误信息
  52. * @param string $msg
  53. * @param int $msg_type
  54. * @return array
  55. * @author 段誉
  56. * @date 2021/12/29 18:27
  57. */
  58. public function formatSendError(string $msg, int $msg_type = 0)
  59. {
  60. if (empty($msg_type)) {
  61. $msg_type = ChatMsgEnum::TYPE_TEXT;
  62. }
  63. return [
  64. 'msg' => $msg,
  65. 'msg_type' => $msg_type,
  66. ];
  67. }
  68. }