WorkflowsFieldContraintValidator.php in Workflows Field 8
File
src/Plugin/Validation/Constraint/WorkflowsFieldContraintValidator.php
View source
<?php
namespace Drupal\workflows_field\Plugin\Validation\Constraint;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Session\AccountInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
class WorkflowsFieldContraintValidator extends ConstraintValidator implements ContainerInjectionInterface {
protected $entityTypeManager;
protected $currentUser;
public function __construct(EntityTypeManagerInterface $entityTypeManager, AccountInterface $currentUser) {
$this->entityTypeManager = $entityTypeManager;
$this->currentUser = $currentUser;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('entity_type.manager'), $container
->get('current_user'));
}
public function validate($field, Constraint $constraint) {
$entity = $field
->getEntity();
$workflow_type = $field
->getWorkflow()
->getTypePlugin();
if (!isset($field->value) || $entity
->isNew()) {
return;
}
$original_entity = $this->entityTypeManager
->getStorage($entity
->getEntityTypeId())
->loadUnchanged($entity
->id());
if (!$entity
->isDefaultTranslation() && $original_entity
->hasTranslation($entity
->language()
->getId())) {
$original_entity = $original_entity
->getTranslation($entity
->language()
->getId());
}
$previous_state = $original_entity->{$field
->getFieldDefinition()
->getName()}->value;
if ($previous_state === $field->value) {
return;
}
if (!$workflow_type
->hasTransitionFromStateToState($previous_state, $field->value)) {
$this->context
->addViolation($constraint->message, [
'%state' => $field->value,
'%previous_state' => $previous_state,
]);
}
else {
$transition = $workflow_type
->getTransitionFromStateToState($previous_state, $field->value);
if (!$this->currentUser
->hasPermission(sprintf('use %s transition %s', $field
->getWorkflow()
->id(), $transition
->id()))) {
$this->context
->addViolation($constraint->insufficientPermissionsTransition, [
'%transition' => $transition
->label(),
]);
}
}
}
}