Initial commit

This commit is contained in:
root
2026-01-19 17:44:46 +01:00
commit 823af8b11d
8721 changed files with 1130846 additions and 0 deletions

View File

@@ -0,0 +1,142 @@
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2025 EspoCRM, Inc.
* Website: https://www.espocrm.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://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 Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Core\Action\Actions;
use Espo\Core\Acl;
use Espo\Core\Acl\Table;
use Espo\Core\Action\Action;
use Espo\Core\Action\Data;
use Espo\Core\Action\Params;
use Espo\Core\Currency\ConfigDataProvider as CurrencyConfigDataProvider;
use Espo\Core\ORM\Entity as CoreEntity;
use Espo\Core\Currency\Rates as CurrencyRates;
use Espo\Core\Exceptions\BadRequest;
use Espo\Core\Exceptions\Forbidden;
use Espo\Core\Exceptions\NotFound;
use Espo\Core\ORM\EntityManager;
use Espo\Core\ORM\Repository\Option\SaveOption;
use Espo\Core\Utils\Metadata;
use Espo\Entities\User;
use Espo\Tools\Currency\Conversion\EntityConverterFactory;
use RuntimeException;
/**
* @noinspection PhpUnused
*/
class ConvertCurrency implements Action
{
public function __construct(
private EntityConverterFactory $converterFactory,
private Acl $acl,
private EntityManager $entityManager,
private Metadata $metadata,
private CurrencyConfigDataProvider $configDataProvider,
private User $user
) {}
public function process(Params $params, Data $data): void
{
$entityType = $params->getEntityType();
$id = $params->getId();
if (!$this->acl->checkScope($entityType, Acl\Table::ACTION_EDIT)) {
throw new Forbidden();
}
$this->checkFieldAccess($entityType);
$baseCurrency = $this->configDataProvider->getBaseCurrency();
$targetCurrency = $data->get('targetCurrency');
if (!$targetCurrency) {
throw new BadRequest("No target currency.");
}
$rates = $this->getRatesFromData($data) ??
$this->configDataProvider->getCurrencyRates();
if ($targetCurrency !== $baseCurrency && !$rates->hasRate($targetCurrency)) {
throw new BadRequest("Target currency rate is not specified.");
}
$entity = $this->entityManager->getEntityById($entityType, $id);
if (!$entity) {
throw new NotFound();
}
if (!$this->acl->checkEntityEdit($entity)) {
throw new Forbidden("No 'edit' access.");
}
if (!$entity instanceof CoreEntity) {
throw new RuntimeException("Only Core-Entity allowed.");
}
$converter = $this->converterFactory->create($entityType);
$converter->convert($entity, $targetCurrency, $rates);
$this->entityManager->saveEntity($entity, [SaveOption::MODIFIED_BY_ID => $this->user->getId()]);
}
private function getRatesFromData(Data $data): ?CurrencyRates
{
if ($data->get('rates') === null) {
return null;
}
$baseCurrency = $this->configDataProvider->getBaseCurrency();
$ratesArray = get_object_vars($data->get('rates'));
$ratesArray[$baseCurrency] = 1.0;
return CurrencyRates::fromAssoc($ratesArray, $baseCurrency);
}
/**
* @throws Forbidden
*/
private function checkFieldAccess(string $entityType): void
{
/** @var string[] $requiredFieldList */
$requiredFieldList = $this->metadata->get(['scopes', $entityType, 'currencyConversionAccessRequiredFieldList']);
if ($requiredFieldList === null) {
return;
}
foreach ($requiredFieldList as $field) {
if (!$this->acl->checkField($entityType, $field, Table::ACTION_EDIT)) {
throw new Forbidden("No edit access to field `$field`.");
}
}
}
}

View File

