截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

CommunityArticleValidate.php 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <?php
  2. namespace app\api\validate;
  3. use app\common\basics\Validate;
  4. use app\common\enum\GoodsEnum;
  5. use app\common\enum\ShopEnum;
  6. use app\common\model\community\CommunityArticle;
  7. use app\common\model\goods\Goods;
  8. use app\common\model\shop\Shop;
  9. /**
  10. * 种草社区文章验证
  11. * Class CommunityArticleValidate
  12. * @package app\api\validate
  13. */
  14. class CommunityArticleValidate extends Validate
  15. {
  16. protected $rule = [
  17. 'id' => 'require|checkArticle',
  18. 'content' => 'require|min:10|max:999',
  19. 'image' => 'require|checkImage',
  20. 'goods' => 'checkGoods',
  21. 'shop' => 'checkShop',
  22. ];
  23. protected $message = [
  24. 'id.require' => '参数缺失',
  25. 'content.require' => '写够10个字,才可以发布和被精选哦',
  26. 'content.min' => '至少输入10个字符',
  27. 'content.max' => '至多输入999个字符',
  28. 'image.require' => '至少要添加1张图片哦',
  29. ];
  30. /**
  31. * @notes 添加场景
  32. * @return CommunityArticleValidate
  33. * @author 段誉
  34. * @date 2022/5/7 9:46
  35. */
  36. public function sceneAdd()
  37. {
  38. return $this->remove('id', true);
  39. }
  40. /**
  41. * @notes 编辑场景
  42. * @author 段誉
  43. * @date 2022/5/7 9:47
  44. */
  45. public function sceneEdit()
  46. {
  47. }
  48. /**
  49. * @notes 删除场景
  50. * @author 段誉
  51. * @date 2022/5/7 9:47
  52. */
  53. public function sceneDel()
  54. {
  55. return $this->only(['id']);
  56. }
  57. /**
  58. * @notes 校验文章
  59. * @param $value
  60. * @param $rule
  61. * @param $data
  62. * @return bool|string
  63. * @author 段誉
  64. * @date 2022/5/7 9:50
  65. */
  66. protected function checkArticle($value, $rule, $data)
  67. {
  68. $article = CommunityArticle::findOrEmpty($value);
  69. if ($article->isEmpty()) {
  70. return '信息不存在';
  71. }
  72. if ($article['del'] == 1) {
  73. return '已被删除';
  74. }
  75. return true;
  76. }
  77. /**
  78. * @notes 校验图片数量
  79. * @param $value
  80. * @param $rule
  81. * @param $data
  82. * @return bool|string
  83. * @author 段誉
  84. * @date 2022/4/29 10:53
  85. */
  86. protected function checkImage($value, $rule, $data)
  87. {
  88. if (count($value) > 9) {
  89. return '最多上传9张图片';
  90. }
  91. return true;
  92. }
  93. /**
  94. * @notes 校验所选商品
  95. * @param $value
  96. * @param $rule
  97. * @param $data
  98. * @return bool|string
  99. * @author 段誉
  100. * @date 2022/4/29 10:53
  101. */
  102. protected function checkGoods($value, $rule, $data)
  103. {
  104. if (empty($value)) {
  105. return true;
  106. }
  107. if (!empty($data['shop'])) {
  108. return '不能同时选择宝贝/店铺';
  109. }
  110. if (count($value) > 5) {
  111. return '最多只能选择5个商品';
  112. }
  113. $goods_id = array_unique($value);
  114. $where = [
  115. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  116. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  117. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  118. ['id', 'in', $goods_id]
  119. ];
  120. $goods = Goods::where($where)->column('*', 'id');
  121. foreach ($value as $item) {
  122. if (!isset($goods[$item])) {
  123. return '所选商品中包含已下架商品';
  124. }
  125. }
  126. return true;
  127. }
  128. /**
  129. * @notes 校验所选店铺
  130. * @param $value
  131. * @param $rule
  132. * @param $data
  133. * @return bool|string
  134. * @author 段誉
  135. * @date 2022/4/29 10:54
  136. */
  137. protected function checkShop($value, $rule, $data)
  138. {
  139. if (empty($value)) {
  140. return true;
  141. }
  142. if (!empty($data['goods'])) {
  143. return '不能同时选择宝贝/店铺';
  144. }
  145. if (count($value) > 3) {
  146. return '最多只能选择3个店铺';
  147. }
  148. $shop_id = array_unique($value);
  149. $where = [
  150. ['is_freeze', '=', ShopEnum::SHOP_FREEZE_NORMAL], // 未冻结
  151. ['del', '=', 0], // 未删除
  152. ['is_run', '=', ShopEnum::SHOP_RUN_OPEN], // 未暂停营业
  153. ['id', 'in', $shop_id]
  154. ];
  155. $shops = Shop::where($where)->column('*', 'id');
  156. foreach ($value as $item) {
  157. if (!isset($shops[$item])) {
  158. return '所选店铺中包含暂停营业店铺';
  159. }
  160. }
  161. return true;
  162. }
  163. }