143 lines
4.0 KiB
PHP
143 lines
4.0 KiB
PHP
<?php
|
|
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014-2015 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/.
|
|
************************************************************************/
|
|
|
|
namespace Espo\SelectManagers;
|
|
|
|
class Email extends \Espo\Core\SelectManagers\Base
|
|
{
|
|
protected function boolFilterOnlyMy(&$result)
|
|
{
|
|
if (!in_array('users', $result['joins'])) {
|
|
$result['joins'][] = 'users';
|
|
}
|
|
$result['whereClause'][] = array(
|
|
'emailUser.userId' => $this->getUser()->id
|
|
);
|
|
}
|
|
|
|
protected function filterArchived(&$result)
|
|
{
|
|
$result['whereClause'][] = array(
|
|
'status' => 'Archived'
|
|
);
|
|
}
|
|
|
|
protected function filterSent(&$result)
|
|
{
|
|
$result['whereClause'][] = array(
|
|
'status' => 'Sent'
|
|
);
|
|
}
|
|
|
|
protected function filterDraft(&$result)
|
|
{
|
|
$result['whereClause'][] = array(
|
|
'status' => 'Draft'
|
|
);
|
|
}
|
|
|
|
protected function accessOnlyOwn(&$result)
|
|
{
|
|
$this->boolFilterOnlyMy($result);
|
|
}
|
|
|
|
protected function textFilter($value, &$result)
|
|
{
|
|
$d = array();
|
|
|
|
$d['name*'] = '%' . $value . '%';
|
|
|
|
if (strlen($value) >= self::MIN_LENGTH_FOR_CONTENT_SEARCH) {
|
|
$d['bodyPlain*'] = '%' . $value . '%';
|
|
$d['body*'] = '%' . $value . '%';
|
|
|
|
$emailAddressId = $this->getEmailAddressIdByValue($value);
|
|
if ($emailAddressId) {
|
|
$this->leftJoinEmailAddress($result);
|
|
$d['fromEmailAddressId'] = $emailAddressId;
|
|
$d['emailEmailAddress.emailAddressId'] = $emailAddressId;
|
|
}
|
|
}
|
|
|
|
$result['whereClause'][] = array(
|
|
'OR' => $d
|
|
);
|
|
|
|
}
|
|
|
|
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'], 'email_email_address') === false) {
|
|
$result['customJoin'] .= "
|
|
LEFT JOIN email_email_address
|
|
ON
|
|
email_email_address.email_id = email.id AND
|
|
email_email_address.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';
|
|
}
|
|
|
|
}
|
|
}
|
|
|