Mercurial > hg > isophonics-drupal-site
view core/modules/content_moderation/src/ModerationInformation.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children | 7a779792577d |
line wrap: on
line source
<?php namespace Drupal\content_moderation; use Drupal\Core\Entity\ContentEntityInterface; use Drupal\Core\Entity\EntityInterface; use Drupal\Core\Entity\EntityTypeBundleInfoInterface; use Drupal\Core\Entity\EntityTypeInterface; use Drupal\Core\Entity\EntityTypeManagerInterface; use Drupal\Core\TypedData\TranslatableInterface; /** * General service for moderation-related questions about Entity API. */ class ModerationInformation implements ModerationInformationInterface { /** * The entity type manager. * * @var \Drupal\Core\Entity\EntityTypeManagerInterface */ protected $entityTypeManager; /** * The bundle information service. * * @var \Drupal\Core\Entity\EntityTypeBundleInfoInterface */ protected $bundleInfo; /** * Creates a new ModerationInformation instance. * * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager * The entity type manager. * @param \Drupal\Core\Entity\EntityTypeBundleInfoInterface $bundle_info * The bundle information service. */ public function __construct(EntityTypeManagerInterface $entity_type_manager, EntityTypeBundleInfoInterface $bundle_info) { $this->entityTypeManager = $entity_type_manager; $this->bundleInfo = $bundle_info; } /** * {@inheritdoc} */ public function isModeratedEntity(EntityInterface $entity) { if (!$entity instanceof ContentEntityInterface) { return FALSE; } return $this->shouldModerateEntitiesOfBundle($entity->getEntityType(), $entity->bundle()); } /** * {@inheritdoc} */ public function canModerateEntitiesOfEntityType(EntityTypeInterface $entity_type) { return $entity_type->hasHandlerClass('moderation'); } /** * {@inheritdoc} */ public function shouldModerateEntitiesOfBundle(EntityTypeInterface $entity_type, $bundle) { if ($this->canModerateEntitiesOfEntityType($entity_type)) { $bundles = $this->bundleInfo->getBundleInfo($entity_type->id()); return isset($bundles[$bundle]['workflow']); } return FALSE; } /** * {@inheritdoc} */ public function getLatestRevision($entity_type_id, $entity_id) { if ($latest_revision_id = $this->getLatestRevisionId($entity_type_id, $entity_id)) { return $this->entityTypeManager->getStorage($entity_type_id)->loadRevision($latest_revision_id); } } /** * {@inheritdoc} */ public function getLatestRevisionId($entity_type_id, $entity_id) { if ($storage = $this->entityTypeManager->getStorage($entity_type_id)) { $revision_ids = $storage->getQuery() ->allRevisions() ->condition($this->entityTypeManager->getDefinition($entity_type_id)->getKey('id'), $entity_id) ->sort($this->entityTypeManager->getDefinition($entity_type_id)->getKey('revision'), 'DESC') ->range(0, 1) ->execute(); if ($revision_ids) { return array_keys($revision_ids)[0]; } } } /** * {@inheritdoc} */ public function getDefaultRevisionId($entity_type_id, $entity_id) { if ($storage = $this->entityTypeManager->getStorage($entity_type_id)) { $revision_ids = $storage->getQuery() ->condition($this->entityTypeManager->getDefinition($entity_type_id)->getKey('id'), $entity_id) ->sort($this->entityTypeManager->getDefinition($entity_type_id)->getKey('revision'), 'DESC') ->range(0, 1) ->execute(); if ($revision_ids) { return array_keys($revision_ids)[0]; } } } /** * {@inheritdoc} */ public function getAffectedRevisionTranslation(ContentEntityInterface $entity) { foreach ($entity->getTranslationLanguages() as $language) { $translation = $entity->getTranslation($language->getId()); if (!$translation->isDefaultRevision() && $translation->isRevisionTranslationAffected()) { return $translation; } } } /** * {@inheritdoc} */ public function isPendingRevisionAllowed(ContentEntityInterface $entity) { return !(!$entity->isRevisionTranslationAffected() && count($entity->getTranslationLanguages()) > 1 && $this->hasPendingRevision($entity)); } /** * {@inheritdoc} */ public function isLatestRevision(ContentEntityInterface $entity) { return $entity->getRevisionId() == $this->getLatestRevisionId($entity->getEntityTypeId(), $entity->id()); } /** * {@inheritdoc} */ public function hasPendingRevision(ContentEntityInterface $entity) { return $this->isModeratedEntity($entity) && !($this->getLatestRevisionId($entity->getEntityTypeId(), $entity->id()) == $this->getDefaultRevisionId($entity->getEntityTypeId(), $entity->id())); } /** * {@inheritdoc} */ public function isLiveRevision(ContentEntityInterface $entity) { $workflow = $this->getWorkflowForEntity($entity); return $this->isLatestRevision($entity) && $entity->isDefaultRevision() && $entity->moderation_state->value && $workflow->getTypePlugin()->getState($entity->moderation_state->value)->isPublishedState(); } /** * {@inheritdoc} */ public function isDefaultRevisionPublished(ContentEntityInterface $entity) { $workflow = $this->getWorkflowForEntity($entity); $default_revision = \Drupal::entityTypeManager()->getStorage($entity->getEntityTypeId())->load($entity->id()); // Ensure we are checking all translations of the default revision. if ($default_revision instanceof TranslatableInterface && $default_revision->isTranslatable()) { // Loop through each language that has a translation. foreach ($default_revision->getTranslationLanguages() as $language) { // Load the translated revision. $language_revision = $default_revision->getTranslation($language->getId()); // Return TRUE if a translation with a published state is found. if ($workflow->getTypePlugin()->getState($language_revision->moderation_state->value)->isPublishedState()) { return TRUE; } } } return $workflow->getTypePlugin()->getState($default_revision->moderation_state->value)->isPublishedState(); } /** * {@inheritdoc} */ public function getWorkflowForEntity(ContentEntityInterface $entity) { $bundles = $this->bundleInfo->getBundleInfo($entity->getEntityTypeId()); if (isset($bundles[$entity->bundle()]['workflow'])) { return $this->entityTypeManager->getStorage('workflow')->load($bundles[$entity->bundle()]['workflow']); }; return NULL; } }