我有以下代码;
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add(
$builder->create(
'href',
'url',
$this->getOptionsForUrlWidget('Website URL')
)->addEventSubscriber(new GetResolvedUrlListener())
)
...
我的方法GetResolvedUrlListener
执行curl请求以发现正确的协议和最终地址(重定向后)以确定正确的网址。
如果curl请求没有收到成功的HTTP响应,我希望它导致验证失败。因此,如果提供的URL无法访问,则不应保存。
这可以在实现EventSubscriberInterface的类中完成吗?我是否应该添加新约束并验证提供的URL两次?
答案 0 :(得分:0)
您应该添加一个约束,但不一定要对其进行两次验证,您可以创建一个解决这些网址的中央服务,但也可以将它们保存在两个$validUrls
和$invalidUrls
中然后,您可以在事件监听器和验证约束中使用此服务,该服务可能如下所示:
class UrlValidator{
protected $validUrls = array();
protected $invalidUrls = array();
public function resolve($url){
// we have validated this url before, and it wasn't valid
if(isset($this->invalidUrls[$url])
return false;
// we have validated this url before, so we can return true or the resolved value
if(isset($this->validUrls[$url])
return $this->validUrls[$url];
else{
// do the curl request, and set $this->validUrls[$urls] or $this->invalidUrls[$url] accordingly
}
}
}