在 Laravel 5.1 上进行验证之前修改输入

2022-08-30 20:35:50

我正在尝试在验证成功之前修改用户提交的输入。我已经遵循了这个简单的说明,但是当我在Laravel 5.1上测试它时,它不起作用。我做错了什么吗?

这是我的请求类SSHAM\Http\Requests\UserCreateRequest.php

<?php

namespace SSHAM\Http\Requests;

use SSHAM\Http\Requests\Request;

class UserCreateRequest extends Request
{

    // Some stuff not related with this problem

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        // Only for debug
        $prova = $this->all();
        echo "<pre>Inside Request - Before sanitize\n[" . $prova['public_key'] . "]</pre>\n";

        // Call a function to sanitize user input
        $this->sanitize();

        // Only for debug    
        $prova = $this->all();
        echo "<pre>Inside Request - After sanitize\n[" . $prova['public_key'] . "]</pre>\n";

        return [
            'username' => 'required|max:255|unique:users',
            'public_key' => 'openssh_key:public',
        ];
    }

    /**
     * Sanitizes user input. In special 'public_key' to remove carriage returns
     */
    public function sanitize()
    {
        $input = $this->all();

        // Removes carriage returns from 'public_key' input
        $input['public_key'] = str_replace(["\n", "\t", "\r"], '', $input['public_key']);

        $this->replace($input);
    }

}

这是我的自定义验证规则SSHAM\Providers\OpenSSHKeyValidatorServiceProvider.php

<?php

namespace SSHAM\Providers;

use Illuminate\Support\ServiceProvider;

class OpenSSHKeyValidatorServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap the application services.
     *
     * @return void
     */
    public function boot()
    {
        // Registering the validator extension with the validator factory
        \Validator::extend('openssh_key', function ($attribute, $value, $parameters) {

            // Some stuff not related with this problem    

            // Only for debug
            echo "<pre>Inside Validator value\n[" . $value ."]</pre>\n";
            dd();

            return true;
        });

    }

    // Some stuff not related with this problem    
}

当我调用调试时,我得到这个输出:

Inside Request - Before sanitize
[blah 
second line 
third line]

Inside Request - After sanitize
[blah second line third line]

Inside Validator value
[blah 
second line 
third line]

似乎正在工作,但是当在验证类上处理值时,它尚未被清理。sanitize()


答案 1

这是一个棘手的问题。我只想出了一种方法来实现你想要的。

重点是,如果更改 rules() 函数中的请求值,它对验证器没有影响。

您可以通过向 UserCreateRequest 添加函数来执行解决方法:

protected function getValidatorInstance() {
    $this->sanitize();
    return parent::getValidatorInstance();
}

这将覆盖父级的 getValidatorInstance();

父级的 getValidatorInstance() 方法包括

    return $factory->make(
        $this->all(), $this->container->call([$this, 'rules']), $this->messages(), $this->attributes());

这是在 rules() 函数中的代码之前达到的,因此使用$this->all() 的旧值(不受 rules() 更改的影响)。

如果在自己的 RequestClass 中重写该函数,则可以在调用实际的父方法之前操作 Request 值。

更新 (L5.5)

如果您使用的是控制器验证功能,则可以执行如下操作:

    $requestData = $request->all();

    // modify somehow
    $requestData['firstname'] = trim($requestData['firstname']);

    $request->replace($requestData);

    $values = $this->validate($request, $rules);

答案 2

您可以通过修改请求并设置输入值来执行此操作。

$request->request->set('key', 'value');

或者,如果您更喜欢帮助程序方法。request

request()->request->set('key', 'value');

推荐