SettingSiteValidate.php 1.7 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\admin\validate;
  12. use app\admin\model\RouteModel;
  13. use think\Validate;
  14. class SettingSiteValidate extends Validate
  15. {
  16. protected $rule = [
  17. 'options.sitename' => 'require',
  18. 'admin_settings.admin_password' => 'alphaNum|checkAlias'
  19. ];
  20. protected $message = [
  21. 'options.sitename.require' => '网站标题不能为空',
  22. 'admin_settings.admin_password.alphaNum' => '后台加密码只能是英文字母和数字',
  23. 'admin_settings.admin_password.checkAlias' => '此加密码不能使用!',
  24. ];
  25. // 自定义验证规则
  26. protected function checkAlias($value, $rule, $data)
  27. {
  28. if (empty($value)) {
  29. return true;
  30. }
  31. if(preg_match('/^\d+$/',$value)){
  32. return "加密码不能是纯数字!";
  33. }
  34. $routeModel = new RouteModel();
  35. $fullUrl = $routeModel->buildFullUrl('admin/Index/index', []);
  36. if (!$routeModel->existsRoute($value.'$', $fullUrl)) {
  37. return true;
  38. } else {
  39. return "URL规则已经存在,无法设置此加密码!";
  40. }
  41. }
  42. }