Files
bsiggel 127fa6503b chore: Update copyright year from 2025 to 2026 across core files
- Updated copyright headers in 3,055 core application files
- Changed 'Copyright (C) 2014-2025' to 'Copyright (C) 2014-2026'
- Added 123 new files from EspoCRM core updates
- Removed 4 deprecated files
- Total changes: 61,637 insertions, 54,283 deletions

This is a routine maintenance update for the new year 2026.
2026-02-07 16:05:21 +01:00

568 lines
20 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2026 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\FieldProcessing\EmailAddress;
use Espo\Core\Name\Link;
use Espo\Core\ORM\Repository\Option\SaveOption;
use Espo\Core\ORM\Type\FieldType;
use Espo\Entities\EmailAddress;
use Espo\ORM\Name\Attribute;
use Espo\Repositories\EmailAddress as EmailAddressRepository;
use Espo\ORM\Entity;
use Espo\Core\ApplicationState;
use Espo\Core\FieldProcessing\Saver as SaverInterface;
use Espo\Core\FieldProcessing\Saver\Params;
use Espo\Core\ORM\EntityManager;
/**
* @implements SaverInterface<Entity>
*/
class Saver implements SaverInterface
{
private const ATTR_EMAIL_ADDRESS = 'emailAddress';
private const ATTR_EMAIL_ADDRESS_DATA = 'emailAddressData';
private const ATTR_EMAIL_ADDRESS_IS_OPTED_OUT = 'emailAddressIsOptedOut';
private const ATTR_EMAIL_ADDRESS_IS_INVALID = 'emailAddressIsInvalid';
private const LINK_EMAIL_ADDRESSES = Link::EMAIL_ADDRESSES;
public function __construct(
private EntityManager $entityManager,
private ApplicationState $applicationState,
private AccessChecker $accessChecker
) {}
public function process(Entity $entity, Params $params): void
{
$entityType = $entity->getEntityType();
$defs = $this->entityManager->getDefs()->getEntity($entityType);
if (!$defs->hasField(self::ATTR_EMAIL_ADDRESS)) {
return;
}
if ($defs->getField(self::ATTR_EMAIL_ADDRESS)->getType() !== FieldType::EMAIL) {
return;
}
$emailAddressData = null;
if ($entity->has(self::ATTR_EMAIL_ADDRESS_DATA)) {
$emailAddressData = $entity->get(self::ATTR_EMAIL_ADDRESS_DATA);
}
if ($emailAddressData !== null && $entity->isAttributeChanged(self::ATTR_EMAIL_ADDRESS_DATA)) {
$this->storeData($entity);
return;
}
if ($entity->has(self::ATTR_EMAIL_ADDRESS)) {
$this->storePrimary($entity);
}
}
private function storeData(Entity $entity): void
{
if (!$entity->has(self::ATTR_EMAIL_ADDRESS_DATA)) {
return;
}
$emailAddressValue = $entity->get(self::ATTR_EMAIL_ADDRESS);
if (is_string($emailAddressValue)) {
$emailAddressValue = trim($emailAddressValue);
}
$emailAddressData = $entity->get(self::ATTR_EMAIL_ADDRESS_DATA);
if (!is_array($emailAddressData)) {
return;
}
$noPrimary = array_filter($emailAddressData, fn ($item) => !empty($item->primary)) === [];
if ($noPrimary && $emailAddressData !== []) {
$emailAddressData[0]->primary = true;
}
$keyList = [];
$keyPreviousList = [];
$previousEmailAddressData = [];
if (!$entity->isNew()) {
/** @var EmailAddressRepository $repository */
$repository = $this->entityManager->getRepository(EmailAddress::ENTITY_TYPE);
$previousEmailAddressData = $repository->getEmailAddressData($entity);
}
$hash = (object) [];
$hashPrevious = (object) [];
foreach ($emailAddressData as $row) {
$key = trim($row->emailAddress);
if (empty($key)) {
continue;
}
$key = strtolower($key);
$hash->$key = [
'primary' => !empty($row->primary),
'optOut' => !empty($row->optOut),
'invalid' => !empty($row->invalid),
'emailAddress' => trim($row->emailAddress),
];
$keyList[] = $key;
}
if (
$entity->has(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT) &&
(
$entity->isNew() ||
(
$entity->hasFetched(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT) &&
$entity->isAttributeChanged(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT)
)
) &&
$emailAddressValue
) {
$key = strtolower($emailAddressValue);
if ($key && isset($hash->$key)) {
$hash->{$key}['optOut'] = (bool) $entity->get(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT);
}
}
if (
$entity->has(self::ATTR_EMAIL_ADDRESS_IS_INVALID) &&
(
$entity->isNew() ||
(
$entity->hasFetched(self::ATTR_EMAIL_ADDRESS_IS_INVALID) &&
$entity->isAttributeChanged(self::ATTR_EMAIL_ADDRESS_IS_INVALID)
)
) &&
$emailAddressValue
) {
$key = strtolower($emailAddressValue);
if ($key && isset($hash->$key)) {
$hash->{$key}['invalid'] = (bool) $entity->get(self::ATTR_EMAIL_ADDRESS_IS_INVALID);
}
}
foreach ($previousEmailAddressData as $row) {
$key = $row->lower;
if (empty($key)) {
continue;
}
$hashPrevious->$key = [
'primary' => (bool) $row->primary,
'optOut' => (bool) $row->optOut,
'invalid' => (bool) $row->invalid,
'emailAddress' => $row->emailAddress,
];
$keyPreviousList[] = $key;
}
$primary = null;
$toCreateList = [];
$toUpdateList = [];
$toRemoveList = [];
$revertData = [];
foreach ($keyList as $key) {
$new = true;
$changed = false;
if ($hash->{$key}['primary']) {
$primary = $key;
}
if (property_exists($hashPrevious, $key)) {
$new = false;
$changed =
$hash->{$key}['optOut'] != $hashPrevious->{$key}['optOut'] ||
$hash->{$key}['invalid'] != $hashPrevious->{$key}['invalid'] ||
$hash->{$key}['emailAddress'] !== $hashPrevious->{$key}['emailAddress'];
if (
$hash->{$key}['primary'] &&
$hash->{$key}['primary'] === $hashPrevious->{$key}['primary']
) {
$primary = null;
}
}
if ($new) {
$toCreateList[] = $key;
}
if ($changed) {
$toUpdateList[] = $key;
}
}
foreach ($keyPreviousList as $key) {
if (!property_exists($hash, $key)) {
$toRemoveList[] = $key;
}
}
foreach ($toRemoveList as $address) {
$emailAddress = $this->getByAddress($address);
if (!$emailAddress) {
continue;
}
$delete = $this->entityManager
->getQueryBuilder()
->delete()
->from('EntityEmailAddress')
->where([
'entityId' => $entity->getId(),
'entityType' => $entity->getEntityType(),
'emailAddressId' => $emailAddress->getId(),
])
->build();
$this->entityManager->getQueryExecutor()->execute($delete);
}
foreach ($toUpdateList as $address) {
$emailAddress = $this->getByAddress($address);
if ($emailAddress) {
$skipSave = $this->checkChangeIsForbidden($emailAddress, $entity);
if (!$skipSave) {
$emailAddress->set([
'optOut' => $hash->{$address}['optOut'],
'invalid' => $hash->{$address}['invalid'],
'name' => $hash->{$address}['emailAddress']
]);
$this->entityManager->saveEntity($emailAddress);
} else {
$revertData[$address] = [
'optOut' => $emailAddress->isOptedOut(),
'invalid' => $emailAddress->isInvalid(),
];
}
}
}
foreach ($toCreateList as $address) {
$emailAddress = $this->getByAddress($address);
if (!$emailAddress) {
$emailAddress = $this->entityManager->getNewEntity(EmailAddress::ENTITY_TYPE);
$emailAddress->set([
'name' => $hash->{$address}['emailAddress'],
'optOut' => $hash->{$address}['optOut'],
'invalid' => $hash->{$address}['invalid'],
]);
$this->entityManager->saveEntity($emailAddress);
} else {
$skipSave = $this->checkChangeIsForbidden($emailAddress, $entity);
if (!$skipSave) {
if (
$emailAddress->get('optOut') != $hash->{$address}['optOut'] ||
$emailAddress->get('invalid') != $hash->{$address}['invalid'] ||
$emailAddress->get(self::ATTR_EMAIL_ADDRESS) != $hash->{$address}['emailAddress']
) {
$emailAddress->set([
'optOut' => $hash->{$address}['optOut'],
'invalid' => $hash->{$address}['invalid'],
'name' => $hash->{$address}['emailAddress']
]);
$this->entityManager->saveEntity($emailAddress);
}
} else {
$revertData[$address] = [
'optOut' => $emailAddress->isOptedOut(),
'invalid' => $emailAddress->isInvalid(),
];
}
}
$entityEmailAddress = $this->entityManager->getNewEntity('EntityEmailAddress');
$entityEmailAddress->set([
'entityId' => $entity->getId(),
'entityType' => $entity->getEntityType(),
'emailAddressId' => $emailAddress->getId(),
'primary' => $address === $primary,
Attribute::DELETED => false,
]);
$mapper = $this->entityManager->getMapper();
$mapper->insertOnDuplicateUpdate($entityEmailAddress, [
'primary',
Attribute::DELETED,
]);
}
if ($primary) {
$emailAddress = $this->getByAddress($primary);
$entity->set(self::ATTR_EMAIL_ADDRESS, $primary);
if ($emailAddress) {
$update1 = $this->entityManager
->getQueryBuilder()
->update()
->in('EntityEmailAddress')
->set(['primary' => false])
->where([
'entityId' => $entity->getId(),
'entityType' => $entity->getEntityType(),
'primary' => true,
Attribute::DELETED => false,
])
->build();
$this->entityManager->getQueryExecutor()->execute($update1);
$update2 = $this->entityManager
->getQueryBuilder()
->update()
->in('EntityEmailAddress')
->set(['primary' => true])
->where([
'entityId' => $entity->getId(),
'entityType' => $entity->getEntityType(),
'emailAddressId' => $emailAddress->getId(),
Attribute::DELETED => false,
])
->build();
$this->entityManager->getQueryExecutor()->execute($update2);
}
}
if (!empty($revertData)) {
foreach ($emailAddressData as $row) {
if (empty($revertData[$row->emailAddress])) {
continue;
}
$row->optOut = $revertData[$row->emailAddress]['optOut'];
$row->invalid = $revertData[$row->emailAddress]['invalid'];
}
$entity->set(self::ATTR_EMAIL_ADDRESS_DATA, $emailAddressData);
}
}
private function storePrimary(Entity $entity): void
{
if (!$entity->has(self::ATTR_EMAIL_ADDRESS)) {
return;
}
$emailAddressValue = $entity->get(self::ATTR_EMAIL_ADDRESS);
if (is_string($emailAddressValue)) {
$emailAddressValue = trim($emailAddressValue);
}
if (!empty($emailAddressValue)) {
$this->storePrimaryNotEmpty($entity, $emailAddressValue);
return;
}
$emailAddressValueOld = $entity->getFetched(self::ATTR_EMAIL_ADDRESS);
if (!empty($emailAddressValueOld)) {
$emailAddressOld = $this->getByAddress($emailAddressValueOld);
if ($emailAddressOld) {
$this->entityManager
->getRelation($entity, self::LINK_EMAIL_ADDRESSES)
->unrelate($emailAddressOld, [SaveOption::SKIP_HOOKS => true]);
}
}
}
private function storePrimaryNotEmpty(Entity $entity, string $emailAddressValue): void
{
if ($emailAddressValue === $entity->getFetched(self::ATTR_EMAIL_ADDRESS)) {
if (
$entity->has(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT) &&
(
$entity->isNew() ||
(
$entity->hasFetched(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT) &&
$entity->isAttributeChanged(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT)
)
)
) {
$this->markAddressOptedOut($emailAddressValue,
(bool) $entity->get(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT));
}
if (
$entity->has(self::ATTR_EMAIL_ADDRESS_IS_INVALID) &&
(
$entity->isNew() ||
(
$entity->hasFetched(self::ATTR_EMAIL_ADDRESS_IS_INVALID) &&
$entity->isAttributeChanged(self::ATTR_EMAIL_ADDRESS_IS_INVALID)
)
)
) {
$this->markAddressInvalid($emailAddressValue, (bool) $entity->get(self::ATTR_EMAIL_ADDRESS_IS_INVALID));
}
return;
}
$entityRepository = $this->entityManager->getRDBRepository($entity->getEntityType());
$emailAddressNew = $this->entityManager
->getRDBRepository(EmailAddress::ENTITY_TYPE)
->where([
'lower' => strtolower($emailAddressValue),
])
->findOne();
if (!$emailAddressNew) {
/** @var EmailAddress $emailAddressNew */
$emailAddressNew = $this->entityManager->getNewEntity(EmailAddress::ENTITY_TYPE);
$emailAddressNew->setAddress($emailAddressValue);
if ($entity->has(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT)) {
$emailAddressNew->setOptedOut((bool) $entity->get(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT));
}
if ($entity->has(self::ATTR_EMAIL_ADDRESS_IS_INVALID)) {
$emailAddressNew->setInvalid((bool) $entity->get(self::ATTR_EMAIL_ADDRESS_IS_INVALID));
}
$this->entityManager->saveEntity($emailAddressNew);
}
$emailAddressValueOld = $entity->getFetched(self::ATTR_EMAIL_ADDRESS);
if (!empty($emailAddressValueOld)) {
$emailAddressOld = $this->getByAddress($emailAddressValueOld);
if ($emailAddressOld) {
$entityRepository
->getRelation($entity, self::LINK_EMAIL_ADDRESSES)
->unrelate($emailAddressOld, [SaveOption::SKIP_HOOKS => true]);
}
}
$entityRepository
->getRelation($entity, self::LINK_EMAIL_ADDRESSES)
->relate($emailAddressNew, null, [SaveOption::SKIP_HOOKS => true]);
if ($entity->has(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT)) {
$this->markAddressOptedOut($emailAddressValue, (bool) $entity->get(self::ATTR_EMAIL_ADDRESS_IS_OPTED_OUT));
}
if ($entity->has(self::ATTR_EMAIL_ADDRESS_IS_INVALID)) {
$this->markAddressInvalid($emailAddressValue, (bool) $entity->get(self::ATTR_EMAIL_ADDRESS_IS_INVALID));
}
$updateQuery = $this->entityManager
->getQueryBuilder()
->update()
->in('EntityEmailAddress')
->set(['primary' => true])
->where([
'entityId' => $entity->getId(),
'entityType' => $entity->getEntityType(),
'emailAddressId' => $emailAddressNew->getId(),
])
->build();
$this->entityManager->getQueryExecutor()->execute($updateQuery);
}
private function getByAddress(string $address): ?EmailAddress
{
/** @var EmailAddressRepository $repository */
$repository = $this->entityManager->getRepository(EmailAddress::ENTITY_TYPE);
return $repository->getByAddress($address);
}
private function markAddressOptedOut(string $address, bool $isOptedOut = true): void
{
/** @var EmailAddressRepository $repository */
$repository = $this->entityManager->getRepository(EmailAddress::ENTITY_TYPE);
$repository->markAddressOptedOut($address, $isOptedOut);
}
private function markAddressInvalid(string $address, bool $isInvalid = true): void
{
/** @var EmailAddressRepository $repository */
$repository = $this->entityManager->getRepository(EmailAddress::ENTITY_TYPE);
$repository->markAddressInvalid($address, $isInvalid);
}
private function checkChangeIsForbidden(EmailAddress $emailAddress, Entity $entity): bool
{
if (!$this->applicationState->hasUser()) {
return true;
}
$user = $this->applicationState->getUser();
// @todo Check if not modified by system.
return !$this->accessChecker->checkEdit($user, $emailAddress, $entity);
}
}