mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-02-15 10:57:11 +01:00
99 lines
2.7 KiB
PHP
99 lines
2.7 KiB
PHP
<?php
|
|
|
|
define('NO_AUTH_REQUIRED',true);
|
|
|
|
|
|
|
|
// Main include
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
//echo $_SESSION['request_uri'];
|
|
|
|
|
|
$TAB = 'LOGIN';
|
|
|
|
// Logout
|
|
if (isset($_GET['logout'])) {
|
|
session_destroy();
|
|
}
|
|
|
|
|
|
// Login as someone else
|
|
if (isset($_SESSION['user'])) {
|
|
if ($_SESSION['user'] == 'admin' && !empty($_GET['loginas'])) {
|
|
exec (VESTA_CMD . "v-list-user ".escapeshellarg($_GET['loginas'])." json", $output, $return_var);
|
|
if ( $return_var == 0 ) {
|
|
$data = json_decode(implode('', $output), true);
|
|
reset($data);
|
|
$_SESSION['look'] = key($data);
|
|
$_SESSION['look_alert'] = 'yes';
|
|
}
|
|
}
|
|
header("Location: /");
|
|
exit;
|
|
}
|
|
|
|
// Basic auth
|
|
if (isset($_POST['user']) && isset($_POST['password'])) {
|
|
$v_user = escapeshellarg($_POST['user']);
|
|
|
|
// Send password via tmp file
|
|
$v_password = exec('mktemp -p /tmp');
|
|
$fp = fopen($v_password, "w");
|
|
fwrite($fp, $_POST['password']."\n");
|
|
fclose($fp);
|
|
|
|
// Check user & password
|
|
exec(VESTA_CMD ."v-check-user-password ".$v_user." ".$v_password." '".$_SERVER["REMOTE_ADDR"]."'", $output, $return_var);
|
|
unset($output);
|
|
|
|
// Remove tmp file
|
|
unlink($v_password);
|
|
|
|
// Check API answer
|
|
if ( $return_var > 0 ) {
|
|
$ERROR = "<a class=\"error\">".__('Invalid username or password')."</a>";
|
|
|
|
} else {
|
|
|
|
// Make root admin user
|
|
if ($_POST['user'] == 'root') $v_user = 'admin';
|
|
|
|
// Get user speciefic parameters
|
|
exec (VESTA_CMD . "v-list-user ".$v_user." json", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
|
|
// Define session user
|
|
$_SESSION['user'] = key($data);
|
|
$v_user = $_SESSION['user'];
|
|
|
|
// Define language
|
|
if (!empty($data[$v_user]['LANGUAGE'])) $_SESSION['language'] = $data[$v_user]['LANGUAGE'];
|
|
|
|
// Redirect request to control panel interface
|
|
if (!empty($_SESSION['request_uri'])) {
|
|
header("Location: ".$_SESSION['request_uri']);
|
|
unset($_SESSION['request_uri']);
|
|
exit;
|
|
} else {
|
|
header("Location: /");
|
|
exit;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Check system configuration
|
|
exec (VESTA_CMD . "v-list-sys-config json", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
$sys_arr = $data['config'];
|
|
foreach ($sys_arr as $key => $value) {
|
|
$_SESSION[$key] = $value;
|
|
}
|
|
|
|
// Set default language
|
|
if (empty($_SESSION['language'])) $_SESSION['language']='en';
|
|
|
|
require_once($_SERVER['DOCUMENT_ROOT'].'/inc/i18n/'.$_SESSION['language'].'.php');
|
|
require_once('../templates/header.html');
|
|
require_once('../templates/login.html');
|