Files
espocrm/application/Espo/Core/Mail/Account/SystemSettingsAccount.php
Yuri Kuznetsov 4964056343 ref
2023-04-22 20:49:54 +03:00

210 lines
4.8 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2023 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 Espo\Core\Field\Date;
use Espo\Core\Field\Link;
use Espo\Core\Field\LinkMultiple;
use Espo\Core\Mail\Exceptions\NoSmtp;
use Espo\Core\Mail\SmtpParams;
use Espo\Core\Utils\Config;
use Espo\Entities\Email;
use Espo\Entities\Settings;
class SystemSettingsAccount implements Account
{
public function __construct(private Config $config)
{}
public function updateFetchData(FetchData $fetchData): void {}
public function relateEmail(Email $email): void {}
public function getPortionLimit(): int
{
return 0;
}
public function isAvailableForFetching(): bool
{
return false;
}
public function getEmailAddress(): ?string
{
return $this->config->get('outboundEmailFromAddress');
}
public function getAssignedUser(): ?Link
{
return null;
}
public function getUser(): ?Link
{
return null;
}
public function getUsers(): LinkMultiple
{
return LinkMultiple::create();
}
public function getTeams(): LinkMultiple
{
return LinkMultiple::create();
}
public function keepFetchedEmailsUnread(): bool
{
return false;
}
public function getFetchData(): FetchData
{
return FetchData::fromRaw((object) []);
}
public function getFetchSince(): ?Date
{
return null;
}
public function getEmailFolder(): ?Link
{
return null;
}
public function getGroupEmailFolder(): ?Link
{
return null;
}
public function getMonitoredFolderList(): array
{
return [];
}
public function getId(): ?string
{
return null;
}
public function getEntityType(): string
{
return Settings::ENTITY_TYPE;
}
public function getHost(): ?string
{
return null;
}
public function getPort(): ?int
{
return null;
}
public function getUsername(): ?string
{
return null;
}
public function getPassword(): ?string
{
return null;
}
public function getSecurity(): ?string
{
return null;
}
/**
* @return ?class-string<object>
*/
public function getImapHandlerClassName(): ?string
{
return null;
}
public function getSentFolder(): ?string
{
return null;
}
public function isAvailableForSending(): bool
{
return (bool) $this->config->get('smtpServer');
}
public function storeSentEmails(): bool
{
return false;
}
/**
* @throws NoSmtp
*/
public function getSmtpParams(): ?SmtpParams
{
$host = $this->config->get('smtpServer');
$port = $this->config->get('smtpPort');
if (!$host) {
throw new NoSmtp("No system SMTP settings.");
}
if (!$port) {
throw new NoSmtp("No system SMTP port.");
}
$params = SmtpParams::create($host, $port)
->withSecurity($this->config->get('smtpSecurity'))
->withAuth($this->config->get('smtpAuth'));
if ($params->useAuth()) {
$password = $this->config->get('smtpPassword');
$params = $params
->withUsername($this->config->get('smtpUsername'))
->withPassword($password)
->withAuthMechanism($this->config->get('smtpAuthMechanism') ?? 'login');
}
return $params;
}
public function getImapParams(): ?ImapParams
{
return null;
}
}