关于学说验证的自定义错误消息

时间:2009-08-05 16:24:36

标签: php doctrine

我需要修改doctrine验证的默认错误消息。怎么样 我可以这样做吗?

谢谢

2 个答案:

答案 0 :(得分:5)

CrazyJoe在某种程度上是正确的:没有一些努力就不可能: - (

但是,如果你搜索得足够多,你可能会找到一种方法; - )


使用Doctrine 1.1,您可以扩展类Doctrine_Record
该类定义了这种方法:

/**
 * Get the record error stack as a human readable string.
 * Useful for outputting errors to user via web browser
 *
 * @return string $message
 */
public function getErrorStackAsString()
{
    $errorStack = $this->getErrorStack();

    if (count($errorStack)) {
        $message = sprintf("Validation failed in class %s\n\n", get_class($this));

        $message .= "  " . count($errorStack) . " field" . (count($errorStack) > 1 ?  's' : null) . " had validation error" . (count($errorStack) > 1 ?  's' : null) . ":\n\n";
        foreach ($errorStack as $field => $errors) {
            $message .= "    * " . count($errors) . " validator" . (count($errors) > 1 ?  's' : null) . " failed on $field (" . implode(", ", $errors) . ")\n";
        }
        return $message;
    } else {
        return false;
    }
}

这是生成消息的方法;正如您所看到的,它是完全自动的,并且根本无法配置: - (


不过,多亏了OOP,我们可以在Model类中重载该方法......

但是,为了更清洁,我会:

  • 创建一个新类 - 比如说My_Doctrine_Record,扩展Doctrine_Record
  • 该类将重新定义该方法,以允许自定义错误消息
  • 我们的Model类将扩展My_Doctrine_Record类。

这将避免在我们的每个模型类中重复该方法;并且可能在另一天证明有用......


当然,我们的My_Doctrine_Record::getErrorStackAsString方法可以依赖于我们的模型类的方法来帮助生成消息,并为每个模型类进行特殊的自定义。

这是一个有效的例子;远非完美,但它可能会引导您达到您想要的目标; - )


首先,初始化:

require_once '/usr/share/php/Doctrine/lib/Doctrine.php';
spl_autoload_register(array('Doctrine', 'autoload'));

$manager = Doctrine_Manager::getInstance();
$manager->setAttribute(Doctrine::ATTR_VALIDATE, Doctrine::VALIDATE_ALL);

$conn = Doctrine_Manager::connection('mysql://test:123456@localhost/test1');

我猜你的申请中已经有类似的东西......


接下来,我们的新My_Doctrine_Record类:

class My_Doctrine_Record extends Doctrine_Record
{
    public function getErrorStackAsString()
    {
        $errorStack = $this->getErrorStack();
        if (count($errorStack)) {
            $message = sprintf("BAD DATA in class %s :\n", get_class($this));
            foreach ($errorStack as $field => $errors) {
                $messageForField = $this->_getValidationFailed($field, $errors);
                if ($messageForField === null) {
                    // No custom message for this case => we use the default one.
                    $message .= "    * " . count($errors) . " validator" . (count($errors) > 1 ?  's' : null) . " failed on $field (" . implode(", ", $errors) . ")\n";
                } else {
                    $message .= "    * " . $messageForField;
                }
            }
            return $message;
        } else {
            return false;
        }
    }

    protected function _getValidationFailed($field, $errors) {
        return null;
    }

}

你会注意到getErrorStackAsString方法的灵感来自Doctrine提供的方法 - 这看起来很正常,我会说^^

还有一点需要注意:

  • 它定义并调用_ getValidationFailed方法
  • 应该创建错误消息;如果我们想使用默认的行为
  • ,请返回null
  • 我们可以在我们的Model类中重载_getValidationFailed方法,以自定义内容; - )


现在,我的Model类:

class Test extends My_Doctrine_Record
{
    protected function _getValidationFailed($field, $errors) {
        switch ($field) {
            case 'name': 
                    return "You entered wrong data from 'name' field.\n      Errors are for '" 
                        . implode("', '", $errors) . "'\n";
                break;
            // other fields ?
            default:
                return null;
        }
    }

    public function setTableDefinition()
    {
        $this->setTableName('test');
        $this->hasColumn('id', 'integer', 4, array(
             'type' => 'integer',
             'length' => 4,
             'unsigned' => 0,
             'primary' => true,
             'autoincrement' => true,
             ));
        $this->hasColumn('name', 'string', 32, array(
             'type' => 'string',
             'length' => 32,
             'fixed' => false,
             'notnull' => true,
             'email'   => true,
             ));
        $this->hasColumn('value', 'string', 128, array(
             'type' => 'string',
             'length' => 128,
             'fixed' => false,
             'notnull' => true,
             'htmlcolor' => true,
             ));
        $this->hasColumn('date_field', 'integer', 4, array(
             'type' => 'timestamp',
             'notnull' => true,
             ));
    }
}

它扩展了My_Doctrine_Record,并定义了_getValidationFailed方法,用于处理模型的name字段上的验证错误。


现在,让我们假设我这样做来加载记录:

$test = Doctrine::getTable('Test')->find(1);
var_dump($test->toArray());

让我们尝试修改它,设置“坏”值:

$test->name = (string)time();
$test->value = 'glop';
try {
    $test->save();
} catch (Doctrine_Validator_Exception $e) {
    echo '<pre>';
    echo $e->getMessage();
    echo '</pre>';
    die;
}

namevalue字段都不正常......因此,我们将通过验证方法,并生成此错误消息:

BAD DATA in class Test :
    * You entered wrong data from 'name' field.
      Errors are for 'email'
    * 1 validator failed on value (htmlcolor)

您可以看到“name”的消息已自定义,“value”的消息来自默认的Doctrine内容。


因此,总结一下:不容易,但可以做到; - )

而且,现在,您可以使用它作为问题解决方案的指南: - ) 我认为需要更多的编码......但你离真正的交易并不遥远!

玩得开心!

答案 1 :(得分:0)

目前的版本不可能!!!