InstagramEmbedCodeConstraintValidator.php in Media entity Instagram 8
Same filename and directory in other branches
File
src/Plugin/Validation/Constraint/InstagramEmbedCodeConstraintValidator.phpView source
<?php
namespace Drupal\media_entity_instagram\Plugin\Validation\Constraint;
use Drupal\media_entity\EmbedCodeValueTrait;
use Drupal\media_entity_instagram\Plugin\MediaEntity\Type\Instagram;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
/**
* Validates the InstagramEmbedCode constraint.
*/
class InstagramEmbedCodeConstraintValidator extends ConstraintValidator {
use EmbedCodeValueTrait;
/**
* {@inheritdoc}
*/
public function validate($value, Constraint $constraint) {
$value = $this
->getEmbedCode($value);
if (!isset($value)) {
return;
}
$matches = [];
foreach (Instagram::$validationRegexp as $pattern => $key) {
if (preg_match($pattern, $value, $item_matches)) {
$matches[] = $item_matches;
}
}
if (empty($matches)) {
$this->context
->addViolation($constraint->message);
}
}
}
Classes
Name | Description |
---|---|
InstagramEmbedCodeConstraintValidator | Validates the InstagramEmbedCode constraint. |