web-dev-qa-db-ja.com

Laravel 4検証unique(database)は現在を無視します

ユーザー編集フォームで検証を行っており、ユーザー名がデータベース内で一意であるかどうかを検証しています。

ただし、ユーザーを編集していてユーザー名フィールドを変更しない場合でも、フィールドが一意であるかどうかはチェックされます...

変更されていない場合、現在のユーザー名を無視するlaravel方法はありますか?

20
Mediabeastnz

もちろん、ドキュメントをもっと読むべきでしたlaravel 4はこれを行います...

私が持っていたもの

$rules = array('username' => 'required|unique:users');

私が持っているもの

$rules = array('username' => 'required|unique:users,username,'.$id);

上記のように、指定されたIDを無視するようにバリデーターに指示できます。

28
Mediabeastnz

この解決策は私のために働いた:

protected  $rules = array(
    'email' => "required|email|unique:users,email,:id",
);
9
hasib32

Laravel 4.1の場合、_Illuminate\Validation\Validator_クラスを拡張する場合は、validateUnique()メソッドを次のようにオーバーライドします。

_/**
 * Validate the uniqueness of an attribute value on a given database table.
 *
 * If a database column is not specified, the attribute will be used.
 *
 * @param  string  $attribute
 * @param  mixed   $value
 * @param  array   $parameters
 * @return bool
 */
protected function validateUnique($attribute, $value, $parameters)
{
    $this->requireParameterCount(1, $parameters, 'unique');

    $table = $parameters[0];

    // The second parameter position holds the name of the column that needs to
    // be verified as unique. If this parameter isn't specified we will just
    // assume that this column to be verified shares the attribute's name.
    $column = isset($parameters[1]) ? $parameters[1] : $attribute;

    // If the specified ID column is present in the data, use those values; otherwise,
    // fall back on supplied parameters.
    list($idColumn, $id) = [null, null];
    if (isset($parameters[2])) {
        list($idColumn, $id) = $this->getUniqueIds($parameters);

        if (strtolower($id) == 'null') $id = null;
        else if (strtolower($id) == 'id' && isset($this->data[$idColumn])) $id = $this->data[$idColumn];
    }
    else if (isset($this->data['id'])) {
        $idColumn = 'id';
        $id = $this->data[$idColumn];
    }

    // The presence verifier is responsible for counting rows within this store
    // mechanism which might be a relational database or any other permanent
    // data store like Redis, etc. We will use it to determine uniqueness.
    $verifier = $this->getPresenceVerifier();

    $extra = $this->getUniqueExtra($parameters);

    return $verifier->getCount(

        $table, $column, $value, $id, $idColumn, $extra

    ) == 0;
}
_

バリデータールールでは、これを行うことができます(検証データに存在するidフィールドをチェックします-これは最も一般的な使用法です):

_$rules = 'unique:model,field';
_

これ(検証データに存在するidフィールドをチェックします)(上記と同等):

_// specifying anything other than 'id' or 'null' as the 3rd parameter
// will still use the current behavior
$rules = 'unique:model,field,id'; 
_

またはこれ(検証データに存在するidColumnフィールドをチェックします):

_// specifying anything other than 'id' or 'null' as the 3rd parameter
// will still use the current behavior
$rules = 'unique:model,field,id,idColumn';
_
1
Derek

こんにちは、バリデーターをサービスとして使用するか、ロジックをコピーして、このように必要に応じて適用できます

$valitator = MyCustomValidator::make()->on('update')->setCurrent($id); 

チェックイン: https://github.com/bradleySuira/laravel-context-validator/blob/master/examples/unique-on-update.php

0
Bradley