229 lines
7.4 KiB
PHP
229 lines
7.4 KiB
PHP
<?php
|
|
|
|
include_once __DIR__.'/core.php';
|
|
|
|
$pageTitle = 'Bug';
|
|
$jscript_modules[] = $js.'/ckeditor/ckeditor.js';
|
|
|
|
if (filter('op') == 'send') {
|
|
// Preparazione email
|
|
$mail = new Mail();
|
|
|
|
// Mittente
|
|
$mail->From = $post['email_from'];
|
|
$mail->FromName = $_SESSION['username'];
|
|
$mail->AddReplyTo($post['email_from']);
|
|
|
|
// Destinatario
|
|
$mail->AddAddress($post['email_to']);
|
|
|
|
// Copia
|
|
if (!empty($post['email_cc'])) {
|
|
$mail->AddCC($post['email_cc']);
|
|
}
|
|
|
|
// Copia nascosta
|
|
if (!empty($post['email_bcc'])) {
|
|
$mail->AddBCC($post['email_bcc']);
|
|
}
|
|
|
|
$mail->Subject = 'Segnalazione bug OSM '.$version.' ('.(!empty($revision) ? 'R'.$revision : tr('In sviluppo')).')';
|
|
|
|
// Se ho scelto di inoltrare i file di log, allego
|
|
if (!empty($post['log']) && file_exists($docroot.'/logs/error.log')) {
|
|
$mail->AddAttachment($docroot.'/logs/error.log');
|
|
}
|
|
|
|
// Se ho scelto di inoltrare copia del db
|
|
if (!empty($post['sql'])) {
|
|
$backup_file = $docroot.'/Backup OSM '.date('Y-m-d').' '.date('H_i_s').'.sql';
|
|
backup_tables($backup_file);
|
|
|
|
$mail->AddAttachment($backup_file);
|
|
|
|
$_SESSION['infos'][] = tr('Backup del database eseguito ed allegato correttamente!');
|
|
}
|
|
|
|
$body = $post['body'].'<hr><br>'.tr('IP').': '.get_client_ip();
|
|
|
|
// Se ho scelto di inoltrare le INFO del mio sistema
|
|
if (!empty($post['info'])) {
|
|
$body .= $_SERVER['HTTP_USER_AGENT'].' - '.getOS();
|
|
}
|
|
|
|
$mail->Body = $body;
|
|
|
|
$mail->AltBody = 'Questa email arriva dal modulo bug di segnalazione bug di OSM';
|
|
|
|
// Invio mail
|
|
if (!$mail->send()) {
|
|
$_SESSION['errors'][] = tr("Errore durante l'invio della segnalazione").': '.$mail->ErrorInfo;
|
|
} else {
|
|
$_SESSION['infos'][] = tr('Email inviata correttamente!');
|
|
}
|
|
|
|
if (!empty($post['sql'])) {
|
|
delete($backup_file);
|
|
}
|
|
|
|
redirect($rootdir.'/bug.php');
|
|
exit();
|
|
}
|
|
|
|
if (file_exists($docroot.'/include/custom/top.php')) {
|
|
include $docroot.'/include/custom/top.php';
|
|
} else {
|
|
include $docroot.'/include/top.php';
|
|
}
|
|
|
|
$email_to = Settings::get('Destinatario');
|
|
$email_from = Settings::get('Indirizzo per le email in uscita');
|
|
|
|
$mail = Mail::get();
|
|
|
|
if (empty($email_to) || empty($email_from) || empty($mail['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').'.';
|
|
|
|
if (empty($email_to) || empty($email_from)) {
|
|
echo Modules::link('Impostazioni', $dbo->fetchArray("SELECT `idimpostazione` FROM `zz_settings` WHERE sezione='Email'")[0]['idimpostazione'], tr('Correggi impostazioni'), null, 'class="btn btn-warning pull-right"');
|
|
}
|
|
|
|
if (empty($mail['server'])) {
|
|
echo Modules::link('Account email', $mail['id'], tr('Correggi account'), null, 'class="btn btn-warning pull-right"');
|
|
}
|
|
|
|
echo '
|
|
<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></h3>
|
|
</div>
|
|
|
|
<div class="box-body">
|
|
<form method="post" action="'.$rootdir.'/bug.php?op=send">
|
|
<table class="table table-bordered table-condensed table-striped table-hover">
|
|
<tr>
|
|
<th width="150" class="text-right">'.tr('Da').':</th>
|
|
<td>
|
|
{[ "type": "email", "placeholder": "'.tr('Mittente').'", "name": "email_from", "value": "'.$email_from.'", "required": 1 ]}
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- A -->
|
|
<tr>
|
|
<th class="text-right">'.tr('A').':</th>
|
|
<td>
|
|
{[ "type": "email", "placeholder": "'.tr('Destinatario').'", "name": "email_to", "value": "'.$email_to.'", "required": 1 ]}
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Cc -->
|
|
<tr>
|
|
<th class="text-right">'.tr('Cc').':</th>
|
|
<td>
|
|
{[ "type": "email", "placeholder": "'.tr('Copia a').'...", "name": "email_cc" ]}
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Bcc -->
|
|
<tr>
|
|
<th class="text-right">'.tr('Bcc').':</th>
|
|
<td>
|
|
{[ "type": "email", "placeholder": "'.tr('Copia nascosta a').'...", "name": "email_bcc" ]}
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Versione -->
|
|
<tr>
|
|
<th class="text-right">'.tr('Versione OSM').':</th>
|
|
|
|
<td>
|
|
{[ "type": "span", "placeholder": "'.tr('Versione OSM').'", "value": "'.$version.' ('.(!empty($revision) ? $revision : tr('In sviluppo')).')" ]}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-4">
|
|
{[ "type": "checkbox", "placeholder": "'.tr('Allega file di log').'", "name": "log", "value": "1" ]}
|
|
</div>
|
|
|
|
<div class="col-xs-12 col-md-4">
|
|
{[ "type": "checkbox", "placeholder": "'.tr('Allega copia del database').'", "name": "sql", "value": "0" ]}
|
|
</div>
|
|
|
|
<div class="col-xs-12 col-md-4">
|
|
{[ "type": "checkbox", "placeholder": "'.tr('Allega informazioni sul PC').'", "name": "info", "value": "1" ]}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
<br>
|
|
|
|
{[ "type": "textarea", "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(){
|
|
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 malfunzionameto').'.</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 = 1;
|
|
|
|
CKEDITOR.replace("body", {
|
|
toolbar: [
|
|
{ name: "document", items: [ "NewPage", "Preview", "-", "Templates" ] }, // Defines toolbar group with name (used to create voice label) and items in 3 subgroups
|
|
["Bold","Italic","Underline","Superscript","-","NumberedList","BulletedList","Outdent","Indent","Blockquote","-","Format",], // Defines toolbar group without name
|
|
]
|
|
});
|
|
|
|
CKEDITOR.instances.body.on("key", function() {
|
|
setTimeout(function(){
|
|
if(CKEDITOR.instances.body.getData() == ""){
|
|
$("#send").prop("disabled", true);
|
|
}
|
|
else $("#send").prop("disabled", false);
|
|
}, 10);
|
|
});
|
|
|
|
CKEDITOR.instances.body.setData( html, function() {});
|
|
|
|
CKEDITOR.instances.body.on("focus", function() {
|
|
if(firstFocus){
|
|
CKEDITOR.instances.body.setData("", function() {
|
|
CKEDITOR.instances.body.focus();
|
|
});
|
|
firstFocus = 0;
|
|
}
|
|
});
|
|
});
|
|
</script>';
|
|
|
|
if (file_exists($docroot.'/include/custom/bottom.php')) {
|
|
include $docroot.'/include/custom/bottom.php';
|
|
} else {
|
|
include $docroot.'/include/bottom.php';
|
|
}
|