FavoriteValidate.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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: Powerless < wzxaini9@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\user\validate;
  12. use think\Validate;
  13. class FavoriteValidate extends Validate
  14. {
  15. protected $rule = [
  16. 'id' => 'require',
  17. 'title' => 'require|checkTitle',
  18. 'table' => 'require',
  19. 'url' => 'require|checkUrl',
  20. ];
  21. protected $message = [
  22. 'id.require' => '收藏内容ID不能为空!',
  23. 'title.require' => '收藏内容标题不能为空!',
  24. 'table.require' => '收藏内容所在表不能为空!',
  25. 'url.require' => '收藏内容链接不能为空!',
  26. 'url.checkUrl' => '收藏内容链接格式不正确!'
  27. ];
  28. protected $scene = [
  29. ];
  30. // 验证url 格式
  31. protected function checkUrl($value, $rule, $data)
  32. {
  33. $url = json_decode(base64_decode($value), true);
  34. if (!empty($url['action'])) {
  35. return true;
  36. }
  37. return '收藏内容链接格式不正确!';
  38. }
  39. // 验证url 格式
  40. protected function checkTitle($value, $rule, $data)
  41. {
  42. if (base64_decode($value)!==false) {
  43. return true;
  44. }
  45. return '收藏内容标题格式不正确!';
  46. }
  47. }