截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

CommunityCommentValidate.php 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. namespace app\api\validate;
  3. use app\common\basics\Validate;
  4. use app\common\enum\CommunityArticleEnum;
  5. use app\common\model\community\CommunityArticle;
  6. use app\common\model\community\CommunityComment;
  7. /**
  8. * 种草社区评论验证
  9. * Class CommunityCommentValidate
  10. * @package app\api\validate
  11. */
  12. class CommunityCommentValidate extends Validate
  13. {
  14. protected $rule = [
  15. 'article_id' => 'require|checkArticle',
  16. 'comment' => 'require|max:150',
  17. 'pid' => 'checkComment',
  18. ];
  19. protected $message = [
  20. 'article_id.require' => '参数缺失',
  21. 'comment.require' => '请输入评论内容',
  22. 'comment.max' => '评论内容不可超过150字符',
  23. ];
  24. public function sceneAdd()
  25. {
  26. return $this->only(['article_id', 'comment', 'pid']);
  27. }
  28. public function sceneLists()
  29. {
  30. return $this->only(['article_id']);
  31. }
  32. /**
  33. * @notes 校验文章
  34. * @param $value
  35. * @param $rule
  36. * @param $data
  37. * @return bool|string
  38. * @author 段誉
  39. * @date 2022/5/7 11:19
  40. */
  41. protected function checkArticle($value, $rule, $data)
  42. {
  43. $article = CommunityArticle::findOrEmpty($value);
  44. if ($article->isEmpty()) {
  45. return '种草内容不存在';
  46. }
  47. if ($article['del'] == 1) {
  48. return '该种草内容已被删除';
  49. }
  50. return true;
  51. }
  52. /**
  53. * @notes 校验评论
  54. * @param $value
  55. * @param $rule
  56. * @param $data
  57. * @return bool|string
  58. * @author 段誉
  59. * @date 2022/5/7 11:22
  60. */
  61. protected function checkComment($value, $rule, $data)
  62. {
  63. if (empty($value)) {
  64. return true;
  65. }
  66. $comment = CommunityComment::findOrEmpty($value);
  67. if ($comment->isEmpty()) {
  68. return '回复评论不存在';
  69. }
  70. return true;
  71. }
  72. }