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

LiveRoomValidate.php 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\validate\live;
  20. use app\common\basics\Validate;
  21. use app\common\model\live\LiveRoom;
  22. /**
  23. * 直播间验证器
  24. * Class LiveRoomValidate
  25. * @package app\shop\validate\live
  26. */
  27. class LiveRoomValidate extends Validate
  28. {
  29. protected $rule = [
  30. 'id' => 'require|checkLiveRoom',
  31. 'type' => 'require|in:0',
  32. 'name' => 'require|length:3,17',
  33. 'start_time' => 'require|checkStartTime',
  34. 'end_time' => 'require|checkEndTime',
  35. 'anchor_name' => 'require|length:2,15',
  36. 'anchor_wechat' => 'require',
  37. 'cover_img' => 'require',
  38. 'share_img' => 'require',
  39. 'feeds_img' => 'require',
  40. ];
  41. protected $message = [
  42. 'id.require' => '参数缺失',
  43. 'type.require' => '请选择直播类型',
  44. 'type.in' => '直播类型错误',
  45. 'name.require' => '请输入直播间名字',
  46. 'name.length' => '直播间名字长度在3~17个汉字',
  47. 'start_time.require' => '请选择直播开始时间',
  48. 'end_time.require' => '请选择直播结束时间',
  49. 'anchor_name.require' => '请输入主播名称',
  50. 'anchor_name.length' => '主播名称长度在2~15个汉字',
  51. 'anchor_wechat.require' => '请输入主播微信号',
  52. 'cover_img' => '请直播间背景墙',
  53. 'share_img' => '请分享卡片封面',
  54. 'feeds_img' => '请直播卡片封面',
  55. ];
  56. protected function sceneAdd()
  57. {
  58. return $this->remove(['id' => 'require']);
  59. }
  60. protected function sceneDel()
  61. {
  62. return $this->only(['id']);
  63. }
  64. /**
  65. * @notes 校验开始时间
  66. * @param $value
  67. * @param $rule
  68. * @param $data
  69. * @return bool|string
  70. * @author 段誉
  71. * @date 2023/2/15 15:50
  72. */
  73. protected function checkStartTime($value, $rule, $data)
  74. {
  75. $now = time();
  76. $start = strtotime($value);
  77. if (($start - $now) <= 600) {
  78. return '开播时间需要在当前时间的10分钟后';
  79. }
  80. if (($start - $now) >= (180 * 86400)) {
  81. return '开始时间不能在6个月后';
  82. }
  83. return true;
  84. }
  85. /**
  86. * @notes 校验结束时间
  87. * @param $value
  88. * @param $rule
  89. * @param $data
  90. * @return bool|string
  91. * @author 段誉
  92. * @date 2023/2/15 15:51
  93. */
  94. protected function checkEndTime($value, $rule, $data)
  95. {
  96. $end = strtotime($value);
  97. $start = strtotime($data['start_time']);
  98. if (($end - $start) <= (30 * 60)) {
  99. return '开播时间和结束时间间隔不得短于30分钟';
  100. }
  101. if ($end - $start >= 86400) {
  102. return '开播时间和结束时间间隔不得超过24小时';
  103. }
  104. return true;
  105. }
  106. /**
  107. * @notes 校验直播间
  108. * @param $value
  109. * @param $rule
  110. * @param $data
  111. * @return bool|string
  112. * @author 段誉
  113. * @date 2023/2/16 11:10
  114. */
  115. protected function checkLiveRoom($value, $rule, $data)
  116. {
  117. $room = LiveRoom::where([
  118. 'id' => $value,
  119. 'shop_id' => $data['shop_id'],
  120. 'del' => 0
  121. ])->findOrEmpty();
  122. if ($room->isEmpty()) {
  123. return '直播间信息不存在';
  124. }
  125. return true;
  126. }
  127. }