204 lines
6.8 KiB
PHP
Executable File
204 lines
6.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/>.
|
|
*/
|
|
|
|
use Modules\Emails\Account;
|
|
use Notifications\EmailNotification;
|
|
|
|
include_once __DIR__.'/core.php';
|
|
|
|
$account = Account::where('predefined', true)->first();
|
|
$bug_email = 'info@openstamanager.com';
|
|
|
|
$user = auth()->user();
|
|
|
|
if (filter('op') == 'send') {
|
|
// Preparazione email
|
|
$mail = new EmailNotification();
|
|
|
|
// Destinatario
|
|
$mail->AddAddress($bug_email);
|
|
|
|
// Oggetto
|
|
$mail->Subject = 'Segnalazione bug OSM '.$version;
|
|
|
|
// Aggiunta dei file di log (facoltativo)
|
|
if (!empty(post('log')) && file_exists(base_dir().'/logs/error.log')) {
|
|
$mail->AddAttachment(base_dir().'/logs/error.log');
|
|
}
|
|
|
|
// Aggiunta della copia del database (facoltativo)
|
|
if (!empty(post('sql'))) {
|
|
$backup_file = base_dir().'/Backup OSM '.date('Y-m-d').' '.date('H_i_s').'.sql';
|
|
Backup::database($backup_file);
|
|
|
|
$mail->AddAttachment($backup_file);
|
|
|
|
flash()->info(tr('Backup del database eseguito ed allegato correttamente!'));
|
|
}
|
|
|
|
// Aggiunta delle informazioni di base sull'installazione
|
|
$infos = [
|
|
'Utente' => $user['username'],
|
|
'IP' => get_client_ip(),
|
|
'Versione OSM' => $version.' ('.(!empty($revision) ? $revision : 'In sviluppo').')',
|
|
'PHP' => phpversion(),
|
|
];
|
|
|
|
// Aggiunta delle informazioni sul sistema (facoltativo)
|
|
if (!empty(post('info'))) {
|
|
$infos['Sistema'] = $_SERVER['HTTP_USER_AGENT'].' - '.getOS();
|
|
}
|
|
|
|
// Completamento del body
|
|
$body = post('body').'<hr>';
|
|
foreach ($infos as $key => $value) {
|
|
$body .= '<p>'.$key.': '.$value.'</p>';
|
|
}
|
|
|
|
$mail->Body = $body;
|
|
|
|
$mail->AltBody = 'Questa email arriva dal modulo bug di segnalazione bug di OSM';
|
|
|
|
// Invio mail
|
|
if (!$mail->send()) {
|
|
flash()->error(tr("Errore durante l'invio della segnalazione").': '.$mail->ErrorInfo);
|
|
} else {
|
|
flash()->info(tr('Email inviata correttamente!'));
|
|
}
|
|
|
|
// Rimozione del dump del database
|
|
if (!empty(post('sql'))) {
|
|
delete($backup_file);
|
|
}
|
|
|
|
redirect_legacy(base_url().'/bug.php');
|
|
throw new \App\Exceptions\LegacyExitException();
|
|
}
|
|
|
|
$pageTitle = tr('Bug');
|
|
|
|
include_once AppLegacy::filepath('include|custom|', 'top.php');
|
|
|
|
if (empty($account['from_address']) || empty($account['server'])) {
|
|
echo '
|
|
<div class="alert alert-warning">
|
|
<i class="fa fa-warning"></i>
|
|
<b>'.tr('Attenzione!').'</b> '.tr('Per utilizzare correttamente il modulo di segnalazione bug devi configurare alcuni parametri riguardanti le impostazione delle email').'.
|
|
|
|
'.Modules::link('Account email', $account['id'], tr('Correggi account'), null, 'class="btn btn-warning pull-right"').'
|
|
<div class="clearfix"></div>
|
|
</div>';
|
|
}
|
|
|
|
echo '
|
|
<div class="box">
|
|
<div class="box-header">
|
|
<h3 class="box-title"><i class="fa fa-bug"></i> '.tr('Segnalazione bug').'</h3>
|
|
</div>
|
|
|
|
<div class="box-body">
|
|
<form method="post" action="">
|
|
<input type="hidden" name="op" value="send">
|
|
|
|
<table class="table table-bordered table-condensed table-striped table-hover">
|
|
<tr>
|
|
<th width="150" class="text-right">'.tr('Da').':</th>
|
|
<td>'.$account['from_address'].'</td>
|
|
</tr>
|
|
|
|
<!-- A -->
|
|
<tr>
|
|
<th class="text-right">'.tr('A').':</th>
|
|
<td>'.$bug_email.'</td>
|
|
</tr>
|
|
|
|
<!-- Versione -->
|
|
<tr>
|
|
<th class="text-right">'.tr('Versione OSM').':</th>
|
|
<td>'.$version.' ('.(!empty($revision) ? $revision : tr('In sviluppo')).')</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
{[ "type": "checkbox", "placeholder": "'.tr('Allega file di log').'", "name": "log", "value": "1" ]}
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
{[ "type": "checkbox", "placeholder": "'.tr('Allega copia del database').'", "name": "sql" ]}
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
{[ "type": "checkbox", "placeholder": "'.tr('Allega informazioni sul PC').'", "name": "info", "value": "1" ]}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
<br>
|
|
|
|
{[ "type": "ckeditor", "label": "'.tr('Descrizione del bug').'", "name": "body" ]}
|
|
|
|
<!-- PULSANTI -->
|
|
<div class="row">
|
|
<div class="col-md-12 text-right">
|
|
<button type="submit" class="btn btn-primary" id="send" disabled>
|
|
<i class="fa fa-envelope"></i> '.tr('Invia segnalazione').'
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
init();
|
|
|
|
var html = "<p>'.tr('Se hai riscontrato un bug ricordati di specificare').':</p>" +
|
|
"<ul>" +
|
|
"<li>'.tr('Modulo esatto (o pagina relativa) in cui questi si è verificato').';</li>" +
|
|
"<li>'.tr('Dopo quali specifiche operazioni hai notato il malfunzionamento').'.</li>" +
|
|
"</ul>" +
|
|
"<p>'.tr('Assicurati inoltre di controllare che il checkbox relativo ai file di log sia contrassegnato, oppure riporta qui l\'errore visualizzato').'.</p>" +
|
|
"<p>'.tr('Ti ringraziamo per il tuo contributo').',<br>" +
|
|
"'.tr('Lo staff di OSM').'</p>";
|
|
|
|
var firstFocus = true;
|
|
let editor = input("body");
|
|
editor.set(html);
|
|
|
|
editor.on("change", function() {
|
|
setTimeout(function() {
|
|
$("#send").prop("disabled", editor.get() === "");
|
|
}, 10);
|
|
});
|
|
|
|
editor.on("focus", function() {
|
|
if (firstFocus) {
|
|
editor.set("");
|
|
firstFocus = false;
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type="text/javascript" charset="utf-8" src="'.AppLegacy::getPaths()['js'].'/ckeditor/ckeditor.js'.'"></script>';
|
|
|
|
include_once AppLegacy::filepath('include|custom|', 'bottom.php');
|