@@ -0,0 +1,69 @@
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2025 EspoCRM, Inc.
* Website: https://www.espocrm.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://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 Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Core\Action\Actions;
use Espo\Core\Acl;
use Espo\Core\Acl\Table;
use Espo\Core\Action\Action;
use Espo\Core\Action\Actions\Merge\Merger;
use Espo\Core\Action\Data;
use Espo\Core\Action\Params;
use Espo\Core\Exceptions\BadRequest;
use Espo\Core\Exceptions\Forbidden;
use stdClass;
class Merge implements Action
{
public function __construct(private Acl $acl, private Merger $merger)
{}
public function process(Params $params, Data $data): void
{
$entityType = $params->getEntityType();
if (!$this->acl->checkScope($entityType, Table::ACTION_EDIT)) {
throw new Forbidden();
}
$sourceIdList = $data->get('sourceIdList');
$attributes = $data->get('attributes');
if (!is_array($sourceIdList)) {
throw new BadRequest("No 'sourceIdList'.");
}
if (!$attributes instanceof stdClass) {
throw new BadRequest("No 'attributes'.");
}
$this->merger->process($params, $sourceIdList, $attributes);
}
}

View File

@@ -0,0 +1,431 @@
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2025 EspoCRM, Inc.
* Website: https://www.espocrm.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://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 Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Core\Action\Actions\Merge;
use Espo\Core\Acl;
use Espo\Core\Acl\Table;
use Espo\Core\Action\Params;
use Espo\Core\Exceptions\Forbidden;
use Espo\Core\Exceptions\NotFound;
use Espo\Core\Name\Field;
use Espo\Core\Name\Link;
use Espo\Core\ORM\EntityManager;
use Espo\Core\ORM\Type\FieldType;
use Espo\Core\Record\ActionHistory\Action;
use Espo\Core\Record\ServiceContainer;
use Espo\Core\Utils\Metadata;
use Espo\Core\Utils\ObjectUtil;
use Espo\Entities\Note;
use Espo\ORM\Entity;
use Espo\Entities\EmailAddress;
use Espo\Entities\PhoneNumber;
use Espo\ORM\Type\RelationType;
use stdClass;
class Merger
{
public function __construct(
private Acl $acl,
private Metadata $metadata,
private EntityManager $entityManager,
private ServiceContainer $serviceContainer
) {}
/**
* @param string[] $sourceIdList
* @throws NotFound
* @throws Forbidden
*/
public function process(Params $params, array $sourceIdList, stdClass $data): void
{
$clonedData = ObjectUtil::clone($data);
$entityType = $params->getEntityType();
$id = $params->getId();
$entity = $this->entityManager->getEntityById($entityType, $id);
if (!$entity) {
throw new NotFound("Record not found.");
}
if (!$this->acl->check($entity, Table::ACTION_EDIT)) {
throw new Forbidden("No edit access.");
}
$service = $this->serviceContainer->get($entityType);
$service->filterUpdateInput($clonedData);
$entity->set($clonedData);
$this->unsetNotActualAttributes($entity);
if (!$service->checkAssignment($entity)) {
throw new Forbidden("Assignment permission failure.");
}
$sourceEntityList = $this->fetchSourceEntityList($entityType, $sourceIdList);
$entityDefs = $this->entityManager->getDefs()->getEntity($entityType);
$hasPhoneNumber =
$entityDefs->hasField(Field::PHONE_NUMBER) &&
$entityDefs->getField(Field::PHONE_NUMBER)->getType() === FieldType::PHONE;
$hasEmailAddress =
$entityDefs->hasField(Field::EMAIL_ADDRESS) &&
$entityDefs->getField(Field::EMAIL_ADDRESS)->getType() === FieldType::EMAIL;
if ($hasPhoneNumber) {
$phoneNumberToRelateList = $this->fetchEntityPhoneNumberList($entity);
}
if ($hasEmailAddress) {
$emailAddressToRelateList = $this->fetchEntityEmailAddressList($entity);
}
foreach ($sourceEntityList as $sourceEntity) {
if ($hasPhoneNumber) {
$phoneNumberToRelateList = array_merge(
$phoneNumberToRelateList,
$this->fetchEntityPhoneNumberList($sourceEntity)
);
}
if ($hasEmailAddress) {
$emailAddressToRelateList = array_merge(
$emailAddressToRelateList,
$this->fetchEntityEmailAddressList($sourceEntity)
);
}
$this->updateNotes($sourceEntity, $entity);
}
$mergeLinkList = $this->getMergeLinkList($entityType);
foreach ($sourceEntityList as $sourceEntity) {
foreach ($mergeLinkList as $link) {
$this->updateRelations($sourceEntity, $entity, $link);
}
}
foreach ($sourceEntityList as $sourceEntity) {
$this->entityManager->removeEntity($sourceEntity);
$service->processActionHistoryRecord(Action::DELETE, $sourceEntity);
}
if ($hasPhoneNumber) {
$this->preparePhoneNumberData($phoneNumberToRelateList, $clonedData);
}
if ($hasEmailAddress) {
$this->prepareEmailAddressData($emailAddressToRelateList, $clonedData);
}
$entity->set($clonedData);
$this->entityManager->saveEntity($entity);
$service->processActionHistoryRecord(Action::UPDATE, $entity);
}
/**
* @param string[] $sourceIdList
* @return Entity[]
* @throws Forbidden
* @throws NotFound
*/
private function fetchSourceEntityList(string $entityType, array $sourceIdList): array
{
$list = [];
foreach ($sourceIdList as $sourceId) {
$sourceEntity = $this->entityManager->getEntityById($entityType, $sourceId);
if (!$sourceEntity) {
throw new NotFound("Source record not found.");
}
$list[] = $sourceEntity;
if (
!$this->acl->check($sourceEntity, Table::ACTION_READ) ||
!$this->acl->check($sourceEntity, Table::ACTION_EDIT) ||
!$this->acl->check($sourceEntity, Table::ACTION_DELETE)
) {
throw new Forbidden("No read, edit or delete access for one of source entities.");
}
}
return $list;
}
/**
* @return PhoneNumber[]
*/
private function fetchEntityPhoneNumberList(Entity $entity): array
{
$list = [];
/** @var iterable<PhoneNumber> $collection */
$collection = $this->entityManager
->getRelation($entity, 'phoneNumbers')
->find();
foreach ($collection as $entity) {
$list[] = $entity;
}
return $list;
}
/**
* @return EmailAddress[]
*/
private function fetchEntityEmailAddressList(Entity $entity): array
{
$list = [];
/** @var iterable<EmailAddress> $collection */
$collection = $this->entityManager
->getRelation($entity, Link::EMAIL_ADDRESSES)
->find();
foreach ($collection as $entity) {
$list[] = $entity;
}
return $list;
}
private function updateNotes(Entity $sourceEntity, Entity $targetEntity): void
{
$updateQuery = $this->entityManager
->getQueryBuilder()
->update()
->in(Note::ENTITY_TYPE)
->set([
'parentId' => $targetEntity->getId(),
'parentType' => $targetEntity->getEntityType(),
])
->where([
'type' => [
Note::TYPE_POST,
Note::TYPE_EMAIL_SENT,
Note::TYPE_EMAIL_RECEIVED,
],
'parentId' => $sourceEntity->getId(),
'parentType' => $sourceEntity->getEntityType(),
])
->build();
$this->entityManager
->getQueryExecutor()
->execute($updateQuery);
}
private function updateRelations(Entity $sourceEntity, Entity $targetEntity, string $link): void
{
$entityType = $sourceEntity->getEntityType();
$columnAttributeMap = $this->getLinkColumnAttributeMap($entityType, $link);
$collection = $this->entityManager
->getRelation($sourceEntity, $link)
->find();
foreach ($collection as $relatedEntity) {
$map = null;
if ($columnAttributeMap) {
$map = array_map(fn ($attribute) => $relatedEntity->get($attribute), $columnAttributeMap);
}
$this->entityManager
->getRelation($targetEntity, $link)
->relate($relatedEntity, $map);
}
}
/**
* @return string[]
*/
private function getMergeLinkList(string $entityType): array
{
$list = [];
$entityDefs = $this->entityManager->getDefs()->getEntity($entityType);
$ignoreList = [
Link::EMAIL_ADDRESSES,
'phoneNumbers',
];
foreach ($entityDefs->getRelationList() as $relationDefs) {
$name = $relationDefs->getName();
$type = $relationDefs->getType();
if (in_array($name, $ignoreList)) {
continue;
}
$notMergeable = $this->metadata
->get(['entityDefs', $entityType, 'links', $name, 'notMergeable']);
if ($notMergeable) {
continue;
}
if (
$type !== Entity::HAS_MANY &&
$type !== Entity::HAS_CHILDREN &&
$type !== Entity::MANY_MANY
) {
continue;
}
$list[] = $name;
}
return $list;
}
/**
* @param PhoneNumber[] $phoneNumberList
*/
private function preparePhoneNumberData(array $phoneNumberList, stdClass $data): void
{
$phoneNumberData = [];
foreach ($phoneNumberList as $i => $phoneNumber) {
$o = (object) [];
$o->phoneNumber = $phoneNumber->getNumber();
$o->primary = false;
if (empty($data->phoneNumber) && $i === 0) {
$o->primary = true;
}
if (!empty($data->phoneNumber)) {
$o->primary = $o->phoneNumber === $data->phoneNumber;
}
$o->optOut = $phoneNumber->isOptedOut();
$o->invalid = $phoneNumber->isInvalid();
$o->type = $phoneNumber->getType();
$phoneNumberData[] = $o;
}
$data->phoneNumberData = $phoneNumberData;
}
/**
* @param EmailAddress[] $emailAddressList
*/
private function prepareEmailAddressData(array $emailAddressList, stdClass $data): void
{
$emailAddressData = [];
foreach ($emailAddressList as $i => $emailAddress) {
$o = (object) [];
$o->emailAddress = $emailAddress->getAddress();
$o->primary = false;
if (empty($data->emailAddress) && $i === 0) {
$o->primary = true;
}
if (!empty($data->emailAddress)) {
$o->primary = $o->emailAddress === $data->emailAddress;
}
$o->optOut = $emailAddress->isOptedOut();
$o->invalid = $emailAddress->isInvalid();
$emailAddressData[] = $o;
}
$data->emailAddressData = $emailAddressData;
}
private function unsetNotActualAttributes(Entity $entity): void
{
$fieldDefsList = $this->entityManager
->getDefs()
->getEntity($entity->getEntityType())
->getFieldList();
foreach ($fieldDefsList as $fieldDefs) {
$field = $fieldDefs->getName();
if ($fieldDefs->getType() === FieldType::LINK && $entity->isAttributeChanged($field . 'Id')) {
$entity->clear($field . 'Name');
}
}
}
/**
* @return ?array<string, string>
*/
private function getLinkColumnAttributeMap(string $entityType, string $link): ?array
{
$entityDefs = $this->entityManager
->getDefs()
->getEntity($entityType);
$columnAttributeMap = null;
$relationDefs = $entityDefs->tryGetRelation($link);
if (
$relationDefs &&
$relationDefs->getType() === RelationType::MANY_MANY &&
$relationDefs->hasForeignEntityType() &&
$relationDefs->hasForeignRelationName()
) {
$foreignRelationDefs = $this->entityManager
->getDefs()
->getEntity($relationDefs->getForeignEntityType())
->getRelation($relationDefs->getForeignRelationName());
/** ?@var array<string, string> $columnAttributeMap */
$columnAttributeMap = $foreignRelationDefs->getParam('columnAttributeMap');
}
return $columnAttributeMap;
}
}