2

ユーザーが YouTube の URL を送信しているかどうかを確認するカスタム フォーム バリデータを作成したいと考えています。私はすでに自分のlib/validator/youtubeValidator.class.php

それから私はそれを私の中で使用しますMyForm.class.php:new YoutubeValidator(........)

コードは次のとおりです。

class YoutubeValidator extends sfValidatorUrl
{
  protected function configure($options = array(), $messages = array())
  {
    $this->addMessage('invalid', 'Veuillez entrer un lien Youtube');
  }
  protected function doClean($url)
  {
    $pattern = 
      '%^# Match any youtube URL
      (?:https?://)?  # Optional scheme. Either http or https
      (?:www\.)?      # Optional www subdomain
      (?:             # Group host alternatives
        youtu\.be/    # Either youtu.be,
      | youtube\.com  # or youtube.com
        (?:           # Group path alternatives
          /embed/     # Either /embed/
        | /v/         # or /v/
        | /watch\?v=  # or /watch\?v=
        )             # End path alternatives.
      )               # End host alternatives.
      ([\w-]{10,12})  # Allow 10-12 for 11 char youtube id.
      $%x'
      ;

    $result = preg_match($pattern, $url, $matches);
    if (false !== $result)
    {
      return $matches[1];
    }
    return false;

    if (false !== $result)
    {
      throw new sfValidatorError($this, 'invalid', array('value' => $value));
    }
    else
    {
      return true;
    }
  }
}

しかし、それはまったく機能しません。

さらに、私のバリデーターが YouTube ビデオが存在するかどうかを確認できれば素晴らしいことです。

4

1 に答える 1

1

おそらく、最後の行を次のように変更する必要があります。

$result = preg_match($pattern, $url, $matches);
if (false === $result)
{
   throw new sfValidatorError($this, 'invalid', array('value' => $url));
}

return $url;

これは、ユーザーが送信した URL が YouTube の URL であるかどうかのみを確認します (正規表現と一致する場合)。いいえの場合、例外がスローされます。


更新 -- 削除 --


更新 2

class YoutubeValidator extends sfValidatorUrl
{
  protected function configure($options = array(), $messages = array())
  {
    parent::configure($options, $messages);

    $this->setMessage('invalid', 'Veuillez entrer un lien Youtube');
  }

  protected function doClean($value)
  {
    $pattern = "/(http(s)?:\/\/)?(?:youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=)([^#\&\?]*).*/";

    preg_match($pattern, $value, $matches);

    if (empty($matches[3]))
    {
      throw new sfValidatorError($this, 'invalid', array('value' => $value));
    }

    return $matches[3];
  }
}

私はそれをテストしましたが、問題なく動作しているようです (を使用すると実際のビデオ ID が返されます$form->getValues())。

于 2012-10-01T22:18:46.023 に答える