AdminPageValidate.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 小夏 < 449134904@qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\portal\validate;
  12. use app\admin\model\RouteModel;
  13. use think\Validate;
  14. class AdminPageValidate extends Validate
  15. {
  16. protected $rule = [
  17. 'post_title' => 'require',
  18. 'post_alias' => 'checkAlias'
  19. ];
  20. protected $message = [
  21. 'post_title.require' => '页面标题不能为空',
  22. ];
  23. protected $scene = [
  24. // 'add' => ['user_login,user_pass,user_email'],
  25. // 'edit' => ['user_login,user_email'],
  26. ];
  27. // 自定义验证规则
  28. protected function checkAlias($value, $rule, $data)
  29. {
  30. if (empty($value)) {
  31. return true;
  32. }
  33. if (preg_match("/^\d+$/", $value)) {
  34. return "别名不能为纯数字!";
  35. }
  36. $routeModel = new RouteModel();
  37. $fullUrl = $routeModel->buildFullUrl('portal/Page/index', ['id' => $data['id']]);
  38. if (!$routeModel->existsRoute($value, $fullUrl)) {
  39. return true;
  40. } else {
  41. return "别名已经存在!";
  42. }
  43. }
  44. }