我想知道我想在多个地方使用的自定义验证器的正确位置在哪里?
例如,我有min_image_size
验证器:
Validator::extend('min_image_size', function($attribute, $value, $parameters) {
$imageSize = getimagesize($value->getPathname());
return ($imageSize[0] >= $parameters[0] && $imageSize[1] >= $parameters[1]);
});
我应该把Laravel-way放在哪里?
答案 0 :(得分:6)
绝对在Service Provider中扩展验证器。您可以使用现有的app/Providers/AppServiceProvider.php
或创建另一个仅用于验证。
然后,在boot()
方法中,添加:
public function boot(){
$this->app['validator']->extend('min_image_size', function($attribute, $value, $parameters) {
$imageSize = getimagesize($value->getPathname());
return ($imageSize[0] >= $parameters[0] && $imageSize[1] >= $parameters[1]);
});
}
将实际验证规则放在单独的类中并使用以下语法也是值得的:
$this->app['validator']->extend('min_image_size', 'MyCustomValidator@validateMinImageSize');
答案 1 :(得分:-2)
我想我会创建一个自定义验证类,我可以编写自定义规则并将其放入库文件夹或者可能是中间件。