Files
espocrm/application/Espo/Services/RecordTree.php
Yuri Kuznetsov 6f7ef14482 fixes
2021-10-29 13:48:03 +03:00

388 lines
10 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2021 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://www.espocrm.com
*
* EspoCRM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* EspoCRM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Services;
use Espo\ORM\{
Entity,
Collection,
};
use Espo\Core\{
Exceptions\NotFound,
Exceptions\Error,
Exceptions\Forbidden,
Select\SearchParams,
Select\Where\Item as WhereItem,
Acl\Table as AclTable,
Record\UpdateParams,
};
use Espo\Core\Acl\Exceptions\NotImplemented;
use stdClass;
class RecordTree extends Record
{
const MAX_DEPTH = 2;
private $seed = null;
protected $subjectEntityType = null;
protected $categoryField = null;
public function __construct()
{
parent::__construct();
if (!$this->subjectEntityType && $this->entityType !== 'RecordTree') {
$this->subjectEntityType = substr($this->entityType, 0, strlen($this->entityType) - 8);
}
if ($this->entityType === 'RecordTree') {
$this->entityType = null;
}
}
public function setEntityType(string $entityType): void
{
parent::setEntityType($entityType);
if (!$this->subjectEntityType) {
$this->subjectEntityType = substr($this->entityType, 0, strlen($this->entityType) - 8);
}
}
public function getTree(
string $parentId = null,
array $params = [],
?int $maxDepth = null
): ?Collection {
if (!$this->acl->check($this->getEntityType(), 'read')) {
throw new Forbidden();
}
return $this->getTreeInternal($parentId, $params, $maxDepth, 0);
}
protected function getTreeInternal(
string $parentId = null,
array $params = [],
?int $maxDepth = null,
int $level = 0
): ?Collection {
if (!$maxDepth) {
$maxDepth = self::MAX_DEPTH;
}
if ($level === self::MAX_DEPTH) {
return null;
}
$searchParams = SearchParams::fromRaw($params);
$selectBuilder = $this->selectBuilderFactory
->create()
->from($this->entityType)
->withStrictAccessControl()
->withSearchParams($searchParams)
->buildQueryBuilder()
->where([
'parentId' => $parentId,
]);
$selectBuilder->order([]);
if ($this->hasOrder()) {
$selectBuilder->order('order', 'ASC');
}
$selectBuilder->order('name', 'ASC');
$filterItems = false;
if ($this->checkFilterOnlyNotEmpty()) {
$filterItems = true;
}
$collection = $this->getRepository()
->clone($selectBuilder->build())
->find();
if (!empty($params['onlyNotEmpty']) || $filterItems) {
foreach ($collection as $i => $entity) {
if ($this->checkItemIsEmpty($entity)) {
unset($collection[$i]);
}
}
}
foreach ($collection as $entity) {
$childList = $this->getTreeInternal($entity->id, $params, $maxDepth, $level + 1);
$entity->set('childList', $childList ? $childList->getValueMapList() : null);
}
return $collection;
}
protected function checkFilterOnlyNotEmpty(): bool
{
try {
if (!$this->acl->checkScope($this->subjectEntityType, 'create')) {
return true;
}
}
catch (NotImplemented $e) {
return false;
}
return false;
}
protected function checkItemIsEmpty(Entity $entity): bool
{
if (!$this->categoryField) {
return false;
}
$query = $this->selectBuilderFactory
->create()
->from($this->subjectEntityType)
->withStrictAccessControl()
->withWhere(
WhereItem::fromRaw([
'type' => 'inCategory',
'attribute' => $this->categoryField,
'value' => $entity->id,
])
)
->build();
$one = $this->entityManager
->getRepository($this->subjectEntityType)
->clone($query)
->findOne();
if ($one) {
return false;
}
return true;
}
public function getCategoryData(?string $id): ?stdClass
{
if (!$this->acl->check($this->entityType, AclTable::ACTION_READ)) {
throw new Forbidden();
}
if ($id === null) {
return null;
}
$category = $this->entityManager->getEntity($this->entityType, $id);
if (!$category) {
throw new NotFound();
}
if (!$this->acl->check($category, AclTable::ACTION_READ)) {
throw new Forbidden();
}
return (object) [
'upperId' => $category->get('parentId'),
'upperName' => $category->get('parentName'),
'id' => $id,
'name' => $category->get('name'),
];
}
public function getTreeItemPath(?string $parentId = null): array
{
if (!$this->acl->check($this->entityType, AclTable::ACTION_READ)) {
throw new Forbidden();
}
$arr = [];
while (1) {
if (empty($parentId)) {
break;
}
$parent = $this->getEntityManager()->getEntity($this->entityType, $parentId);
if ($parent) {
$parentId = $parent->get('parentId');
array_unshift($arr, $parent->id);
}
else {
$parentId = null;
}
}
return $arr;
}
protected function getSeed()
{
if (empty($this->seed)) {
$this->seed = $this->getEntityManager()->getEntity($this->getEntityType());
}
return $this->seed;
}
protected function hasOrder()
{
$seed = $this->getSeed();
if ($seed->hasAttribute('order')) {
return true;
}
return false;
}
protected function beforeCreateEntity(Entity $entity, $data)
{
parent::beforeCreateEntity($entity, $data);
if (!empty($data->parentId)) {
$parent = $this->getEntityManager()->getEntity($this->getEntityType(), $data->parentId);
if (!$parent) {
throw new Error("Tried to create tree item entity with not existing parent.");
}
if (!$this->getAcl()->check($parent, 'edit')) {
throw new Forbidden();
}
}
}
public function update(string $id, stdClass $data, UpdateParams $params): Entity
{
if (!empty($data->parentId) && $data->parentId === $id) {
throw new Forbidden();
}
return parent::update($id, $data, $params);
}
public function link(string $id, string $link, string $foreignId): void
{
if ($id == $foreignId) {
throw new Forbidden();
}
parent::link($id, $link, $foreignId);
}
public function getLastChildrenIdList(?string $parentId = null): array
{
if (!$this->acl->check($this->getEntityType(), 'read')) {
throw new Forbidden();
}
$query = $this->selectBuilderFactory
->create()
->from($this->entityType)
->withStrictAccessControl()
->buildQueryBuilder()
->where([
'parentId' => $parentId,
])
->build();
$idList = [];
$includingRecords = false;
if ($this->checkFilterOnlyNotEmpty()) {
$includingRecords = true;
}
$collection = $this->getRepository()
->clone($query)
->select(['id'])
->find();
foreach ($collection as $entity) {
$subQuery = $this->selectBuilderFactory
->create()
->from($this->entityType)
->withStrictAccessControl()
->buildQueryBuilder()
->where([
'parentId' => $entity->id,
])
->build();
$count = $this->getRepository()
->clone($subQuery)
->count();
if (!$count) {
$idList[] = $entity->id;
continue;
}
if ($includingRecords) {
$isNotEmpty = false;
$subCollection = $this->getRepository()
->clone($subQuery)
->find();
foreach ($subCollection as $subEntity) {
if (!$this->checkItemIsEmpty($subEntity)) {
$isNotEmpty = true;
break;
}
}
if (!$isNotEmpty) {
$idList[] = $entity->id;
}
}
}
return $idList;
}
}