555 lines
15 KiB
PHP
555 lines
15 KiB
PHP
<?php
|
|
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014 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\Modules\Crm\Services;
|
|
|
|
use \Espo\Core\Exceptions\Error;
|
|
use \Espo\Core\Exceptions\Forbidden;
|
|
|
|
use \Zend\Mime\Mime as Mime;
|
|
|
|
class InboundEmail extends \Espo\Services\Record
|
|
{
|
|
|
|
public function createEntity($data)
|
|
{
|
|
$entity = parent::createEntity($data);
|
|
$entity->clear('password');
|
|
return $entity;
|
|
}
|
|
|
|
public function getEntity($id = null)
|
|
{
|
|
$entity = parent::getEntity($id);
|
|
$entity->clear('password');
|
|
return $entity;
|
|
}
|
|
|
|
public function updateEntity($id, $data)
|
|
{
|
|
$entity = parent::updateEntity($id, $data);
|
|
$entity->clear('password');
|
|
return $entity;
|
|
}
|
|
|
|
public function findEntities($params)
|
|
{
|
|
$result = parent::findEntities($params);
|
|
|
|
foreach ($result['collection'] as $entity) {
|
|
$entity->clear('password');
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
|
|
protected function init()
|
|
{
|
|
$this->dependencies[] = 'fileManager';
|
|
$this->dependencies[] = 'mailSender';
|
|
}
|
|
|
|
protected function getFileManager()
|
|
{
|
|
return $this->injections['fileManager'];
|
|
}
|
|
|
|
protected function getMailSender()
|
|
{
|
|
return $this->injections['mailSender'];
|
|
}
|
|
|
|
protected function findFolder($storage, $path)
|
|
{
|
|
$arr = explode('/', $path);
|
|
$pointer = $storage->getFolders();
|
|
foreach ($arr as $folderName) {
|
|
$pointer = $pointer->$folderName;
|
|
}
|
|
return $pointer;
|
|
}
|
|
|
|
public function getFolders($params)
|
|
{
|
|
$password = $params['password'];
|
|
|
|
if (!empty($params['id'])) {
|
|
$entity = $this->getEntityManager()->getEntity('InboundEmail', $params['id']);
|
|
if ($entity) {
|
|
$password = $entity->get('password');
|
|
}
|
|
}
|
|
|
|
$imapParams = array(
|
|
'host' => $params['host'],
|
|
'port' => $params['port'],
|
|
'user' => $params['username'],
|
|
'password' => $password,
|
|
);
|
|
|
|
if (!empty($params['ssl'])) {
|
|
$imapParams['ssl'] = 'SSL';
|
|
}
|
|
|
|
$foldersArr = array();
|
|
|
|
$storage = new \Zend\Mail\Storage\Imap($imapParams);
|
|
|
|
$folders = new \RecursiveIteratorIterator($storage->getFolders(), \RecursiveIteratorIterator::SELF_FIRST);
|
|
foreach ($folders as $name => $folder) {
|
|
$foldersArr[] = $folder->getGlobalName();
|
|
}
|
|
return $foldersArr;
|
|
}
|
|
|
|
public function fetchFromMailServer($id)
|
|
{
|
|
$inboundEmail = $this->getEntityManager()->getEntity('InboundEmail', $id);
|
|
|
|
if ($inboundEmail->get('status') != 'Active') {
|
|
throw new Error();
|
|
}
|
|
|
|
$imapParams = array(
|
|
'host' => $inboundEmail->get('host'),
|
|
'port' => $inboundEmail->get('port'),
|
|
'user' => $inboundEmail->get('username'),
|
|
'password' => $inboundEmail->get('password'),
|
|
);
|
|
|
|
if ($inboundEmail->get('ssl')) {
|
|
$imapParams['ssl'] = 'SSL';
|
|
}
|
|
|
|
$storage = new \Zend\Mail\Storage\Imap($imapParams);
|
|
|
|
$trash = null;
|
|
$trashFolder = $inboundEmail->get('trashFolder');
|
|
if (empty($trashFolder)) {
|
|
$trashFolder = 'INBOX.Trash';
|
|
}
|
|
try {
|
|
$trash = $this->findFolder($storage, $trashFolder);
|
|
} catch (\Exception $e) {
|
|
throw new Error("No trash folder '{$trashFolder}' found for Inbound Email {$id}");
|
|
}
|
|
|
|
$monitoredFolders = $inboundEmail->get('monitoredFolders');
|
|
if (empty($monitoredFolders)) {
|
|
$monitoredFolders = 'INBOX';
|
|
}
|
|
|
|
$monitoredFoldersArr = explode(',', $monitoredFolders);
|
|
foreach ($monitoredFoldersArr as $path) {
|
|
$toRemove = array();
|
|
$path = trim($path);
|
|
|
|
$folder = $this->findFolder($storage, $path);
|
|
$storage->selectFolder($folder);
|
|
|
|
foreach ($storage as $number => $message) {
|
|
$this->importMessage($inboundEmail, $message);
|
|
}
|
|
|
|
while ($storage->countMessages()) {
|
|
if ($trash) {
|
|
$storage->moveMessage(1, $trash);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
protected function getAddressListFromMessage($message, $type)
|
|
{
|
|
$addressList = array();
|
|
if (isset($message->$type)) {
|
|
|
|
$list = $message->getHeader($type)->getAddressList();
|
|
foreach ($list as $address) {
|
|
$addressList[] = $address->getEmail();
|
|
}
|
|
}
|
|
return $addressList;
|
|
}
|
|
|
|
protected function importMessage($inboundEmail, $message)
|
|
{
|
|
$result = false;
|
|
|
|
try {
|
|
$email = $this->getEntityManager()->getEntity('Email');
|
|
if ($inboundEmail->get('teamId')) {
|
|
$email->set('teamsIds', array($inboundEmail->get('teamId')));
|
|
}
|
|
|
|
$email->set('isHtml', false);
|
|
$email->set('name', $message->subject);
|
|
$email->set('attachmentsIds', array());
|
|
|
|
$userId = $this->getUser()->id;
|
|
if ($inboundEmail->get('assignToUserId')) {
|
|
$userId = $inboundEmail->get('assignToUserId');
|
|
}
|
|
$email->set('assignedUserId', $userId);
|
|
|
|
$fromArr = $this->getAddressListFromMessage($message, 'from');
|
|
|
|
if (isset($message->from)) {
|
|
$email->set('fromName', $message->from);
|
|
}
|
|
|
|
$email->set('from', $fromArr[0]);
|
|
$email->set('to', implode(';', $this->getAddressListFromMessage($message, 'to')));
|
|
$email->set('cc', implode(';', $this->getAddressListFromMessage($message, 'cc')));
|
|
$email->set('bcc', implode(';', $this->getAddressListFromMessage($message, 'bcc')));
|
|
|
|
$email->set('status', 'Archived');
|
|
|
|
$dt = new \DateTime($message->date);
|
|
if ($dt) {
|
|
$dateSent = $dt->setTimezone(new \DateTimeZone('UTC'))->format('Y-m-d H:i:s');
|
|
$email->set('dateSent', $dateSent);
|
|
}
|
|
|
|
$inlineIds = array();
|
|
|
|
if ($message->isMultipart()) {
|
|
foreach (new \RecursiveIteratorIterator($message) as $part) {
|
|
$this->importPartDataToEmail($email, $part, $inlineIds);
|
|
}
|
|
} else {
|
|
$this->importPartDataToEmail($email, $message, $inlineIds);
|
|
}
|
|
|
|
$body = $email->get('body');
|
|
if (!empty($body)) {
|
|
foreach ($inlineIds as $cid => $attachmentId) {
|
|
$body = str_replace('cid:' . $cid, '?entryPoint=attachment&id=' . $attachmentId, $body);
|
|
}
|
|
$email->set('body', $body);
|
|
}
|
|
|
|
$this->getEntityManager()->saveEntity($email);
|
|
|
|
if ($inboundEmail->get('createCase')) {
|
|
if (preg_match('/\[#([0-9]+)[^0-9]*\]/', $email->get('name'), $m)) {
|
|
$caseNumber = $m[1];
|
|
$case = $this->getEntityManager()->getRepository('Case')->where(array(
|
|
'number' => $caseNumber
|
|
))->findOne();
|
|
if ($case) {
|
|
$email->set('parentType', 'Case');
|
|
$email->set('parentId', $case->id);
|
|
$this->getEntityManager()->saveEntity($email);
|
|
$this->getServiceFactory()->create('Stream')->noteEmailReceived($case, $email);
|
|
}
|
|
} else {
|
|
$params = array(
|
|
'caseDistribution' => $inboundEmail->get('caseDistribution'),
|
|
'teamId' => $inboundEmail->get('teamId'),
|
|
'userId' => $inboundEmail->get('assignToUserId'),
|
|
);
|
|
$case = $this->emailToCase($email, $params);
|
|
$user = $this->getEntityManager()->getEntity('User', $case->get('assignedUserId'));
|
|
if ($inboundEmail->get('reply')) {
|
|
$this->autoReply($inboundEmail, $email, $case, $user);
|
|
}
|
|
}
|
|
} else {
|
|
if ($inboundEmail->get('reply')) {
|
|
$user = $this->getEntityManager()->getEntity('User', $userId);
|
|
$this->autoReply($inboundEmail, $email, $user);
|
|
}
|
|
}
|
|
|
|
$result = true;
|
|
|
|
} catch (\Exception $e){
|
|
// TODO log
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
protected function assignRoundRobin($case, $team)
|
|
{
|
|
$roundRobin = new \Espo\Modules\Crm\Business\CaseDistribution\RoundRobin($this->getEntityManager());
|
|
$user = $roundRobin->getUser($team);
|
|
if ($user) {
|
|
$case->set('assignedUserId', $user->id);
|
|
}
|
|
}
|
|
|
|
protected function assignLeastBusy($case, $team)
|
|
{
|
|
$leastBusy = new \Espo\Modules\Crm\Business\CaseDistribution\LeastBusy($this->getEntityManager());
|
|
$user = $leastBusy->getUser($team);
|
|
if ($user) {
|
|
$case->set('assignedUserId', $user->id);
|
|
}
|
|
}
|
|
|
|
protected function emailToCase(\Espo\Entities\Email $email, array $params = array())
|
|
{
|
|
$case = $this->getEntityManager()->getEntity('Case');
|
|
$case->populateDefaults();
|
|
$case->set('name', $email->get('name'));
|
|
|
|
$userId = $this->getUser()->id;
|
|
if (!empty($params['userId'])) {
|
|
$userId = $params['userId'];
|
|
}
|
|
$case->set('assignedUserId', $userId);
|
|
|
|
$teamId = false;
|
|
if (!empty($params['teamId'])) {
|
|
$teamId = $params['teamId'];
|
|
}
|
|
if ($teamId) {
|
|
$case->set('teamsIds', array($teamId));
|
|
}
|
|
|
|
$caseDistribution = 'Direct-Assignment';
|
|
if (!empty($params['caseDistribution'])) {
|
|
$caseDistribution = $params['caseDistribution'];
|
|
}
|
|
|
|
$case->set('status', 'Assigned');
|
|
|
|
switch ($caseDistribution) {
|
|
case 'Round-Robin':
|
|
if ($teamId) {
|
|
$team = $this->getEntityManager()->getEntity('Team', $teamId);
|
|
if ($team) {
|
|
$this->assignRoundRobin($case, $team);
|
|
}
|
|
}
|
|
break;
|
|
case 'Least-Busy':
|
|
if ($teamId) {
|
|
$team = $this->getEntityManager()->getEntity('Team', $teamId);
|
|
if ($team) {
|
|
$this->assignLeastBusy($case, $team);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
$email->set('assignedUserId', $case->get('assignedUserId'));
|
|
|
|
$contact = $this->getEntityManager()->getRepository('Contact')->where(array(
|
|
'EmailAddress.id' => $email->get('fromEmailAddressId')
|
|
))->findOne();
|
|
if ($contact) {
|
|
$case->set('contactId', $contact->id);
|
|
if ($contact->get('accountId')) {
|
|
$case->set('accountId', $contact->get('accountId'));
|
|
}
|
|
}
|
|
|
|
$this->getEntityManager()->saveEntity($case);
|
|
|
|
$email->set('parentType', 'Case');
|
|
$email->set('parentId', $case->id);
|
|
$this->getEntityManager()->saveEntity($email);
|
|
|
|
$case = $this->getEntityManager()->getEntity('Case', $case->id);
|
|
return $case;
|
|
}
|
|
|
|
protected function getContentFromPart($part)
|
|
{
|
|
if ($part instanceof \Zend\Mime\Part) {
|
|
$content = $part->getRawContent();
|
|
if (strtolower($part->charset) != 'utf-8') {
|
|
$content = mb_convert_encoding($content, 'UTF-8', $part->charset);
|
|
}
|
|
} else {
|
|
$content = $part->getContent();
|
|
|
|
$encoding = null;
|
|
|
|
if (isset($part->contentTransferEncoding)) {
|
|
$cteHeader = $part->getHeader('Content-Transfer-Encoding');
|
|
$encoding = strtolower($cteHeader->getTransferEncoding());
|
|
}
|
|
|
|
if ($encoding == 'base64') {
|
|
$content = base64_decode($content);
|
|
}
|
|
|
|
$charset = 'UTF-8';
|
|
|
|
if (isset($part->contentType)) {
|
|
$ctHeader = $part->getHeader('Content-Type');
|
|
$charsetParamValue = $ctHeader->getParameter('charset');
|
|
if (!empty($charsetParamValue)) {
|
|
$charset = strtoupper($charsetParamValue);
|
|
}
|
|
}
|
|
|
|
if ($charset !== 'UTF-8') {
|
|
$content = mb_convert_encoding($content, 'UTF-8', $charset);
|
|
}
|
|
|
|
if (isset($part->contentTransferEncoding)) {
|
|
$cteHeader = $part->getHeader('Content-Transfer-Encoding');
|
|
if ($cteHeader->getTransferEncoding() == 'quoted-printable') {
|
|
$content = quoted_printable_decode($content);
|
|
}
|
|
}
|
|
}
|
|
return $content;
|
|
}
|
|
|
|
protected function importPartDataToEmail(\Espo\Entities\Email $email, $part, &$inlineIds = array())
|
|
{
|
|
try {
|
|
$type = strtok($part->contentType, ';');
|
|
$encoding = null;
|
|
|
|
switch ($type) {
|
|
case 'text/plain':
|
|
$content = $this->getContentFromPart($part);
|
|
if (!$email->get('body')) {
|
|
$email->set('body', $content);
|
|
}
|
|
$email->set('bodyPlain', $content);
|
|
break;
|
|
case 'text/html':
|
|
$content = $this->getContentFromPart($part);
|
|
$email->set('body', $content);
|
|
$email->set('isHtml', true);
|
|
break;
|
|
default:
|
|
$content = $part->getContent();
|
|
$disposition = null;
|
|
|
|
$fileName = null;
|
|
$contentId = null;
|
|
|
|
if (isset($part->ContentDisposition)) {
|
|
if (strpos($part->ContentDisposition, 'attachment') === 0) {
|
|
if (preg_match('/filename="?([^"]+)"?/i', $part->ContentDisposition, $m)) {
|
|
$fileName = $m[1];
|
|
$disposition = 'attachment';
|
|
}
|
|
} else if (strpos($part->ContentDisposition, 'inline') === 0) {
|
|
$contentId = trim($part->contentID, '<>');
|
|
$fileName = $contentId;
|
|
$disposition = 'inline';
|
|
}
|
|
}
|
|
|
|
if (isset($part->contentTransferEncoding)) {
|
|
$encoding = strtolower($part->getHeader('Content-Transfer-Encoding')->getTransferEncoding());
|
|
}
|
|
|
|
$attachment = $this->getEntityManager()->getEntity('Attachment');
|
|
$attachment->set('name', $fileName);
|
|
$attachment->set('type', $type);
|
|
|
|
$this->getEntityManager()->saveEntity($attachment);
|
|
|
|
$path = 'data/upload/' . $attachment->id;
|
|
|
|
if ($encoding == 'base64') {
|
|
$content = base64_decode($content);
|
|
}
|
|
$this->getFileManager()->putContents($path, $content);
|
|
|
|
if ($disposition == 'attachment') {
|
|
$attachmentsIds = $email->get('attachmentsIds');
|
|
$attachmentsIds[] = $attachment->id;
|
|
$email->set('attachmentsIds', $attachmentsIds);
|
|
} else if ($disposition == 'inline') {
|
|
$inlineIds[$contentId] = $attachment->id;
|
|
}
|
|
}
|
|
} catch (\Exception $e){
|
|
// TODO log
|
|
}
|
|
}
|
|
|
|
protected function autoReply($inboundEmail, $email, $case = null, $user = null)
|
|
{
|
|
try {
|
|
$replyEmailTemplateId = $inboundEmail->get('replyEmailTemplateId');
|
|
if ($replyEmailTemplateId) {
|
|
$entityHash = array();
|
|
if ($case) {
|
|
$entityHash['Case'] = $case;
|
|
if ($case->get('contactId')) {
|
|
$contact = $this->getEntityManager()->getEntity('Contact', $case->get('contactId'));
|
|
}
|
|
}
|
|
if (empty($contact)) {
|
|
$contact = $this->getEntityManager()->getEntity('Contact');
|
|
$contact->set('name', $email->get('fromName'));
|
|
}
|
|
|
|
|
|
$entityHash['Person'] = $contact;
|
|
$entityHash['Contact'] = $contact;
|
|
|
|
if ($user) {
|
|
$entityHash['User'] = $user;
|
|
}
|
|
|
|
$emailTemplateService = $this->getServiceFactory()->create('EmailTemplate');
|
|
|
|
$replyData = $emailTemplateService->parse($replyEmailTemplateId, array('entityHash' => $entityHash), true);
|
|
|
|
$reply = $this->getEntityManager()->getEntity('Email');
|
|
$reply->set('to', $email->get('from'));
|
|
$reply->set('subject', $replyData['subject']);
|
|
$reply->set('body', $replyData['body']);
|
|
$reply->set('isHtml', $replyData['isHtml']);
|
|
$reply->set('attachmentsIds', $replyData['attachmentsIds']);
|
|
|
|
$this->getEntityManager()->saveEntity($reply);
|
|
|
|
$sender = $this->getMailSender()->useGlobal();
|
|
$senderParams = array();
|
|
if ($inboundEmail->get('replyFromAddress')) {
|
|
$senderParams['fromAddress'] = $inboundEmail->get('replyFromAddress');
|
|
}
|
|
if ($inboundEmail->get('replyFromName')) {
|
|
$senderParams['fromName'] = $inboundEmail->get('replyFromName');
|
|
}
|
|
$sender->setParams($senderParams);
|
|
$sender->send($reply);
|
|
|
|
foreach ($reply->get('attachments') as $attachment) {
|
|
$this->getEntityManager()->removeEntity($attachment);
|
|
}
|
|
|
|
$this->getEntityManager()->removeEntity($reply);
|
|
}
|
|
|
|
} catch (\Exception $e){
|
|
// TODO log
|
|
}
|
|
}
|
|
}
|
|
|