SensitiveWord.php 611 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\validates;
  4. use catcher\library\Trie;
  5. class SensitiveWord implements ValidateInterface
  6. {
  7. protected $word;
  8. public function type(): string
  9. {
  10. // TODO: Implement type() method.
  11. return 'sensitive_word';
  12. }
  13. public function verify($value): bool
  14. {
  15. $trie = app(Trie::class);
  16. $word = $trie->getSensitiveWords($trie->getTries(), $value, false);
  17. return !$word;
  18. }
  19. public function message(): string
  20. {
  21. // TODO: Implement message() method.
  22. return '内容包含敏感词';
  23. }
  24. }