You are here

trait EntityResourceValidationTrait in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/rest/src/Plugin/rest/resource/EntityResourceValidationTrait.php \Drupal\rest\Plugin\rest\resource\EntityResourceValidationTrait

@internal @todo Consider making public in https://www.drupal.org/node/2300677

Hierarchy

3 files declare their use of EntityResourceValidationTrait
EntityResourceValidationTraitTest.php in core/modules/rest/tests/src/Unit/EntityResourceValidationTraitTest.php
FileUploadResource.php in core/modules/file/src/Plugin/rest/resource/FileUploadResource.php
UserRegistrationResource.php in core/modules/user/src/Plugin/rest/resource/UserRegistrationResource.php

File

core/modules/rest/src/Plugin/rest/resource/EntityResourceValidationTrait.php, line 14

Namespace

Drupal\rest\Plugin\rest\resource
View source
trait EntityResourceValidationTrait {

  /**
   * Verifies that an entity does not violate any validation constraints.
   *
   * The validation errors will be filtered to not include fields to which the
   * current user does not have access and if $fields_to_validate is provided
   * will only include fields in that array.
   *
   * @param \Drupal\Core\Entity\EntityInterface $entity
   *   The entity to validate.
   * @param string[] $fields_to_validate
   *   (optional) An array of field names. If specified, filters the violations
   *   list to include only this set of fields.
   *
   * @throws \Symfony\Component\HttpKernel\Exception\UnprocessableEntityHttpException
   *   If validation errors are found.
   */
  protected function validate(EntityInterface $entity, array $fields_to_validate = []) {

    // @todo Update this check in https://www.drupal.org/node/2300677.
    if (!$entity instanceof FieldableEntityInterface) {
      return;
    }
    $violations = $entity
      ->validate();

    // Remove violations of inaccessible fields as they cannot stem from our
    // changes.
    $violations
      ->filterByFieldAccess();
    if ($fields_to_validate) {

      // Filter violations by explicitly provided array of field names.
      $violations
        ->filterByFields(array_diff(array_keys($entity
        ->getFieldDefinitions()), $fields_to_validate));
    }
    if ($violations
      ->count() > 0) {
      $message = "Unprocessable Entity: validation failed.\n";
      foreach ($violations as $violation) {

        // We strip every HTML from the error message to have a nicer to read
        // message on REST responses.
        $message .= $violation
          ->getPropertyPath() . ': ' . PlainTextOutput::renderFromHtml($violation
          ->getMessage()) . "\n";
      }
      throw new UnprocessableEntityHttpException($message);
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityResourceValidationTrait::validate protected function Verifies that an entity does not violate any validation constraints.