截流自动化的商城平台
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.

LiveRoomEnum.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\enum;
  20. class LiveRoomEnum
  21. {
  22. // 审核状态
  23. const AUDIT_STATUS_WAIT = 0;
  24. const AUDIT_STATUS_SUCCESS = 1;
  25. const AUDIT_STATUS_FAIL = 2;
  26. // 直播间状态
  27. const LIVE_STATUS_WAIT = 102;
  28. const LIVE_STATUS_ING = 101;
  29. const LIVE_STATUS_END = 103;
  30. const LIVE_STATUS_DISABLE = 104;
  31. const LIVE_STATUS_STOP = 105;
  32. const LIVE_STATUS_ERROR = 106;
  33. const LIVE_STATUS_EXPIRE = 107;
  34. // 审核状态
  35. const AUDIT_STATUS = [
  36. self::AUDIT_STATUS_WAIT,
  37. self::AUDIT_STATUS_SUCCESS,
  38. self::AUDIT_STATUS_FAIL,
  39. ];
  40. // 直播间状态
  41. const LIVE_STATUS = [
  42. self::LIVE_STATUS_WAIT,
  43. self::LIVE_STATUS_ING,
  44. self::LIVE_STATUS_END,
  45. self::LIVE_STATUS_DISABLE,
  46. self::LIVE_STATUS_STOP,
  47. self::LIVE_STATUS_ERROR,
  48. self::LIVE_STATUS_EXPIRE,
  49. ];
  50. /**
  51. * @notes 审核状态描述
  52. * @param bool $from
  53. * @return string|string[]
  54. * @author 段誉
  55. * @date 2023/2/15 18:49
  56. */
  57. public static function getAuditStatusDesc($from = true)
  58. {
  59. $desc = [
  60. self::AUDIT_STATUS_WAIT => '待审核',
  61. self::AUDIT_STATUS_SUCCESS => '审核通过',
  62. self::AUDIT_STATUS_FAIL => '审核未通过',
  63. ];
  64. if (true === $from) {
  65. return $desc;
  66. }
  67. return $desc[$from];
  68. }
  69. /**
  70. * @notes 获取直播间状态描述
  71. * @param bool $from
  72. * @return string|string[]
  73. * @author 段誉
  74. * @date 2023/2/15 18:59
  75. */
  76. public static function getLiveStatusDesc($from = true)
  77. {
  78. $desc = [
  79. self::LIVE_STATUS_WAIT => '未开始',
  80. self::LIVE_STATUS_ING => '直播中',
  81. self::LIVE_STATUS_END => '已结束',
  82. self::LIVE_STATUS_DISABLE => '禁播',
  83. self::LIVE_STATUS_STOP => '暂停',
  84. self::LIVE_STATUS_ERROR => '异常',
  85. self::LIVE_STATUS_EXPIRE => '已过期',
  86. ];
  87. if (true === $from) {
  88. return $desc;
  89. }
  90. return $desc[$from];
  91. }
  92. }