143 lines
4.7 KiB
PHP
Executable File
143 lines
4.7 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/>.
|
|
*/
|
|
|
|
namespace Modules\Emails;
|
|
|
|
use Carbon\Carbon;
|
|
use Hooks\Manager;
|
|
use Notifications\EmailNotification;
|
|
use PHPMailer\PHPMailer\Exception;
|
|
|
|
class EmailHook extends Manager
|
|
{
|
|
public function isSingleton()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function needsExecution()
|
|
{
|
|
// Email fallite nelle ultime 4 ore
|
|
$diff = date('Y-m-d H:i:s', strtotime('-4 hours'));
|
|
$failed = function ($query) use ($diff) {
|
|
$query->where('failed_at', '<', $diff)
|
|
->orWhereNull('failed_at');
|
|
};
|
|
|
|
// Email da inviare per tutti gli account
|
|
$accounts = Account::all();
|
|
$remaining = Mail::whereNull('sent_at')
|
|
->where($failed)
|
|
->where('attempt', '<', setting('Numero massimo di tentativi'))
|
|
->whereIn('id_account', $accounts->pluck('id'))
|
|
->count();
|
|
|
|
return !empty($remaining);
|
|
}
|
|
|
|
public function execute()
|
|
{
|
|
// Email fallite nelle ultime 4 ore
|
|
$diff = date('Y-m-d H:i:s', strtotime('-4 hours'));
|
|
$failed = function ($query) use ($diff) {
|
|
$query->where('failed_at', '<', $diff)
|
|
->orWhereNull('failed_at');
|
|
};
|
|
|
|
// Parametri per l'invio
|
|
$numero_tentativi = setting('Numero massimo di tentativi');
|
|
$numero_email = setting('Numero email da inviare in contemporanea per account');
|
|
$numero_email = $numero_email < 1 ? 1 : $numero_email;
|
|
|
|
// Selezione email per account
|
|
$accounts = Account::all();
|
|
$lista = collect();
|
|
foreach ($accounts as $account) {
|
|
// Ultima email inviata per l'account
|
|
$last_mail = $account->emails()
|
|
->whereNotNull('sent_at')
|
|
->orderBy('sent_at')
|
|
->first();
|
|
|
|
// Controllo sul timeout dell'account
|
|
$date = new Carbon($last_mail->sent_at);
|
|
$now = new Carbon();
|
|
$diff_milliseconds = $date->diffInMilliseconds($now);
|
|
|
|
// Timeout per l'uso dell'account email
|
|
if (empty($last_mail) || $diff_milliseconds > $account->timeout) {
|
|
$lista_account = Mail::whereNull('sent_at')
|
|
->where('id_account', $account->id)
|
|
->where($failed)
|
|
->where('attempt', '<', $numero_tentativi)
|
|
->orderBy('created_at')
|
|
->take($numero_email)
|
|
->get();
|
|
|
|
$lista = $lista->concat($lista_account);
|
|
}
|
|
}
|
|
|
|
// Invio effettivo
|
|
foreach ($lista as $mail) {
|
|
try {
|
|
$email = EmailNotification::build($mail);
|
|
$email->send();
|
|
} catch (Exception $e) {
|
|
}
|
|
}
|
|
|
|
return $lista;
|
|
}
|
|
|
|
public function response()
|
|
{
|
|
$yesterday = date('Y-m-d', strtotime('-1 days'));
|
|
$user = auth()->getUser();
|
|
|
|
// Numero di email inviate
|
|
$current = Mail::whereDate('sent_at', '>', $yesterday)
|
|
->where('attempt', '<', setting('Numero massimo di tentativi'))
|
|
->where('created_by', $user->id)
|
|
->count();
|
|
|
|
// Numero totale di email
|
|
$total = Mail::where(function ($query) use ($yesterday) {
|
|
$query->whereDate('sent_at', '>', $yesterday)
|
|
->orWhereNull('sent_at');
|
|
})
|
|
->where('attempt', '<', setting('Numero massimo di tentativi'))
|
|
->where('created_by', $user->id)
|
|
->count();
|
|
|
|
$message = $total != $current ? tr('Invio email in corso...') : tr('Invio email completato!');
|
|
$message = empty($total) ? tr('Nessuna email presente...') : $message;
|
|
|
|
return [
|
|
'icon' => 'fa fa-envelope text-info',
|
|
'message' => $message,
|
|
'show' => ($total != $current),
|
|
'progress' => [
|
|
'current' => $current,
|
|
'total' => $total,
|
|
],
|
|
];
|
|
}
|
|
}
|