187 lines
5.9 KiB
PHP
187 lines
5.9 KiB
PHP
<?php
|
||
|
||
$skip_permissions = true;
|
||
include_once __DIR__.'/core.php';
|
||
|
||
$op = filter('op');
|
||
|
||
// LOGIN
|
||
switch ($op) {
|
||
case 'login':
|
||
$username = post('username');
|
||
$password = post('password');
|
||
|
||
if ($dbo->isConnected() && $dbo->isInstalled() && Auth::getInstance()->attempt($username, $password)) {
|
||
$_SESSION['keep_alive'] = (filter('keep_alive') != null);
|
||
|
||
// Rimozione log vecchi
|
||
$dbo->query('DELETE FROM `zz_operations` WHERE DATE_ADD(`created_at`, INTERVAL 30*24*60*60 SECOND) <= NOW()');
|
||
|
||
// Auto backup del database giornaliero
|
||
if (setting('Backup automatico')) {
|
||
$result = Backup::daily();
|
||
|
||
if (!isset($result)) {
|
||
App::flash()->info(tr('Backup saltato perché già esistente!'));
|
||
} elseif (!empty($result)) {
|
||
App::flash()->info(tr('Backup automatico eseguito correttamente!'));
|
||
} else {
|
||
App::flash()->error(tr('Errore durante la generazione del backup automatico!'));
|
||
}
|
||
}
|
||
} else {
|
||
$status = Auth::getInstance()->getCurrentStatus();
|
||
|
||
App::flash()->error(Auth::getStatus()[$status]['message']);
|
||
|
||
redirect(ROOTDIR.'/index.php');
|
||
exit();
|
||
}
|
||
|
||
break;
|
||
|
||
case 'logout':
|
||
Auth::logout();
|
||
|
||
redirect(ROOTDIR.'/index.php');
|
||
exit();
|
||
|
||
break;
|
||
}
|
||
|
||
if (Auth::check() && isset($dbo) && $dbo->isConnected() && $dbo->isInstalled()) {
|
||
$module = Auth::firstModule();
|
||
|
||
if (!empty($module)) {
|
||
redirect(ROOTDIR.'/controller.php?id_module='.$module);
|
||
} else {
|
||
redirect(ROOTDIR.'/index.php?op=logout');
|
||
}
|
||
exit();
|
||
}
|
||
|
||
// Procedura di installazione
|
||
include_once $docroot.'/include/init/configuration.php';
|
||
|
||
// Procedura di aggiornamento
|
||
include_once $docroot.'/include/init/update.php';
|
||
|
||
// Procedura di inizializzazione
|
||
include_once $docroot.'/include/init/init.php';
|
||
|
||
$pageTitle = tr('Login');
|
||
|
||
include_once App::filepath('include|custom|', 'top.php');
|
||
|
||
// Controllo se è una beta e in caso mostro un warning
|
||
if (str_contains($version, 'beta')) {
|
||
echo '
|
||
<div class="clearfix"> </div>
|
||
<div class="alert alert-warning alert-dismissable col-md-6 col-md-push-3 text-center fade in">
|
||
<i class="fa fa-warning"></i> <b>'.tr('Attenzione!').'</b> '.tr('Stai utilizzando una versione <b>non stabile</b> di OSM.').'
|
||
|
||
<button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
|
||
</div>';
|
||
}
|
||
|
||
// Controllo se è una beta e in caso mostro un warning
|
||
if (Auth::isBrute()) {
|
||
echo '
|
||
<div class="box box-danger box-center" id="brute">
|
||
<div class="box-header with-border text-center">
|
||
<h3 class="box-title">'.tr('Attenzione').'</h3>
|
||
</div>
|
||
|
||
<div class="box-body text-center">
|
||
<p>'.tr('Sono stati effettuati troppi tentativi di accesso consecutivi!').'</p>
|
||
<p>'.tr('Tempo rimanente (in secondi)').': <span id="brute-timeout">'.(Auth::getBruteTimeout() + 1).'</span></p>
|
||
</div>
|
||
</div>
|
||
<script>
|
||
$(document).ready(function(){
|
||
$(".login-box").fadeOut();
|
||
brute();
|
||
});
|
||
|
||
function brute() {
|
||
var value = parseFloat($("#brute-timeout").html()) - 1;
|
||
$("#brute-timeout").html(value);
|
||
|
||
if(value > 0){
|
||
setTimeout("brute()", 1000);
|
||
} else{
|
||
$("#brute").fadeOut();
|
||
$(".login-box").fadeIn();
|
||
}
|
||
}
|
||
</script>';
|
||
}
|
||
|
||
if (!empty(App::flash()->getMessage('error'))) {
|
||
echo '
|
||
<script>
|
||
$(document).ready(function(){
|
||
$(".login-box").effect("shake");
|
||
});
|
||
</script>';
|
||
}
|
||
|
||
echo '
|
||
<form action="?op=login" method="post" class="login-box box">
|
||
<div class="box-header with-border text-center">
|
||
<img src="'.App::getPaths()['img'].'/logo.png" alt="'.tr('OSM Logo').'">
|
||
<h3 class="box-title">'.tr('OpenSTAManager').'</h3>
|
||
</div>
|
||
|
||
<div class="login-box-body box-body">
|
||
<div class="form-group input-group">
|
||
<span class="input-group-addon"><i class="fa fa-user"></i> </span>
|
||
<input type="text" name="username" autocomplete="off" class="form-control" placeholder="'.tr('Nome utente').'"';
|
||
if (isset($username)) {
|
||
echo ' value="'.$username.'"';
|
||
}
|
||
echo'>
|
||
</div>
|
||
<div class="form-group input-group">
|
||
<span class="input-group-addon"><i class="fa fa-lock"></i> </span>
|
||
<input type="password" name="password" autocomplete="off" class="form-control" placeholder="'.tr('Password').'">
|
||
</div>
|
||
<div class="form-group">
|
||
<input type="checkbox" name="keep_alive"';
|
||
if (filter('keep_alive') != null) {
|
||
echo ' checked';
|
||
}
|
||
echo '/> '.tr('Mantieni attiva la sessione').'
|
||
</div>
|
||
</div>
|
||
<!-- /.box-body -->
|
||
<div class="box-footer">
|
||
<button type="submit" id="login" class="btn btn-danger btn-block">'.tr('Accedi').'</button>
|
||
</div>
|
||
<!-- box-footer -->
|
||
</form>
|
||
<!-- /.box -->
|
||
|
||
<script>
|
||
$(document).ready( function(){
|
||
$("#login").click(function(){
|
||
$("#login").text("';
|
||
if ($dbo->isInstalled() && !Update::isUpdateAvailable() && setting('Backup automatico')) {
|
||
echo tr('Backup automatico in corso');
|
||
} else {
|
||
echo tr('Autenticazione');
|
||
}
|
||
echo '...");
|
||
});
|
||
|
||
if( $("input[name=username]").val() == ""){
|
||
$("input[name=username]").focus();
|
||
}
|
||
else{
|
||
$("input[name=password]").focus();
|
||
}
|
||
});
|
||
</script>';
|
||
|
||
include_once App::filepath('include|custom|', 'bottom.php');
|