Files
espocrm/application/Espo/Core/Select/Where/Scanner.php
Yuri Kuznetsov 698db9ebd6 ref
2023-02-13 14:52:00 +02:00

181 lines
5.3 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2023 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\Core\Select\Where;
use Espo\Core\Select\Where\Item\Type;
use Espo\ORM\EntityManager;
use Espo\ORM\Entity;
use Espo\ORM\BaseEntity;
use Espo\ORM\Query\SelectBuilder as QueryBuilder;
use Espo\ORM\QueryComposer\BaseQueryComposer as QueryComposer;
use RuntimeException;
/**
* Scans where-item to apply needed joins to a query builder.
*/
class Scanner
{
/** @var array<string, Entity> */
private array $seedHash = [];
/** @var string[] */
private $nestingTypeList = [
Type::OR,
Type::AND,
];
/** @var string[] */
private array $subQueryTypeList = [
Type::SUBQUERY_IN,
Type::SUBQUERY_NOT_IN,
Type::NOT,
];
public function __construct(private EntityManager $entityManager)
{}
/**
* Apply needed joins to a query builder.
*/
public function apply(QueryBuilder $queryBuilder, Item $item): void
{
$entityType = $queryBuilder->build()->getFrom();
if (!$entityType) {
throw new RuntimeException("No entity type.");
}
$this->applyLeftJoinsFromItem($queryBuilder, $item, $entityType);
}
private function applyLeftJoinsFromItem(QueryBuilder $queryBuilder, Item $item, string $entityType): void
{
$type = $item->getType();
$value = $item->getValue();
$attribute = $item->getAttribute();
if (in_array($type, $this->subQueryTypeList)) {
return;
}
if (in_array($type, $this->nestingTypeList)) {
if (!is_array($value)) {
return;
}
foreach ($value as $subItem) {
$this->applyLeftJoinsFromItem($queryBuilder, Item::fromRaw($subItem), $entityType);
}
return;
}
if (!$attribute) {
return;
}
$this->applyLeftJoinsFromAttribute($queryBuilder, $attribute, $entityType);
}
private function applyLeftJoinsFromAttribute(
QueryBuilder $queryBuilder,
string $attribute,
string $entityType
): void {
if (str_contains($attribute, ':')) {
$argumentList = QueryComposer::getAllAttributesFromComplexExpression($attribute);
foreach ($argumentList as $argument) {
$this->applyLeftJoinsFromAttribute($queryBuilder, $argument, $entityType);
}
return;
}
$seed = $this->getSeed($entityType);
if (str_contains($attribute, '.')) {
list($link, $attribute) = explode('.', $attribute);
if ($seed->hasRelation($link)) {
$queryBuilder->leftJoin($link);
if (
in_array($seed->getRelationType($link), [Entity::HAS_MANY, Entity::MANY_MANY])
) {
$queryBuilder->distinct();
}
}
return;
}
$attributeType = $seed->getAttributeType($attribute);
if ($attributeType === Entity::FOREIGN) {
$relation = $this->getAttributeParam($seed, $attribute, 'relation');
if ($relation) {
$queryBuilder->leftJoin($relation);
}
}
}
private function getSeed(string $entityType): Entity
{
if (!isset($this->seedHash[$entityType])) {
$this->seedHash[$entityType] = $this->entityManager->getNewEntity($entityType);
}
return $this->seedHash[$entityType];
}
/**
* @return mixed
*/
private function getAttributeParam(Entity $entity, string $attribute, string $param)
{
if ($entity instanceof BaseEntity) {
return $entity->getAttributeParam($attribute, $param);
}
$entityDefs = $this->entityManager
->getDefs()
->getEntity($entity->getEntityType());
if (!$entityDefs->hasAttribute($attribute)) {
return null;
}
return $entityDefs->getAttribute($attribute)->getParam($param);
}
}