mirror of
https://github.com/espocrm/espocrm.git
synced 2026-07-01 08:26:04 +00:00
405 lines
11 KiB
PHP
405 lines
11 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\SelectManagers;
|
|
|
|
class Email extends \Espo\Core\SelectManagers\Base
|
|
{
|
|
protected $textFilterUseContainsAttributeList = ['name'];
|
|
|
|
public function getSelectParams(array $params, $withAcl = false, $checkWherePermission = false)
|
|
{
|
|
$result = parent::getSelectParams($params, $withAcl, $checkWherePermission);
|
|
|
|
if (!empty($params['folderId'])) {
|
|
$this->applyFolder($params['folderId'], $result);
|
|
}
|
|
|
|
$this->addUsersJoin($result);
|
|
|
|
return $result;
|
|
}
|
|
|
|
public function applyFolder($folderId, &$result)
|
|
{
|
|
switch ($folderId) {
|
|
case 'all':
|
|
break;
|
|
case 'inbox':
|
|
$this->filterInbox($result);
|
|
break;
|
|
case 'important':
|
|
$this->filterImportant($result);
|
|
break;
|
|
case 'sent':
|
|
$this->filterSent($result);
|
|
break;
|
|
case 'trash':
|
|
$this->filterTrash($result);
|
|
break;
|
|
case 'drafts':
|
|
$this->filterDrafts($result);
|
|
break;
|
|
default:
|
|
$this->applyEmailFolder($folderId, $result);
|
|
}
|
|
}
|
|
|
|
public function addUsersJoin(&$result)
|
|
{
|
|
if (!$this->hasJoin('users', $result) && !$this->hasLeftJoin('users', $result)) {
|
|
$this->addLeftJoin('users', $result);
|
|
$this->setJoinCondition('users', array(
|
|
'userId' => $this->getUser()->id
|
|
), $result);
|
|
}
|
|
|
|
$this->addUsersColumns($result);
|
|
}
|
|
|
|
protected function applyEmailFolder($folderId, &$result)
|
|
{
|
|
$result['whereClause'][] = array(
|
|
'usersMiddle.inTrash' => false,
|
|
'usersMiddle.folderId' => $folderId
|
|
);
|
|
$this->boolFilterOnlyMy($result);
|
|
}
|
|
|
|
protected function boolFilterOnlyMy(&$result)
|
|
{
|
|
$this->addJoin('users', $result);
|
|
$result['whereClause'][] = array(
|
|
'usersMiddle.userId' => $this->getUser()->id
|
|
);
|
|
|
|
$this->addUsersColumns($result);
|
|
}
|
|
|
|
protected function addUsersColumns(&$result)
|
|
{
|
|
if (!isset($result['select'])) {
|
|
$result['additionalSelectColumns']['usersMiddle.is_read'] = 'isRead';
|
|
$result['additionalSelectColumns']['usersMiddle.is_important'] = 'isImportant';
|
|
$result['additionalSelectColumns']['usersMiddle.in_trash'] = 'inTrash';
|
|
$result['additionalSelectColumns']['usersMiddle.folder_id'] = 'folderId';
|
|
}
|
|
}
|
|
|
|
protected function filterInbox(&$result)
|
|
{
|
|
$eaList = $this->getUser()->get('emailAddresses');
|
|
$idList = [];
|
|
foreach ($eaList as $ea) {
|
|
$idList[] = $ea->id;
|
|
}
|
|
$d = array(
|
|
'usersMiddle.inTrash=' => false,
|
|
'usersMiddle.folderId' => null,
|
|
array(
|
|
'status' => ['Archived', 'Sent']
|
|
)
|
|
);
|
|
if (!empty($idList)) {
|
|
$d['fromEmailAddressId!='] = $idList;
|
|
$d[] = array(
|
|
'OR' => array(
|
|
'status' => 'Archived',
|
|
'createdById!=' => $this->getUser()->id
|
|
)
|
|
);
|
|
} else {
|
|
$d[] = array(
|
|
'status' => 'Archived',
|
|
'createdById!=' => $this->getUser()->id
|
|
);
|
|
}
|
|
$result['whereClause'][] = $d;
|
|
|
|
$this->boolFilterOnlyMy($result);
|
|
}
|
|
|
|
protected function filterImportant(&$result)
|
|
{
|
|
$result['whereClause'][] = $this->getWherePartIsImportantIsTrue();
|
|
$this->boolFilterOnlyMy($result);
|
|
}
|
|
|
|
protected function filterSent(&$result)
|
|
{
|
|
$eaList = $this->getUser()->get('emailAddresses');
|
|
$idList = [];
|
|
foreach ($eaList as $ea) {
|
|
$idList[] = $ea->id;
|
|
}
|
|
|
|
$result['whereClause'][] = array(
|
|
'OR' => array(
|
|
'fromEmailAddressId=' => $idList,
|
|
array(
|
|
'status' => 'Sent',
|
|
'createdById' => $this->getUser()->id
|
|
)
|
|
),
|
|
array(
|
|
'status!=' => 'Draft'
|
|
),
|
|
'usersMiddle.inTrash=' => false
|
|
);
|
|
}
|
|
|
|
protected function filterTrash(&$result)
|
|
{
|
|
$result['whereClause'][] = array(
|
|
'usersMiddle.inTrash=' => true
|
|
);
|
|
$this->boolFilterOnlyMy($result);
|
|
}
|
|
|
|
protected function filterDrafts(&$result)
|
|
{
|
|
$result['whereClause'][] = array(
|
|
'status' => 'Draft',
|
|
'createdById' => $this->getUser()->id
|
|
);
|
|
}
|
|
|
|
protected function filterArchived(&$result)
|
|
{
|
|
$result['whereClause'][] = array(
|
|
'status' => 'Archived'
|
|
);
|
|
}
|
|
|
|
protected function accessOnlyOwn(&$result)
|
|
{
|
|
$this->boolFilterOnlyMy($result);
|
|
}
|
|
|
|
protected function accessPortalOnlyOwn(&$result)
|
|
{
|
|
$this->boolFilterOnlyMy($result);
|
|
}
|
|
|
|
protected function accessOnlyTeam(&$result)
|
|
{
|
|
$this->setDistinct(true, $result);
|
|
$this->addLeftJoin(['teams', 'teamsAccess'], $result);
|
|
$this->addLeftJoin(['users', 'usersAccess'], $result);
|
|
|
|
$result['whereClause'][] = array(
|
|
'OR' => array(
|
|
'teamsAccess.id' => $this->getUser()->getLinkMultipleIdList('teams'),
|
|
'usersAccess.id' => $this->getUser()->id
|
|
)
|
|
);
|
|
}
|
|
|
|
protected function accessPortalOnlyAccount(&$result)
|
|
{
|
|
$this->setDistinct(true, $result);
|
|
$this->addLeftJoin(['users', 'usersAccess'], $result);
|
|
|
|
$d = array(
|
|
'usersAccess.id' => $this->getUser()->id
|
|
);
|
|
|
|
$accountIdList = $this->getUser()->getLinkMultipleIdList('accounts');
|
|
if (count($accountIdList)) {
|
|
$d['accountId'] = $accountIdList;
|
|
}
|
|
|
|
$contactId = $this->getUser()->get('contactId');
|
|
if ($contactId) {
|
|
$d[] = array(
|
|
'parentId' => $contactId,
|
|
'parentType' => 'Contact'
|
|
);
|
|
}
|
|
|
|
$result['whereClause'][] = array(
|
|
'OR' => $d
|
|
);
|
|
}
|
|
|
|
protected function accessPortalOnlyContact(&$result)
|
|
{
|
|
$this->setDistinct(true, $result);
|
|
$this->addLeftJoin(['users', 'usersAccess'], $result);
|
|
|
|
$d = array(
|
|
'usersAccess.id' => $this->getUser()->id
|
|
);
|
|
|
|
$contactId = $this->getUser()->get('contactId');
|
|
if ($contactId) {
|
|
$d[] = array(
|
|
'parentId' => $contactId,
|
|
'parentType' => 'Contact'
|
|
);
|
|
}
|
|
|
|
$result['whereClause'][] = array(
|
|
'OR' => $d
|
|
);
|
|
}
|
|
|
|
protected function applyAdditionalToTextFilterGroup($textFilter, &$group, &$result)
|
|
{
|
|
if (strlen($textFilter) >= self::MIN_LENGTH_FOR_CONTENT_SEARCH) {
|
|
$emailAddressId = $this->getEmailAddressIdByValue($textFilter);
|
|
if ($emailAddressId) {
|
|
$this->leftJoinEmailAddress($result);
|
|
$group['fromEmailAddressId'] = $emailAddressId;
|
|
$group['emailEmailAddress.emailAddressId'] = $emailAddressId;
|
|
}
|
|
}
|
|
}
|
|
|
|
protected function getEmailAddressIdByValue($value)
|
|
{
|
|
$pdo = $this->getEntityManager()->getPDO();
|
|
|
|
$emailAddress = $this->getEntityManager()->getRepository('EmailAddress')->where(array(
|
|
'lower' => strtolower($value)
|
|
))->findOne();
|
|
|
|
$emailAddressId = null;
|
|
if ($emailAddress) {
|
|
$emailAddressId = $emailAddress->id;
|
|
}
|
|
|
|
return $emailAddressId;
|
|
}
|
|
|
|
protected function leftJoinEmailAddress(&$result)
|
|
{
|
|
if (empty($result['customJoin'])) {
|
|
$result['customJoin'] = '';
|
|
}
|
|
if (stripos($result['customJoin'], 'emailEmailAddress') === false) {
|
|
$result['customJoin'] .= "
|
|
LEFT JOIN email_email_address AS `emailEmailAddress`
|
|
ON
|
|
emailEmailAddress.email_id = email.id AND
|
|
emailEmailAddress.deleted = 0
|
|
";
|
|
}
|
|
}
|
|
|
|
|
|
public function whereEmailAddress($value, &$result)
|
|
{
|
|
$d = array();
|
|
|
|
$emailAddressId = $this->getEmailAddressIdByValue($value);
|
|
|
|
if ($emailAddressId) {
|
|
$this->leftJoinEmailAddress($result);
|
|
|
|
$d['fromEmailAddressId'] = $emailAddressId;
|
|
$d['emailEmailAddress.emailAddressId'] = $emailAddressId;
|
|
$result['whereClause'][] = array(
|
|
'OR' => $d
|
|
);
|
|
} else {
|
|
if (empty($result['customWhere'])) {
|
|
$result['customWhere'] = '';
|
|
}
|
|
$result['customWhere'] .= ' AND 0';
|
|
}
|
|
|
|
}
|
|
|
|
protected function getWherePartIsNotRepliedIsTrue()
|
|
{
|
|
return array(
|
|
'isReplied' => false
|
|
);
|
|
}
|
|
|
|
protected function getWherePartIsNotRepliedIsFalse()
|
|
{
|
|
return array(
|
|
'isReplied' => true
|
|
);
|
|
}
|
|
|
|
public function getWherePartIsNotReadIsTrue()
|
|
{
|
|
return array(
|
|
'usersMiddle.isRead' => false,
|
|
'OR' => array(
|
|
'sentById' => null,
|
|
'sentById!=' => $this->getUser()->id
|
|
)
|
|
);
|
|
}
|
|
|
|
protected function getWherePartIsNotReadIsFalse()
|
|
{
|
|
return array(
|
|
'usersMiddle.isRead' => true
|
|
);
|
|
}
|
|
|
|
protected function getWherePartIsReadIsTrue()
|
|
{
|
|
return array(
|
|
'usersMiddle.isRead' => true
|
|
);
|
|
}
|
|
|
|
protected function getWherePartIsReadIsFalse()
|
|
{
|
|
return array(
|
|
'usersMiddle.isRead' => false,
|
|
'OR' => array(
|
|
'sentById' => null,
|
|
'sentById!=' => $this->getUser()->id
|
|
)
|
|
);
|
|
}
|
|
|
|
protected function getWherePartIsImportantIsTrue()
|
|
{
|
|
return array(
|
|
'usersMiddle.isImportant' => true
|
|
);
|
|
}
|
|
|
|
protected function getWherePartIsImportantIsFalse()
|
|
{
|
|
return array(
|
|
'usersMiddle.isImportant' => false
|
|
);
|
|
}
|
|
}
|
|
|