entity_hierarchy-8.x-2.24/src/Plugin/Field/FieldType/EntityReferenceHierarchy.php
src/Plugin/Field/FieldType/EntityReferenceHierarchy.php
<?php
namespace Drupal\entity_hierarchy\Plugin\Field\FieldType;
use Drupal\Core\Field\BaseFieldDefinition;
use Drupal\Core\Field\FieldStorageDefinitionInterface;
use Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\TypedData\DataDefinition;
use Drupal\entity_hierarchy\Storage\InsertPosition;
use Drupal\entity_hierarchy\Storage\NestedSetStorage;
use Drupal\entity_hierarchy\Storage\TreeLockTrait;
use PNX\NestedSet\Node;
use PNX\NestedSet\NodeKey;
/**
* Plugin implementation of the 'entity_reference_hierarchy' field type.
*
* @FieldType(
* id = "entity_reference_hierarchy",
* label = @Translation("Entity reference hierarchy"),
* description = @Translation("Entity parent reference with weight."),
* category = "reference",
* default_widget = "entity_reference_hierarchy_autocomplete",
* default_formatter = "entity_reference_hierarchy_label",
* cardinality = 1,
* list_class = "\Drupal\entity_hierarchy\Plugin\Field\FieldType\EntityReferenceHierarchyFieldItemList"
* )
*/
class EntityReferenceHierarchy extends EntityReferenceItem {
use StringTranslationTrait;
use TreeLockTrait;
/**
* Defines the minimum weight of a child (but has the highest priority).
*/
const HIERARCHY_MIN_CHILD_WEIGHT = -50;
/**
* Defines the maximum weight of a child (but has the lowest priority).
*/
const HIERARCHY_MAX_CHILD_WEIGHT = 50;
/**
* {@inheritdoc}
*/
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
$properties = parent::propertyDefinitions($field_definition);
$weight_definition = DataDefinition::create('integer')
->setLabel(t('Weight'));
$weight_definition->addConstraint('Range', ['min' => self::HIERARCHY_MIN_CHILD_WEIGHT]);
$weight_definition->addConstraint('Range', ['max' => self::HIERARCHY_MAX_CHILD_WEIGHT]);
$properties['weight'] = $weight_definition;
return $properties;
}
/**
* {@inheritdoc}
*/
public static function schema(FieldStorageDefinitionInterface $field_definition) {
$schema = parent::schema($field_definition);
$schema['columns']['weight'] = [
'type' => 'int',
'unsigned' => FALSE,
];
// Add weight index.
$schema['indexes']['weight'] = ['weight'];
return $schema;
}
/**
* {@inheritdoc}
*/
public static function defaultFieldSettings() {
return [
'weight_label' => t('Weight'),
'weight_min' => self::HIERARCHY_MIN_CHILD_WEIGHT,
'weight_max' => self::HIERARCHY_MAX_CHILD_WEIGHT,
] + parent::defaultFieldSettings();
}
/**
* {@inheritdoc}
*/
public function fieldSettingsForm(array $form, FormStateInterface $form_state) {
$elements = parent::fieldSettingsForm($form, $form_state);
$elements['weight_min'] = [
'#type' => 'number',
'#title' => $this->t('Minimum'),
'#default_value' => $this->getSetting('weight_min'),
];
$elements['weight_max'] = [
'#type' => 'number',
'#title' => $this->t('Maximum'),
'#default_value' => $this->getSetting('weight_max'),
];
$elements['weight_label'] = [
'#type' => 'textfield',
'#title' => $this->t('Weight Label'),
'#default_value' => $this->getSetting('weight_label'),
'#description' => $this->t('The weight of this child with respect to other children.'),
];
return $elements;
}
/**
* {@inheritdoc}
*/
public static function getPreconfiguredOptions() {
// In the base EntityReference class, this is used to populate the
// list of field-types with options for each destination entity type.
// Too much work, we'll just make people fill that out later.
// Also, keeps the field type dropdown from getting too cluttered.
return [];
}
/**
* {@inheritdoc}
*/
public function postSave($update) {
if (\Drupal::state()->get('entity_hierarchy_disable_writes', FALSE)) {
return;
}
// Get the key factory and tree storage services.
$nodeKeyFactory = $this->getNodeKeyFactory();
$storage = $this->getTreeStorage();
// Get the field name.
$fieldDefinition = $this->getFieldDefinition();
$fieldName = $fieldDefinition->getName();
$entityTypeId = $fieldDefinition->getTargetEntityTypeId();
$this->lockTree($fieldName, $entityTypeId);
// Get the parent/child entities and their node-keys in the nested set.
$parentEntity = $this->get('entity')->getValue();
if (!$parentEntity) {
// Parent entity has been deleted.
// If this node was in the tree, it needs to be moved to a root node.
$stubNode = $nodeKeyFactory->fromEntity($this->getEntity());
if (($existingNode = $storage->getNode($stubNode)) && $existingNode->getDepth() > 0) {
$storage->moveSubTreeToRoot($existingNode);
}
$this->releaseLock($fieldName, $entityTypeId);
return;
}
$parentKey = $nodeKeyFactory->fromEntity($parentEntity);
$childEntity = $this->getEntity();
$childKey = $nodeKeyFactory->fromEntity($childEntity);
// Determine if this is a new node in the tree.
$isNewNode = FALSE;
if (!$childNode = $storage->getNode($childKey)) {
$isNewNode = TRUE;
// As we're going to be adding instead of moving, a key is all we require.
$childNode = $childKey;
}
// Does the parent already exist in the tree.
if ($existingParent = $storage->getNode($parentKey)) {
// If there are no siblings, we simply insert/move below.
$insertPosition = new InsertPosition($existingParent, $isNewNode, InsertPosition::DIRECTION_BELOW);
// But if there are siblings, we need to ascertain the correct position in
// the order.
if ($siblingEntities = $this->getSiblingEntityWeights($storage, $existingParent, $childNode)) {
// Group the siblings by their weight.
$weightOrderedSiblings = $this->groupSiblingsByWeight($siblingEntities, $fieldName);
$weight = $this->get('weight')->getValue();
$insertPosition = $this->getInsertPosition($weightOrderedSiblings, $weight, $isNewNode) ?: $insertPosition;
}
$insertPosition->performInsert($storage, $childNode);
$this->releaseLock($fieldName, $entityTypeId);
return;
}
// We need to create a node for the parent in the tree.
$parentNode = $storage->addRootNode($parentKey);
(new InsertPosition($parentNode, $isNewNode, InsertPosition::DIRECTION_BELOW))->performInsert($storage, $childNode);
$this->releaseLock($fieldName, $entityTypeId);
}
/**
* Returns the storage handler for the given entity-type.
*
* @return \Drupal\Core\Entity\EntityStorageInterface
* Storage handler.
*/
protected function entityTypeStorage($entity_type_id) {
return \Drupal::entityTypeManager()->getStorage($entity_type_id);
}
/**
* Returns the tree storage.
*
* @return \Drupal\entity_hierarchy\Storage\NestedSetStorage
* Tree storage.
*/
protected function getTreeStorage() {
$fieldDefinition = $this->getFieldDefinition();
return \Drupal::service('entity_hierarchy.nested_set_storage_factory')->get($fieldDefinition->getName(), $fieldDefinition->getTargetEntityTypeId());
}
/**
* Returns the node factory.
*
* @return \Drupal\entity_hierarchy\Storage\NestedSetNodeKeyFactory
* The factory.
*/
protected function getNodeKeyFactory() {
return \Drupal::service('entity_hierarchy.nested_set_node_factory');
}
/**
* Gets the entity type definition.
*
* @return \Drupal\Core\Entity\EntityTypeInterface
* Entity type.
*/
protected function entityTypeDefinition() {
return \Drupal::entityTypeManager()->getDefinition($this->getFieldDefinition()->getTargetEntityTypeId());
}
/**
* Loads other children of the given parent.
*
* @param \PNX\NestedSet\Node[] $siblings
* Target siblings.
*
* @return \SplObjectStorage
* Map of weights keyed by node.
*/
protected function loadSiblingEntityWeights(array $siblings) {
$fieldDefinition = $this->getFieldDefinition();
$entityType = $this->entityTypeDefinition();
$entityTypeId = $fieldDefinition->getTargetEntityTypeId();
$entityStorage = $this->entityTypeStorage($entityTypeId);
$siblingEntities = new \SplObjectStorage();
$key = $entityType->hasKey('revision') ? $entityType->getKey('revision') : $entityType->getKey('id');
$parentField = $fieldDefinition->getName();
$query = $entityStorage->getAggregateQuery()->accessCheck(FALSE);
$ids = array_map(function (Node $item) {
return $item->getRevisionId();
}, $siblings);
$entities = $query
->groupBy($key)
->sort($key, 'ASC')
->groupBy($parentField . '.weight')
->condition($key, $ids, 'IN')
->execute();
$weightSeparator = $fieldDefinition instanceof BaseFieldDefinition ? '__' : '_';
$entities = array_combine(array_column($entities, $key), array_column($entities, $parentField . $weightSeparator . 'weight'));
foreach ($siblings as $node) {
if (!isset($entities[$node->getRevisionId()])) {
continue;
}
$siblingEntities[$node] = (int) $entities[$node->getRevisionId()];
}
return $siblingEntities;
}
/**
* Gets siblings.
*
* @param \Drupal\entity_hierarchy\Storage\NestedSetStorage $storage
* Storage.
* @param \PNX\NestedSet\Node $parentNode
* Existing parent node.
* @param \PNX\NestedSet\Node|\PNX\NestedSet\NodeKey $childNode
* Child node.
*
* @return \SplObjectStorage|bool
* Map of weights keyed by node or FALSE if no siblings.
*/
protected function getSiblingEntityWeights(NestedSetStorage $storage, Node $parentNode, $childNode) {
if ($siblingNodes = array_filter($storage->findChildren($parentNode->getNodeKey()), function (Node $node) use ($childNode) {
if ($childNode instanceof NodeKey) {
// Exclude self and all revisions.
return $childNode->getId() !== $node->getNodeKey()->getId();
}
// Exclude self and all revisions.
return $childNode->getNodeKey()->getId() !== $node->getNodeKey()->getId();
})) {
return $this->loadSiblingEntityWeights($siblingNodes);
}
return FALSE;
}
/**
* Group siblings by weight.
*
* @param \SplObjectStorage $siblingEntities
* Sibling entities keyed by nested set nodes.
* @param string $fieldName
* Field name to detect weight from.
*
* @return array
* Array of nested set nodes grouped by weight.
*/
public function groupSiblingsByWeight(\SplObjectStorage $siblingEntities, $fieldName) {
$weightMap = [];
foreach ($siblingEntities as $node) {
if (!$siblingEntities->offsetExists($node)) {
continue;
}
$weightMap[$siblingEntities->offsetGet($node)][] = $node;
}
ksort($weightMap);
return $weightMap;
}
/**
* Gets the insert position for the new child.
*
* @param array $weightOrderedSiblings
* Sibling nodes, grouped by weight.
* @param int $weight
* Desired weight amongst siblings of the new child.
* @param bool $isNewNode
* TRUE if the node is brand new, FALSE if it needs to be moved from
* elsewhere in the tree.
*
* @return \Drupal\entity_hierarchy\Storage\InsertPosition|bool
* Insert position, FALSE if the siblings no longer exist.
*/
public function getInsertPosition(array $weightOrderedSiblings, $weight, $isNewNode) {
if (isset($weightOrderedSiblings[$weight])) {
// There are already nodes at the same weight, insert it with them.
return new InsertPosition(end($weightOrderedSiblings[$weight]), $isNewNode, InsertPosition::DIRECTION_AFTER);
}
// There are no nodes at this weight, we need to find the right position.
$firstGroup = reset($weightOrderedSiblings);
$start = key($weightOrderedSiblings);
if ($weight < $start) {
// We're going to position before all existing nodes.
return new InsertPosition(reset($firstGroup), $isNewNode);
}
foreach (array_keys($weightOrderedSiblings) as $weightPosition) {
if ($weight < $weightPosition) {
return new InsertPosition(reset($weightOrderedSiblings[$weightPosition]), $isNewNode);
}
}
// We're inserting at the end.
$lastGroup = end($weightOrderedSiblings);
if (!$lastGroup) {
return FALSE;
}
return new InsertPosition(end($lastGroup), $isNewNode, InsertPosition::DIRECTION_AFTER);
}
}
