function WorkspaceMerger::merge

Same name and namespace in other branches
  1. 8.9.x core/modules/workspaces/src/WorkspaceMerger.php \Drupal\workspaces\WorkspaceMerger::merge()
  2. 10 core/modules/workspaces/src/WorkspaceMerger.php \Drupal\workspaces\WorkspaceMerger::merge()
  3. 11.x core/modules/workspaces/src/WorkspaceMerger.php \Drupal\workspaces\WorkspaceMerger::merge()

Overrides WorkspaceMergerInterface::merge

File

core/modules/workspaces/src/WorkspaceMerger.php, line 86

Class

WorkspaceMerger
Default implementation of the workspace merger.

Namespace

Drupal\workspaces

Code

public function merge() {
    if (!$this->sourceWorkspace
        ->hasParent() || $this->sourceWorkspace->parent->target_id != $this->targetWorkspace
        ->id()) {
        throw new \InvalidArgumentException('The contents of a workspace can only be merged into its parent workspace.');
    }
    if ($this->checkConflictsOnTarget()) {
        throw new WorkspaceConflictException();
    }
    try {
        $transaction = $this->database
            ->startTransaction();
        foreach ($this->getDifferringRevisionIdsOnSource() as $entity_type_id => $revision_difference) {
            $revisions_on_source = $this->entityTypeManager
                ->getStorage($entity_type_id)
                ->loadMultipleRevisions(array_keys($revision_difference));
            
            /** @var \Drupal\Core\Entity\ContentEntityInterface $entity */
            foreach ($revisions_on_source as $revision) {
                // Track all the differing revisions from the source workspace in
                // the context of the target workspace. This will automatically
                // update all the descendants of the target workspace as well.
                $this->workspaceAssociation
                    ->trackEntity($revision, $this->targetWorkspace);
            }
            // Since we're not saving entity objects, we need to invalidate the list
            // cache tags manually.
            $entity_type = $this->entityTypeManager
                ->getDefinition($entity_type_id);
            $this->cacheTagsInvalidator
                ->invalidateTags($entity_type->getListCacheTags());
        }
    } catch (\Exception $e) {
        if (isset($transaction)) {
            $transaction->rollBack();
        }
        watchdog_exception('workspaces', $e);
        throw $e;
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.