123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397 |
- <?php
- namespace Gedmo\Tree\Entity\Repository;
- use Gedmo\Exception\InvalidArgumentException;
- use Doctrine\ORM\Query;
- use Gedmo\Tree\Strategy;
- use Gedmo\Tree\Strategy\ORM\Closure;
- use Gedmo\Tool\Wrapper\EntityWrapper;
- use Doctrine\ORM\Proxy\Proxy;
- /**
- * The ClosureTreeRepository has some useful functions
- * to interact with Closure tree. Repository uses
- * the strategy used by listener
- *
- * @author Gustavo Adrian <comfortablynumb84@gmail.com>
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @package Gedmo.Tree.Entity.Repository
- * @subpackage ClosureRepository
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class ClosureTreeRepository extends AbstractTreeRepository
- {
- /** Alias for the level value used in the subquery of the getNodesHierarchy method */
- const SUBQUERY_LEVEL = 'level';
- /**
- * {@inheritDoc}
- */
- public function getRootNodesQueryBuilder($sortByField = null, $direction = 'asc')
- {
- $meta = $this->getClassMetadata();
- $config = $this->listener->getConfiguration($this->_em, $meta->name);
- $qb = $this->_em->createQueryBuilder();
- $qb->select('node')
- ->from($config['useObjectClass'], 'node')
- ->where('node.' . $config['parent'] . " IS NULL");
- if ($sortByField) {
- $qb->orderBy($sortByField, strtolower($direction) === 'asc' ? 'asc' : 'desc');
- }
- return $qb;
- }
- /**
- * {@inheritDoc}
- */
- public function getRootNodesQuery($sortByField = null, $direction = 'asc')
- {
- return $this->getRootNodesQueryBuilder($sortByField, $direction)->getQuery();
- }
- /**
- * {@inheritDoc}
- */
- public function getRootNodes($sortByField = null, $direction = 'asc')
- {
- return $this->getRootNodesQuery($sortByField, $direction)->getResult();
- }
- /**
- * Get the Tree path query by given $node
- *
- * @param object $node
- * @throws InvalidArgumentException - if input is not valid
- * @return Query
- */
- public function getPathQuery($node)
- {
- $meta = $this->getClassMetadata();
- if (!$node instanceof $meta->name) {
- throw new InvalidArgumentException("Node is not related to this repository");
- }
- if (!$this->_em->getUnitOfWork()->isInIdentityMap($node)) {
- throw new InvalidArgumentException("Node is not managed by UnitOfWork");
- }
- $config = $this->listener->getConfiguration($this->_em, $meta->name);
- $closureMeta = $this->_em->getClassMetadata($config['closure']);
- $dql = "SELECT c, node FROM {$closureMeta->name} c";
- $dql .= " INNER JOIN c.ancestor node";
- $dql .= " WHERE c.descendant = :node";
- $dql .= " ORDER BY c.depth DESC";
- $q = $this->_em->createQuery($dql);
- $q->setParameters(compact('node'));
- return $q;
- }
- /**
- * Get the Tree path of Nodes by given $node
- *
- * @param object $node
- * @return array - list of Nodes in path
- */
- public function getPath($node)
- {
- return array_map(function($closure) {
- return $closure->getAncestor();
- }, $this->getPathQuery($node)->getResult());
- }
- /**
- * @see getChildrenQueryBuilder
- */
- public function childrenQueryBuilder($node = null, $direct = false, $sortByField = null, $direction = 'ASC', $includeNode = false)
- {
- $meta = $this->getClassMetadata();
- $config = $this->listener->getConfiguration($this->_em, $meta->name);
- $qb = $this->_em->createQueryBuilder();
- if ($node !== null) {
- if ($node instanceof $meta->name) {
- if (!$this->_em->getUnitOfWork()->isInIdentityMap($node)) {
- throw new InvalidArgumentException("Node is not managed by UnitOfWork");
- }
- $where = 'c.ancestor = :node AND ';
- $qb->select('c, node')
- ->from($config['closure'], 'c')
- ->innerJoin('c.descendant', 'node');
- if ($direct) {
- $where .= 'c.depth = 1';
- } else {
- $where .= 'c.descendant <> :node';
- }
- $qb->where($where);
- if ($includeNode) {
- $qb->orWhere('c.ancestor = :node AND c.descendant = :node');
- }
- } else {
- throw new \InvalidArgumentException("Node is not related to this repository");
- }
- } else {
- $qb->select('node')
- ->from($config['useObjectClass'], 'node');
- if ($direct) {
- $qb->where('node.' . $config['parent'] . ' IS NULL');
- }
- }
- if ($sortByField) {
- if ($meta->hasField($sortByField) && in_array(strtolower($direction), array('asc', 'desc'))) {
- $qb->orderBy('node.' . $sortByField, $direction);
- } else {
- throw new InvalidArgumentException("Invalid sort options specified: field - {$sortByField}, direction - {$direction}");
- }
- }
- if ($node) {
- $qb->setParameter('node', $node);
- }
- return $qb;
- }
- /**
- * @see getChildrenQuery
- */
- public function childrenQuery($node = null, $direct = false, $sortByField = null, $direction = 'ASC', $includeNode = false)
- {
- return $this->childrenQueryBuilder($node, $direct, $sortByField, $direction, $includeNode)->getQuery();
- }
- /**
- * @see getChildren
- */
- public function children($node = null, $direct = false, $sortByField = null, $direction = 'ASC', $includeNode = false)
- {
- $result = $this->childrenQuery($node, $direct, $sortByField, $direction, $includeNode)->getResult();
- if ($node) {
- $result = array_map(function($closure) {
- return $closure->getDescendant();
- }, $result);
- }
- return $result;
- }
- /**
- * {@inheritDoc}
- */
- public function getChildrenQueryBuilder($node = null, $direct = false, $sortByField = null, $direction = 'ASC', $includeNode = false)
- {
- return $this->childrenQueryBuilder($node, $direct, $sortByField, $direction, $includeNode);
- }
- /**
- * {@inheritDoc}
- */
- public function getChildrenQuery($node = null, $direct = false, $sortByField = null, $direction = 'ASC', $includeNode = false)
- {
- return $this->childrenQuery($node, $direct, $sortByField, $direction, $includeNode);
- }
- /**
- * {@inheritDoc}
- */
- public function getChildren($node = null, $direct = false, $sortByField = null, $direction = 'ASC', $includeNode = false)
- {
- return $this->children($node, $direct, $sortByField, $direction, $includeNode);
- }
- /**
- * Removes given $node from the tree and reparents its descendants
- *
- * @todo: may be improved, to issue single query on reparenting
- * @param object $node
- * @throws RuntimeException - if something fails in transaction
- * @return void
- */
- public function removeFromTree($node)
- {
- $meta = $this->getClassMetadata();
- if (!$node instanceof $meta->name) {
- throw new InvalidArgumentException("Node is not related to this repository");
- }
- $wrapped = new EntityWrapper($node, $this->_em);
- if (!$wrapped->hasValidIdentifier()) {
- throw new InvalidArgumentException("Node is not managed by UnitOfWork");
- }
- $config = $this->listener->getConfiguration($this->_em, $meta->name);
- $pk = $meta->getSingleIdentifierFieldName();
- $nodeId = $wrapped->getIdentifier();
- $parent = $wrapped->getPropertyValue($config['parent']);
- $dql = "SELECT node FROM {$config['useObjectClass']} node";
- $dql .= " WHERE node.{$config['parent']} = :node";
- $q = $this->_em->createQuery($dql);
- $q->setParameters(compact('node'));
- $nodesToReparent = $q->getResult();
- // process updates in transaction
- $this->_em->getConnection()->beginTransaction();
- try {
- foreach ($nodesToReparent as $nodeToReparent) {
- $id = $meta->getReflectionProperty($pk)->getValue($nodeToReparent);
- $meta->getReflectionProperty($config['parent'])->setValue($nodeToReparent, $parent);
- $dql = "UPDATE {$config['useObjectClass']} node";
- $dql .= " SET node.{$config['parent']} = :parent";
- $dql .= " WHERE node.{$pk} = :id";
- $q = $this->_em->createQuery($dql);
- $q->setParameters(compact('parent', 'id'));
- $q->getSingleScalarResult();
- $this->listener
- ->getStrategy($this->_em, $meta->name)
- ->updateNode($this->_em, $nodeToReparent, $node);
- $oid = spl_object_hash($nodeToReparent);
- $this->_em->getUnitOfWork()->setOriginalEntityProperty($oid, $config['parent'], $parent);
- }
- $dql = "DELETE {$config['useObjectClass']} node";
- $dql .= " WHERE node.{$pk} = :nodeId";
- $q = $this->_em->createQuery($dql);
- $q->setParameters(compact('nodeId'));
- $q->getSingleScalarResult();
- $this->_em->getConnection()->commit();
- } catch (\Exception $e) {
- $this->_em->close();
- $this->_em->getConnection()->rollback();
- throw new \Gedmo\Exception\RuntimeException('Transaction failed: '.$e->getMessage(), null, $e);
- }
- // remove from identity map
- $this->_em->getUnitOfWork()->removeFromIdentityMap($node);
- $node = null;
- }
- /**
- * Process nodes and produce an array with the
- * structure of the tree
- *
- * @param array - Array of nodes
- *
- * @return array - Array with tree structure
- */
- public function buildTreeArray(array $nodes)
- {
- $meta = $this->getClassMetadata();
- $config = $this->listener->getConfiguration($this->_em, $meta->name);
- $nestedTree = array();
- $idField = $meta->getSingleIdentifierFieldName();
- $hasLevelProp = !empty($config['level']);
- $levelProp = $hasLevelProp ? $config['level'] : self::SUBQUERY_LEVEL;
- $childrenIndex = $this->repoUtils->getChildrenIndex();
- if (count($nodes) > 0) {
- $firstLevel = $hasLevelProp ? $nodes[0][0]['descendant'][$levelProp] : $nodes[0][$levelProp];
- $l = 1; // 1 is only an initial value. We could have a tree which has a root node with any level (subtrees)
- $refs = array();
- foreach ($nodes as $n) {
- $node = $n[0]['descendant'];
- $node[$childrenIndex] = array();
- $level = $hasLevelProp ? $node[$levelProp] : $n[$levelProp];
- if ($l < $level) {
- $l = $level;
- }
- if ($l == $firstLevel) {
- $tmp = &$nestedTree;
- } else {
- $tmp = &$refs[$n['parent_id']][$childrenIndex];
- }
- $key = count($tmp);
- $tmp[$key] = $node;
- $refs[$node[$idField]] = &$tmp[$key];
- }
- unset($refs);
- }
- return $nestedTree;
- }
- /**
- * {@inheritdoc}
- */
- public function getNodesHierarchy($node = null, $direct = false, array $options = array(), $includeNode = false)
- {
- return $this->getNodesHierarchyQuery($node, $direct, $options, $includeNode)->getArrayResult();
- }
- /**
- * {@inheritdoc}
- */
- public function getNodesHierarchyQuery($node = null, $direct = false, array $options = array(), $includeNode = false)
- {
- return $this->getNodesHierarchyQueryBuilder($node, $direct, $options, $includeNode)->getQuery();
- }
- /**
- * {@inheritdoc}
- */
- public function getNodesHierarchyQueryBuilder($node = null, $direct = false, array $options = array(), $includeNode = false)
- {
- $meta = $this->getClassMetadata();
- $config = $this->listener->getConfiguration($this->_em, $meta->name);
- $idField = $meta->getSingleIdentifierFieldName();
- $subQuery = '';
- $hasLevelProp = isset($config['level']) && $config['level'];
- if (!$hasLevelProp) {
- $subQuery = ', (SELECT MAX(c2.depth) + 1 FROM '.$config['closure'];
- $subQuery .= ' c2 WHERE c2.descendant = c.descendant GROUP BY c2.descendant) AS '.self::SUBQUERY_LEVEL;
- }
- $q = $this->_em->createQueryBuilder()
- ->select('c, node, p.'.$idField.' AS parent_id'.$subQuery)
- ->from($config['closure'], 'c')
- ->innerJoin('c.descendant', 'node')
- ->leftJoin('node.parent', 'p')
- ->addOrderBy(($hasLevelProp ? 'node.'.$config['level'] : self::SUBQUERY_LEVEL), 'asc');
- if ($node !== null) {
- $q->where('c.ancestor = :node');
- $q->setParameters(compact('node'));
- } else {
- $q->groupBy('c.descendant');
- }
- if (!$includeNode) {
- $q->andWhere('c.ancestor != c.descendant');
- }
- $defaultOptions = array();
- $options = array_merge($defaultOptions, $options);
- if (isset($options['childSort']) && is_array($options['childSort']) &&
- isset($options['childSort']['field']) && isset($options['childSort']['dir'])) {
- $q->addOrderBy(
- 'node.'.$options['childSort']['field'],
- strtolower($options['childSort']['dir']) == 'asc' ? 'asc' : 'desc'
- );
- }
- return $q;
- }
- /**
- * {@inheritdoc}
- */
- protected function validate()
- {
- return $this->listener->getStrategy($this->_em, $this->getClassMetadata()->name)->getName() === Strategy::CLOSURE;
- }
- }
|