我想验证给定的讲座。有一些验证规则,但我想以某种方式扩展它的验证功能,它将3个属性作为参数,并检查数据库中的其他讲座,如果没有讲座重叠,则返回有效。讲座有开始,结束DateTime属性。
验证功能是
private function noOtherLecturesOnGivenTime($start, $end, $hall)
{
if(!$start instanceof Carbon) {
$start = new Carbon($start);
}
if(!$end instanceof Carbon) {
$end = new Carbon($end);
}
if(is_null($hall)) {
return true; // if there is no hall defined, all times are acceptable
}
if(!$hall instanceof Model) {
/** @var Hall $hall */
$hall = Hall::find($hall);
}
$overlappingLectures = $hall->lectures()->get()->filter(function ($lecture) use ($start, $end) {
// (Ts < e) and (Te > s)
return $start->lt($lecture->end) and $end->gt($lecture->start);
});
return $overlappingLectures->count() === 0;
}
我不知道如何以及在何处放置此函数,因此Laravel的验证器抛出异常,我可以使用i18n指定错误消息。
由于
答案 0 :(得分:1)
查看有关自定义验证规则的文档。
从创建规则到指定错误消息,有一个完整的例子:
对于您的情况,您可以在验证方法中从请求中获取参数。
我认为即使没有设置其他参数,验证规则仍会发生,不要忘记检查它们是否在请求中