mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 23:16:03 +00:00
156 lines
4.5 KiB
PHP
156 lines
4.5 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\Core\Select\Where;
|
|
|
|
use Espo\{
|
|
Core\Exceptions\Error,
|
|
ORM\EntityManager,
|
|
ORM\Entity,
|
|
ORM\Query\SelectBuilder as QueryBuilder,
|
|
ORM\QueryComposer\BaseQueryComposer as QueryComposer,
|
|
};
|
|
|
|
class Scanner
|
|
{
|
|
private $entityManager;
|
|
|
|
private $seedHash = [];
|
|
|
|
private $nestingTypeList = [
|
|
'or',
|
|
'and',
|
|
];
|
|
|
|
private $subQueryTypeList = [
|
|
'subQueryIn',
|
|
'subQueryNotIn',
|
|
'not',
|
|
];
|
|
|
|
public function __construct(EntityManager $entityManager)
|
|
{
|
|
$this->entityManager = $entityManager;
|
|
}
|
|
|
|
public function applyLeftJoins(QueryBuilder $queryBuilder, Item $item): void
|
|
{
|
|
$entityType = $queryBuilder->build()->getFrom();
|
|
|
|
if (!$entityType) {
|
|
throw new Error("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 (strpos($attribute, ':') !== false) {
|
|
$argumentList = QueryComposer::getAllAttributesFromComplexExpression($attribute);
|
|
|
|
foreach ($argumentList as $argument) {
|
|
$this->applyLeftJoinsFromAttribute($queryBuilder, $argument, $entityType);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
$seed = $this->getSeed($entityType);
|
|
|
|
if (strpos($attribute, '.') !== false) {
|
|
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 = $seed->getAttributeParam($attribute, 'relation');
|
|
|
|
if ($relation) {
|
|
$queryBuilder->leftJoin($relation);
|
|
}
|
|
}
|
|
}
|
|
|
|
private function getSeed(string $entityType): Entity
|
|
{
|
|
if (!isset($this->seedHash[$entityType])) {
|
|
$this->seedHash[$entityType] = $this->entityManager->getEntity($entityType);
|
|
}
|
|
|
|
return $this->seedHash[$entityType];
|
|
}
|
|
}
|