PortalCategoryValidate.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 PortalCategoryValidate extends Validate
  15. {
  16. protected $rule = [
  17. 'name' => 'require',
  18. 'alias' => 'checkAlias',
  19. ];
  20. protected $message = [
  21. 'name.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. if (isset($data['id']) && $data['id'] > 0) {
  38. $fullUrl = $routeModel->buildFullUrl('portal/List/index', ['id' => $data['id']]);
  39. } else {
  40. $fullUrl = $routeModel->getFullUrlByUrl($data['alias']);
  41. }
  42. if (!$routeModel->existsRoute($value, $fullUrl)) {
  43. return true;
  44. } else {
  45. return "别名已经存在!";
  46. }
  47. }
  48. }