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,218 @@
<?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\Modules\Crm\Tools\Opportunity;
use Espo\Core\Acl;
use Espo\Core\Exceptions\BadRequest;
use Espo\Core\Exceptions\Forbidden;
use Espo\Core\Field\EmailAddress;
use Espo\Core\Record\ServiceContainer;
use Espo\Core\Select\SelectBuilderFactory;
use Espo\Modules\Crm\Entities\Account;
use Espo\Modules\Crm\Entities\Contact;
use Espo\Modules\Crm\Entities\Opportunity;
use Espo\ORM\Collection;
use Espo\ORM\EntityManager;
use Espo\Tools\Email\EmailAddressEntityPair;
use RuntimeException;
class Service
{
public function __construct(
private ServiceContainer $serviceContainer,
private Acl $acl,
private EntityManager $entityManager,
private SelectBuilderFactory $selectBuilderFactory
) {}
/**
* @return EmailAddressEntityPair[]
* @throws Forbidden
*/
public function getEmailAddressList(string $id): array
{
/** @var Opportunity $entity */
$entity = $this->serviceContainer
->get(Opportunity::ENTITY_TYPE)
->getEntity($id);
$list = [];
if (
$this->acl->checkField(Opportunity::ENTITY_TYPE, 'contacts') &&
$this->acl->checkScope(Contact::ENTITY_TYPE)
) {
foreach ($this->getContactEmailAddressList($entity) as $item) {
$list[] = $item;
}
}
if (
$list === [] &&
$this->acl->checkField(Opportunity::ENTITY_TYPE, 'account') &&
$this->acl->checkScope(Account::ENTITY_TYPE)
) {
$item = $this->getAccountEmailAddress($entity, $list);
if ($item) {
$list[] = $item;
}
}
return $list;
}
/**
* @param EmailAddressEntityPair[] $dataList
*/
private function getAccountEmailAddress(Opportunity $entity, array $dataList): ?EmailAddressEntityPair
{
$accountLink = $entity->getAccount();
if (!$accountLink) {
return null;
}
/** @var ?Account $account */
$account = $this->entityManager->getEntityById(Account::ENTITY_TYPE, $accountLink->getId());
if (!$account) {
return null;
}
$emailAddress = $account->getEmailAddress();
if (!$emailAddress) {
return null;
}
if (!$this->acl->checkEntity($account)) {
return null;
}
foreach ($dataList as $item) {
if ($item->getEmailAddress()->getAddress() === $emailAddress) {
return null;
}
}
return new EmailAddressEntityPair(EmailAddress::create($emailAddress), $account);
}
/**
* @return EmailAddressEntityPair[]
*/
private function getContactEmailAddressList(Opportunity $entity): array
{
$contactsLinkMultiple = $entity->getContacts();
$contactIdList = $contactsLinkMultiple->getIdList();
if (!count($contactIdList)) {
return [];
}
if (!$this->acl->checkField(Contact::ENTITY_TYPE, 'emailAddress')) {
return [];
}
$dataList = [];
$emailAddressList = [];
try {
$query = $this->selectBuilderFactory
->create()
->from(Contact::ENTITY_TYPE)
->withStrictAccessControl()
->buildQueryBuilder()
->select([
'id',
'emailAddress',
'name',
])
->where([
'id' => $contactIdList,
])
->build();
} catch (BadRequest|Forbidden $e) {
throw new RuntimeException($e->getMessage());
}
/** @var Collection<Contact> $contactCollection */
$contactCollection = $this->entityManager
->getRDBRepositoryByClass(Contact::class)
->clone($query)
->find();
foreach ($contactCollection as $contact) {
$emailAddress = $contact->getEmailAddress();
if (!$emailAddress) {
continue;
}
if (in_array($emailAddress, $emailAddressList)) {
continue;
}
$emailAddressList[] = $emailAddress;
$dataList[] = new EmailAddressEntityPair(EmailAddress::create($emailAddress), $contact);
}
$contact = $entity->getContact();
if (!$contact) {
return $dataList;
}
usort(
$dataList,
function (
EmailAddressEntityPair $o1,
EmailAddressEntityPair $o2
) use ($contact) {
if ($o1->getEntity()->getId() === $contact->getId()) {
return -1;
}
if ($o2->getEntity()->getId() === $contact->getId()) {
return 1;
}
return 0;
}
);
return $dataList;
}
}