123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- declare(strict_types=1);
- namespace catcher\base;
- use app\Request;
- use catcher\exceptions\FailedException;
- use catcher\exceptions\ValidateFailedException;
- use think\App;
- class CatchRequest extends Request
- {
- /**
- * @var bool
- */
- protected $needCreatorId = true;
- /**
- * 批量验证
- *
- * @var bool
- */
- protected $batch = false;
- /**
- * Request constructor.
- * @throws \Exception
- */
- public function __construct()
- {
- parent::__construct();
- $this->validate();
- }
- /**
- * 初始化验证
- *
- * @time 2019年11月27日
- * @throws \Exception
- * @return mixed
- */
- protected function validate()
- {
- if (method_exists($this, 'rules')) {
- try {
- $validate = app('validate');
- // 批量验证
- if ($this->batch) {
- $validate->batch($this->batch);
- }
- // 验证
- $message = [];
- if (method_exists($this, 'message')) {
- $message = $this->message();
- }
- if (!$validate->message(empty($message) ? [] : $message)->check(request()->param(), $this->rules())) {
- throw new FailedException($validate->getError());
- }
- } catch (\Exception $e) {
- throw new ValidateFailedException($e->getMessage());
- }
- }
- // 设置默认参数
- if ($this->needCreatorId) {
- $this->param['creator_id'] = $this->user()->id;
- }
- return true;
- }
- /**
- * rewrite post
- *
- * @time 2020年10月15日
- * @param string $name
- * @param null $default
- * @param string $filter
- * @return array|mixed|null
- */
- public function post($name = '', $default = null, $filter = '')
- {
- if ($this->needCreatorId) {
- $this->post['creator_id'] = $this->user()->id;
- }
- return parent::post($name, $default, $filter); // TODO: Change the autogenerated stub
- }
- }
|