CatchRequest.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\base;
  4. use app\Request;
  5. use catcher\exceptions\FailedException;
  6. use catcher\exceptions\ValidateFailedException;
  7. use think\App;
  8. class CatchRequest extends Request
  9. {
  10. /**
  11. * @var bool
  12. */
  13. protected $needCreatorId = true;
  14. /**
  15. * 批量验证
  16. *
  17. * @var bool
  18. */
  19. protected $batch = false;
  20. /**
  21. * Request constructor.
  22. * @throws \Exception
  23. */
  24. public function __construct()
  25. {
  26. parent::__construct();
  27. $this->validate();
  28. }
  29. /**
  30. * 初始化验证
  31. *
  32. * @time 2019年11月27日
  33. * @throws \Exception
  34. * @return mixed
  35. */
  36. protected function validate()
  37. {
  38. if (method_exists($this, 'rules')) {
  39. try {
  40. $validate = app('validate');
  41. // 批量验证
  42. if ($this->batch) {
  43. $validate->batch($this->batch);
  44. }
  45. // 验证
  46. $message = [];
  47. if (method_exists($this, 'message')) {
  48. $message = $this->message();
  49. }
  50. if (!$validate->message(empty($message) ? [] : $message)->check(request()->param(), $this->rules())) {
  51. throw new FailedException($validate->getError());
  52. }
  53. } catch (\Exception $e) {
  54. throw new ValidateFailedException($e->getMessage());
  55. }
  56. }
  57. // 设置默认参数
  58. if ($this->needCreatorId) {
  59. $this->param['creator_id'] = $this->user()->id;
  60. }
  61. return true;
  62. }
  63. /**
  64. * rewrite post
  65. *
  66. * @time 2020年10月15日
  67. * @param string $name
  68. * @param null $default
  69. * @param string $filter
  70. * @return array|mixed|null
  71. */
  72. public function post($name = '', $default = null, $filter = '')
  73. {
  74. if ($this->needCreatorId) {
  75. $this->post['creator_id'] = $this->user()->id;
  76. }
  77. return parent::post($name, $default, $filter); // TODO: Change the autogenerated stub
  78. }
  79. }