openstamanager/modules/smtp/actions.php

123 lines
3.8 KiB
PHP
Executable File

<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* This program 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.
*
* This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
*/
include_once __DIR__.'/../../core.php';
switch (filter('op')) {
case 'add':
$dbo->insert('em_accounts', [
'name' => post('name'),
'from_name' => post('from_name'),
'from_address' => post('from_address'),
]);
$id_record = $dbo->lastInsertedID();
flash()->info(tr('Nuovo account email aggiunto!'));
break;
case 'update':
$predefined = post('predefined');
if (!empty($predefined)) {
$dbo->query('UPDATE em_accounts SET predefined = 0');
}
$abilita_oauth2 = post('abilita_oauth2');
$dbo->update('em_accounts', [
'name' => post('name'),
'note' => post('note'),
'server' => post('server'),
'port' => post('port'),
'username' => post('username'),
'password' => post('password'),
'from_name' => post('from_name'),
'from_address' => post('from_address'),
'encryption' => post('encryption'),
'pec' => post('pec'),
'timeout' => post('timeout'),
'ssl_no_verify' => post('ssl_no_verify'),
'predefined' => $predefined,
'provider' => post('provider'),
'client_id' => post('client_id'),
'client_secret' => post('client_secret'),
], ['id' => $id_record]);
flash()->info(tr('Informazioni salvate correttamente!'));
// Rimozione informazioni OAuth2 in caso di disabilitazione
if (!$abilita_oauth2) {
$dbo->update('em_accounts', [
'provider' => null,
'client_id' => null,
'client_secret' => null,
'access_token' => null,
'refresh_token' => null,
], ['id' => $id_record]);
}
// Validazione indirizzo email mittente
$check_email = Validate::isValidEmail(post('from_address'));
// Controllo sulla validazione
if (!empty($check_email['valid-format'])) {
flash()->info(tr('Sintassi email verificata'));
} else {
flash()->error(tr("Attenzione: l'indirizzo email _EMAIL_ sembra non essere valido", [
'_EMAIL_' => post('from_address'),
]));
}
// Controllo sulla verifica
if (!empty($check_email['smtp-check'])) {
flash()->info(tr('SMTP email verificato'));
} else {
flash()->warning(tr('SMTP email non verificato'));
}
if (isAjaxRequest()) {
echo json_encode(['id' => $id_record]);
}
break;
case 'test':
$result = $account->testConnection();
echo json_encode([
'test' => $result,
]);
break;
case 'delete':
$account->delete();
flash()->info(tr('Account email eliminato!'));
break;
case 'oauth2':
$redirect = base_path().'/oauth2.php?id_account='.$account->id;
redirect($redirect);
break;
}