Files
espocrm/application/Espo/Services/EmailAddress.php
2018-09-26 11:21:39 +03:00

240 lines
8.0 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2018 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
* Website: http://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\Services;
use \Espo\ORM\Entity;
use \Espo\Core\Exceptions\Error;
class EmailAddress extends Record
{
const ERASED_PREFIX = 'ERASED:';
protected function findInAddressBookByEntityType($query, $limit, $entityType, &$result)
{
$whereClause = array(
'OR' => array(
array(
'name*' => $query . '%'
),
array(
'emailAddress*' => $query . '%'
)
),
array(
'emailAddress!=' => null
)
);
$searchParams = array(
'whereClause' => $whereClause,
'orderBy' => 'name',
'limit' => $limit
);
$selectManager = $this->getSelectManagerFactory()->create($entityType);
$selectManager->applyAccess($searchParams);
$collection = $this->getEntityManager()->getRepository($entityType)->find($searchParams);
foreach ($collection as $entity) {
$emailAddress = $entity->get('emailAddress');
if ($emailAddress) {
if (strpos($emailAddress, self::ERASED_PREFIX) === 0) {
continue;
}
}
$result[] = [
'emailAddress' => $emailAddress,
'entityName' => $entity->get('name'),
'entityType' => $entityType,
'entityId' => $entity->id
];
$emailAddressData = $this->getEntityManager()->getRepository('EmailAddress')->getEmailAddressData($entity);
foreach ($emailAddressData as $d) {
if ($emailAddress != $d->emailAddress) {
$emailAddress = $d->emailAddress;
if (strpos($emailAddress, $query) === 0 && strpos($emailAddress, self::ERASED_PREFIX) !== 0) {
$result[] = [
'emailAddress' => $emailAddress,
'entityName' => $entity->get('name'),
'entityType' => $entityType,
'entityId' => $entity->id
];
}
}
}
}
}
protected function findInAddressBookUsers($query, $limit, &$result)
{
$whereClause = array(
'OR' => array(
array(
'name*' => $query . '%'
),
array(
'emailAddress*' => $query . '%'
)
),
array(
'emailAddress!=' => null
)
);
if ($this->getAcl()->get('portalPermission') === 'no') {
$whereClause['isPortalUser'] = false;
}
$searchParams = array(
'whereClause' => $whereClause,
'orderBy' => 'name',
'limit' => $limit
);
$selectManager = $this->getSelectManagerFactory()->create('User');
$selectManager->applyAccess($searchParams);
$collection = $this->getEntityManager()->getRepository('User')->find($searchParams);
foreach ($collection as $entity) {
$emailAddress = $entity->get('emailAddress');
if ($emailAddress) {
if (strpos($emailAddress, self::ERASED_PREFIX) === 0) {
continue;
}
}
$result[] = [
'emailAddress' => $emailAddress,
'entityName' => $entity->get('name'),
'entityType' => 'User',
'entityId' => $entity->id
];
$emailAddressData = $this->getEntityManager()->getRepository('EmailAddress')->getEmailAddressData($entity);
foreach ($emailAddressData as $d) {
if ($emailAddress != $d->emailAddress) {
$emailAddress = $d->emailAddress;
if (strpos($emailAddress, $query) === 0 && strpos($emailAddress, self::ERASED_PREFIX) !== 0) {
$result[] = [
'emailAddress' => $emailAddress,
'entityName' => $entity->get('name'),
'entityType' => 'User',
'entityId' => $entity->id
];
}
}
}
}
}
protected function findInInboundEmail($query, $limit, &$result)
{
$pdo = $this->getEntityManager()->getPDO();
$selectParams = [
'select' => ['id', 'name', 'emailAddress'],
'whereClause' => [
'emailAddress*' => $query . '%'
],
'orderBy' => 'name',
];
$qu = $this->getEntityManager()->getQuery()->createSelectQuery('InboundEmail', $selectParams);
$sth = $pdo->prepare($qu);
$sth->execute();
while ($row = $sth->fetch(\PDO::FETCH_ASSOC)) {
$result[] = [
'emailAddress' => $row['emailAddress'],
'entityName' => $row['name'],
'entityType' => 'InboundEmail',
'entityId' => $row['id']
];
}
}
public function searchInAddressBook($query, $limit)
{
$result = [];
$this->findInAddressBookUsers($query, $limit, $result);
if ($this->getAcl()->checkScope('Contact')) {
$this->findInAddressBookByEntityType($query, $limit, 'Contact', $result);
}
if ($this->getAcl()->checkScope('Lead')) {
$this->findInAddressBookByEntityType($query, $limit, 'Lead', $result);
}
if ($this->getAcl()->checkScope('Account')) {
$this->findInAddressBookByEntityType($query, $limit, 'Account', $result);
}
$this->findInInboundEmail($query, $limit, $result);
foreach ($this->getHavingEmailAddressEntityTypeList() as $entityType) {
if ($this->getAcl()->checkScope($entityType)) {
$this->findInAddressBookByEntityType($query, $limit, $entityType, $result);
}
}
$final = array();
foreach ($result as $r) {
foreach ($final as $f) {
if ($f['emailAddress'] == $r['emailAddress']) {
continue 2;
}
}
$final[] = $r;
}
return $final;
}
protected function getHavingEmailAddressEntityTypeList()
{
$list = [];
$scopeDefs = $this->getMetadata()->get(['scopes']);
foreach ($scopeDefs as $scope => $defs) {
if (empty($defs['disabled']) && !empty($defs['type']) && ($defs['type'] === 'Person' || $defs['type'] === 'Company')) {
$list[] = $scope;
}
}
return $list;
}
}