139 lines
4.1 KiB
PHP
139 lines
4.1 KiB
PHP
<?php
|
|
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014-2021 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
|
|
* Website: https://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\Core\Mail\Account;
|
|
|
|
use Laminas\Mail\Message;
|
|
|
|
use Espo\Core\Exceptions\Error;
|
|
|
|
use Espo\Core\Mail\Account\Storage\Params;
|
|
use Espo\Core\Utils\Crypt;
|
|
|
|
use RecursiveIteratorIterator;
|
|
|
|
class GroupAccountService
|
|
{
|
|
private Fetcher $fetcher;
|
|
|
|
private GroupAccountFactory $accountFactory;
|
|
|
|
private Crypt $crypt;
|
|
|
|
private StorageFactory $storageFactory;
|
|
|
|
public function __construct(
|
|
Fetcher $fetcher,
|
|
GroupAccountFactory $accountFactory,
|
|
Crypt $crypt,
|
|
StorageFactory $storageFactory
|
|
) {
|
|
$this->fetcher = $fetcher;
|
|
$this->accountFactory = $accountFactory;
|
|
$this->crypt = $crypt;
|
|
$this->storageFactory = $storageFactory;
|
|
}
|
|
|
|
/**
|
|
* @param string $id Account ID.
|
|
*/
|
|
public function fetch(string $id): void
|
|
{
|
|
$account = $this->accountFactory->create($id);
|
|
|
|
$this->fetcher->fetch($account);
|
|
}
|
|
|
|
/**
|
|
* @return string[]
|
|
*/
|
|
public function getFolderList(Params $params): array
|
|
{
|
|
if ($params->getId()) {
|
|
$account = $this->accountFactory->create($params->getId());
|
|
|
|
$params = $params
|
|
->withPassword(
|
|
$params->getPassword() ?? $this->crypt->decrypt($account->getPassword())
|
|
)
|
|
->withImapHandlerClassName($account->getImapHandlerClassName());
|
|
}
|
|
|
|
$storage = $this->storageFactory->createWithParams($params);
|
|
|
|
$folderIterator = new RecursiveIteratorIterator(
|
|
$storage->getFolders(),
|
|
RecursiveIteratorIterator::SELF_FIRST
|
|
);
|
|
|
|
$list = [];
|
|
|
|
foreach ($folderIterator as $folder) {
|
|
$list[] = mb_convert_encoding($folder->getGlobalName(), 'UTF-8', 'UTF7-IMAP');
|
|
}
|
|
|
|
return $list;
|
|
}
|
|
|
|
public function testConnection(Params $params): void
|
|
{
|
|
if ($params->getId()) {
|
|
$account = $this->accountFactory->create($params->getId());
|
|
|
|
$params = $params
|
|
->withPassword(
|
|
$params->getPassword() ?? $this->crypt->decrypt($account->getPassword())
|
|
)
|
|
->withImapHandlerClassName($account->getImapHandlerClassName());
|
|
}
|
|
|
|
$storage = $this->storageFactory->createWithParams($params);
|
|
|
|
$storage->getFolders();
|
|
}
|
|
|
|
/**
|
|
* @param string $id Account ID.
|
|
*/
|
|
public function storeSentMessage(string $id, Message $message): void
|
|
{
|
|
$account = $this->accountFactory->create($id);
|
|
|
|
$folder = $account->getSentFolder();
|
|
|
|
if (!$folder) {
|
|
throw new Error("No sent folder for Group Email Account {$id}.");
|
|
}
|
|
|
|
$storage = $this->storageFactory->create($account);
|
|
|
|
$storage->appendMessage($message->toString(), $folder);
|
|
}
|
|
}
|