You are here

class InstagramEmbedCodeConstraintValidator in Media entity Instagram 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/Validation/Constraint/InstagramEmbedCodeConstraintValidator.php \Drupal\media_entity_instagram\Plugin\Validation\Constraint\InstagramEmbedCodeConstraintValidator

Validates the InstagramEmbedCode constraint.

Hierarchy

Expanded class hierarchy of InstagramEmbedCodeConstraintValidator

1 file declares its use of InstagramEmbedCodeConstraintValidator
ConstraintsTest.php in tests/src/Unit/ConstraintsTest.php

File

src/Plugin/Validation/Constraint/InstagramEmbedCodeConstraintValidator.php, line 13

Namespace

Drupal\media_entity_instagram\Plugin\Validation\Constraint
View source
class InstagramEmbedCodeConstraintValidator extends ConstraintValidator {

  /**
   * {@inheritdoc}
   */
  public function validate($value, Constraint $constraint) {
    $data = '';
    if (is_string($value)) {
      $data = $value;
    }
    elseif ($value instanceof FieldItemInterface) {
      $class = get_class($value);
      $property = $class::mainPropertyName();
      if ($property) {
        $data = $value->{$property};
      }
    }
    if ($data) {
      $matches = [];
      foreach (Instagram::$validationRegexp as $pattern => $key) {
        if (preg_match($pattern, $data, $item_matches)) {
          $matches[] = $item_matches;
        }
      }
      if (empty($matches)) {
        $this->context
          ->addViolation($constraint->message);
      }
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
InstagramEmbedCodeConstraintValidator::validate public function Checks if the passed value is valid.