Files
sysPass/app/modules/web/Controllers/ConfigMailController.php
nuxsmin cd2c0379db * [MOD] Improved plugins manager
* [MOD] Code refactoring and cleanup
* [MOD] Make classes final for performance improvements and avoid some side behaviours
2018-07-28 21:45:49 +02:00

167 lines
6.2 KiB
PHP

<?php
/**
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2018, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
* sysPass 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.
*
* sysPass 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 sysPass. If not, see <http://www.gnu.org/licenses/>.
*/
namespace SP\Modules\Web\Controllers;
use SP\Config\ConfigUtil;
use SP\Core\Acl\Acl;
use SP\Core\Acl\UnauthorizedPageException;
use SP\Core\Events\Event;
use SP\Core\Events\EventMessage;
use SP\Http\JsonResponse;
use SP\Modules\Web\Controllers\Traits\ConfigTrait;
use SP\Providers\Mail\MailParams;
use SP\Services\Mail\MailService;
/**
* Class ConfigMailController
*
* @package SP\Modules\Web\Controllers
*/
final class ConfigMailController extends SimpleControllerBase
{
use ConfigTrait;
/**
* saveAction
*/
public function saveAction()
{
$eventMessage = EventMessage::factory();
$configData = $this->config->getConfigData();
// Mail
$mailEnabled = $this->request->analyzeBool('mail_enabled', false);
$mailServer = $this->request->analyzeString('mail_server');
$mailPort = $this->request->analyzeInt('mail_port', 25);
$mailUser = $this->request->analyzeString('mail_user');
$mailPass = $this->request->analyzeEncrypted('mail_pass');
$mailSecurity = $this->request->analyzeString('mail_security');
$mailFrom = $this->request->analyzeEmail('mail_from');
$mailRequests = $this->request->analyzeBool('mail_requests_enabled', false);
$mailAuth = $this->request->analyzeBool('mail_auth_enabled', false);
$mailRecipients = ConfigUtil::mailAddressesAdapter($this->request->analyzeString('mail_recipients'));
// Valores para la configuración del Correo
if ($mailEnabled && (!$mailServer || !$mailFrom || count($mailRecipients) === 0)) {
$this->returnJsonResponse(JsonResponse::JSON_ERROR, __u('Faltan parámetros de Correo'));
}
if ($mailEnabled) {
$configData->setMailEnabled(true);
$configData->setMailRequestsEnabled($mailRequests);
$configData->setMailServer($mailServer);
$configData->setMailPort($mailPort);
$configData->setMailSecurity($mailSecurity);
$configData->setMailFrom($mailFrom);
$configData->setMailRecipients($mailRecipients);
$configData->setMailEvents($this->request->analyzeArray('mail_events', function ($items) {
return ConfigUtil::eventsAdapter($items);
}));
if ($mailAuth) {
$configData->setMailAuthenabled($mailAuth);
$configData->setMailUser($mailUser);
if ($mailPass !== '***') {
$configData->setMailPass($mailPass);
}
}
if ($configData->isMailEnabled() === false) {
$eventMessage->addDescription(__u('Correo habiltado'));
}
} elseif ($mailEnabled === false && $configData->isMailEnabled()) {
$configData->setMailEnabled(false);
$configData->setMailRequestsEnabled(false);
$configData->setMailAuthenabled(false);
$eventMessage->addDescription(__u('Correo deshabilitado'));
} else {
$this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Sin cambios'));
}
$this->saveConfig($configData, $this->config, function () use ($eventMessage) {
$this->eventDispatcher->notifyEvent('save.config.mail', new Event($this, $eventMessage));
});
}
/**
* checkAction
*/
public function checkAction()
{
$mailParams = new MailParams();
$mailParams->server = $this->request->analyzeString('mail_server');
$mailParams->port = $this->request->analyzeInt('mail_port', 25);
$mailParams->security = $this->request->analyzeString('mail_security');
$mailParams->from = $this->request->analyzeEmail('mail_from');
$mailParams->mailAuthenabled = $this->request->analyzeBool('mail_authenabled', false);
$mailRecipients = ConfigUtil::mailAddressesAdapter($this->request->analyzeString('mail_recipients'));
// Valores para la configuración del Correo
if (!$mailParams->server || empty($mailParams->from) || empty($mailRecipients)) {
$this->returnJsonResponse(JsonResponse::JSON_ERROR, __u('Faltan parámetros de Correo'));
}
if ($mailParams->mailAuthenabled) {
$mailParams->user = $this->request->analyzeString('mail_user');
$mailParams->pass = $this->request->analyzeEncrypted('mail_pass');
}
try {
$this->dic->get(MailService::class)->check($mailParams, $mailRecipients[0]);
$this->eventDispatcher->notifyEvent('send.mail.check',
new Event($this, EventMessage::factory()
->addDescription(__u('Correo enviado'))
->addDetail(__u('Destinatario'), $mailRecipients[0]))
);
$this->returnJsonResponse(
JsonResponse::JSON_SUCCESS,
__u('Correo enviado'),
[__u('Compruebe su buzón de correo')]
);
} catch (\Exception $e) {
processException($e);
$this->eventDispatcher->notifyEvent('exception', new Event($e));
$this->returnJsonResponseException($e);
}
}
protected function initialize()
{
try {
$this->checks();
$this->checkAccess(Acl::MAIL_CONFIG);
} catch (UnauthorizedPageException $e) {
$this->eventDispatcher->notifyEvent('exception', new Event($e));
$this->returnJsonResponseException($e);
}
}
}