2018-10-15 15:14:36 -04:00
|
|
|
<?php
|
|
|
|
/*
|
2021-06-12 09:29:10 -04:00
|
|
|
* Copyright (C) 2018 josh.north@point808.com
|
2018-10-15 15:14:36 -04:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-10-18 13:21:59 -04:00
|
|
|
ini_set('session.gc_maxlifetime', 24*60*60); // MIN SESSION
|
|
|
|
ini_set('session.gc_probability', 1); // GC RATES
|
|
|
|
ini_set('session.gc_divisor', 100); // TIMES
|
|
|
|
ini_set('session.use_cookies', '1');
|
|
|
|
ini_set('session.use_only_cookies', '0');
|
|
|
|
ini_set('session.cookie_lifetime', '0');
|
|
|
|
ini_set('session.cookie_secure', '1');
|
|
|
|
ini_set('session.cookie_httponly', '1');
|
|
|
|
ini_set('session.cookie_samesite', 'Strict');
|
|
|
|
session_save_path('.tmp'); // TEMP
|
|
|
|
spl_autoload_register();
|
|
|
|
session_start(); // START
|
2018-10-19 19:00:44 -04:00
|
|
|
require_once __DIR__ . '/autoload.php'; // AUTOLOAD
|
2021-10-18 13:21:59 -04:00
|
|
|
require_once __DIR__ . '/src/Misc/defuse-crypto.phar';
|
2021-05-07 12:49:49 -04:00
|
|
|
use App\LobbySIO\Config\Registry;
|
2021-10-18 13:21:59 -04:00
|
|
|
use Defuse\Crypto\Crypto;
|
2021-05-07 12:49:49 -04:00
|
|
|
$Users = new \App\LobbySIO\Database\Users();
|
2021-10-18 13:21:59 -04:00
|
|
|
use App\LobbySIO\Misc\Csrf; // ANTICSRF
|
2021-05-07 12:49:49 -04:00
|
|
|
if (Registry::AUTHMETHOD == 'SAML') {
|
|
|
|
//simplesaml
|
|
|
|
require_once('../simplesamlphp/lib/_autoload.php');
|
|
|
|
$auth = new \SimpleSAML\Auth\Simple(Registry::AUTHIDP);
|
|
|
|
//$auth->requireAuth();
|
|
|
|
$auth->isAuthenticated();
|
|
|
|
if (!$auth->isAuthenticated()) {
|
|
|
|
$attributes = 'none';
|
|
|
|
} else {
|
|
|
|
$attributes = $auth->getAttributes();
|
|
|
|
$saml_user_email = $attributes['http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress'][0];
|
|
|
|
$saml_user_info = $Users->getUserInfoByEmail($saml_user_email, "1", "0");
|
|
|
|
$saml_user_id = $saml_user_info["0"]["users_id"];
|
|
|
|
}
|
|
|
|
$session = \SimpleSAML\Session::getSessionFromRequest();
|
|
|
|
$session->cleanup();
|
|
|
|
}
|
2018-10-19 19:00:44 -04:00
|
|
|
$StaticFunctions = new \App\LobbySIO\Misc\StaticFunctions(); // DEFAULT CLASSES
|
2018-10-15 15:14:36 -04:00
|
|
|
$SiteInfo = new \App\LobbySIO\Database\SiteInfo();
|
2018-10-19 19:00:44 -04:00
|
|
|
if (isset($_SESSION['user_id'])) { // LOGGED IN? GET USER OBJECT
|
2021-05-07 12:49:49 -04:00
|
|
|
if (isset($saml_user_id)) {
|
|
|
|
$sessuserid=$saml_user_id;
|
|
|
|
} else {
|
|
|
|
$sessuserid=$_SESSION['user_id'];
|
|
|
|
}
|
|
|
|
} elseif (!isset($_SESSION['user_id'])) {
|
|
|
|
if (isset($saml_user_id)) {
|
|
|
|
$sessuserid=$saml_user_id;
|
|
|
|
} else {
|
2021-05-07 13:34:29 -04:00
|
|
|
$sessuserid='2';
|
2021-05-07 12:49:49 -04:00
|
|
|
}
|
|
|
|
$session_user = $Users->getUserInfo($sessuserid, "1", "0"); }
|
2018-10-19 19:00:44 -04:00
|
|
|
if (isset($session_user)) { // GET UID OR SET TO KIOSK
|
|
|
|
$uid = $session_user["0"]["users_id"];} else { $uid = "2"; }
|
2021-08-09 12:08:40 -04:00
|
|
|
$app_disp_lang = filter_input(INPUT_COOKIE, 'app_disp_lang', FILTER_SANITIZE_FULL_SPECIAL_CHARS); // SETUP LANGUAGE
|
2018-10-19 19:00:44 -04:00
|
|
|
if(!isset($app_disp_lang)) {
|
|
|
|
$app_disp_lang=$StaticFunctions->getDefaultLanguage(); }
|
2021-08-09 12:08:40 -04:00
|
|
|
$siteidcookie = filter_input(INPUT_COOKIE, 'app_site', FILTER_SANITIZE_FULL_SPECIAL_CHARS); // SETUP SITE
|
2018-10-19 19:00:44 -04:00
|
|
|
foreach($SiteInfo->getSite("0", $uid, "0", "0") as $arr) {
|
|
|
|
$lookup_array[$arr['sites_id']]=1; }
|
|
|
|
if(isset($lookup_array[$siteidcookie])) {
|
|
|
|
$siteid = $siteidcookie; } else { $siteid = "1"; }
|
|
|
|
if(!isset($siteid)) { $siteid="1"; }
|
|
|
|
$Translate = new \App\LobbySIO\Language\Translate($app_disp_lang); // SETUP TRANSLATOR
|
|
|
|
$transLang = $Translate->userLanguage();
|
|
|
|
$app_current_pagename = $transLang['LOGIN']; // PAGE SETUP
|
|
|
|
$app_current_pageicon = '<i class="fas fa-sign-in-alt"></i> ';
|
|
|
|
require_once("inc/header.inc.php");
|
2021-05-07 12:49:49 -04:00
|
|
|
if ($StaticFunctions->getUserSessionStatus() == true) { // CHECK STATUS
|
2018-10-19 19:00:44 -04:00
|
|
|
header('Location: index.php'); // ELSE HOME
|
2021-05-28 15:31:54 -04:00
|
|
|
} else {
|
2021-08-16 10:42:45 -04:00
|
|
|
//header("X-Frame-Options: SAMEORIGIN");
|
|
|
|
//header("X-Content-Type-Options: nosniff");
|
2021-06-01 10:52:51 -04:00
|
|
|
//header("Content-Security-Policy: script-src 'self' 'unsafe-inline'; script-src-elem 'self'; script-src-attr 'self'; style-src 'self'; style-src-elem 'self'; style-src-attr 'self'; img-src 'self'; connect-src 'self'; frame-src 'self'; font-src 'self'; media-src 'self'; object-src 'self'; manifest-src 'self'; worker-src 'self'; prefetch-src 'self'; form-action 'self'; frame-ancestors 'self'; default-src 'self'", false);
|
2021-08-09 12:08:40 -04:00
|
|
|
if (!empty(filter_input(INPUT_GET, 'a', FILTER_SANITIZE_FULL_SPECIAL_CHARS))) {
|
2021-08-05 21:15:59 -04:00
|
|
|
//echo '<pre>' . print_r($_POST, true) . '</pre>';
|
2021-05-28 15:31:54 -04:00
|
|
|
echo 'Verification has been : ' . (Csrf::verifyToken('home') ? 'successful' : 'unsuccessful');
|
|
|
|
}
|
|
|
|
?>
|
2018-10-15 15:14:36 -04:00
|
|
|
|
2021-05-28 11:33:45 -04:00
|
|
|
|
|
|
|
<!-- START CONTENT -->
|
2018-10-15 15:14:36 -04:00
|
|
|
<?php
|
|
|
|
// hash password for comparison
|
|
|
|
require_once("src/Misc/PasswordHash.php");
|
|
|
|
$hasher = new PasswordHash(8, FALSE);
|
|
|
|
// compare if posted
|
2021-08-09 12:08:40 -04:00
|
|
|
if (!empty(filter_input(INPUT_POST, 'username', FILTER_SANITIZE_FULL_SPECIAL_CHARS))):
|
|
|
|
$user = $Users->loginUser(filter_input(INPUT_POST, 'username', FILTER_SANITIZE_FULL_SPECIAL_CHARS));
|
2021-08-05 22:08:24 -04:00
|
|
|
if ($user && $user[0]["users_password"] == $hasher->CheckPassword(filter_input(INPUT_POST, 'password', FILTER_SANITIZE_FULL_SPECIAL_CHARS), $user[0]["users_password"])):
|
2018-10-15 15:14:36 -04:00
|
|
|
session_regenerate_id();
|
|
|
|
$_SESSION['user_id'] = $user[0]["users_id"];
|
|
|
|
$_SESSION['loggedIn'] = TRUE;
|
|
|
|
$_SESSION['signature'] = md5($user[0]["users_id"] . $_SERVER['HTTP_USER_AGENT']);
|
|
|
|
$_SESSION['firstname'] = $user[0]["users_firstname"];
|
|
|
|
$_SESSION['lastname'] = $user[0]["users_lastname"];
|
|
|
|
session_write_close();
|
|
|
|
header("Location: index.php");
|
|
|
|
endif;
|
|
|
|
endif;
|
|
|
|
?>
|
2021-06-17 18:42:12 -04:00
|
|
|
|
|
|
|
<!-- SITE CHANGER -->
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row row-cols-3 mb-2">
|
2021-05-28 11:33:45 -04:00
|
|
|
<div class="col d-grid gap-2">
|
2021-06-17 18:42:12 -04:00
|
|
|
<h2><i class="fas fa-globe"></i> <?php echo $transLang['STR_COMMON_SITE']; ?></h2>
|
2018-10-15 15:14:36 -04:00
|
|
|
</div>
|
2021-06-17 18:42:12 -04:00
|
|
|
<div class="col text-start">
|
|
|
|
<div class="input-group">
|
|
|
|
<span class="input-group-text form-control-sm"><?php echo $transLang['STR_COMMON_SITE']; ?></span>
|
|
|
|
<input type="text" class="form-control form-control-sm bg-white" id="created" name="created" value="<?php echo $SiteInfo->getSite($siteid, $uid, "0", "0")[0]["sites_name"]; ?>" readonly/>
|
|
|
|
<span class="input-group-text form-control-sm"><?php echo $transLang['STR_COMMON_TIMEZONE']; ?></span>
|
|
|
|
<input type="text" class="form-control form-control-sm bg-white" id="created" name="created" value="<?php echo $SiteInfo->getSite($siteid, $uid, "0", "0")[0]["sites_timezone"]; ?>" readonly/>
|
|
|
|
<span class="input-group-text form-control-sm"><?php echo $transLang['STR_COMMON_REGION']; ?></span>
|
|
|
|
<input type="text" class="form-control form-control-sm bg-white" id="created" name="created" value="<?php echo $SiteInfo->getSite($siteid, $uid, "0", "0")[0]["sites_region"]; ?>" readonly/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col text-end">
|
|
|
|
<button type="button" class="btn btn-success btn-lg" data-bs-toggle="modal" data-bs-target="#sitetimeModal"><i class="fas fa-random"></i> <?php echo $transLang['STR_COMMON_CHANGE']; ?></button>
|
2021-08-11 16:47:18 -04:00
|
|
|
<a href="changeaccess.php" type="button" class="btn btn-primary btn-lg"><i class="fa fa-redo"></i></a>
|
2021-05-28 11:33:45 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-06-17 18:42:12 -04:00
|
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<!-- SITE CHANGER END -->
|
|
|
|
|
|
|
|
<!-- LOGIN SECTION -->
|
|
|
|
<div class="container-fluid">
|
|
|
|
<form method="post">
|
|
|
|
<?php echo Csrf::getInputToken('home') ?>
|
|
|
|
<div class="row row-cols-3 mb-2">
|
|
|
|
<div class="col d-grid gap-2">
|
|
|
|
<h2><i class="fas fa-sign-in-alt"></i> <?php echo $transLang['LOGIN']; ?></h2>
|
|
|
|
</div>
|
|
|
|
<div class="col text-start">
|
2021-05-07 13:03:43 -04:00
|
|
|
<?php if (Registry::AUTHMETHOD == 'INTERNAL') { ?>
|
2021-06-17 18:42:12 -04:00
|
|
|
<div class="input-group">
|
2021-08-03 12:14:51 -04:00
|
|
|
<span class="input-group-text form-control-sm"><?php echo $transLang['USER-USERNAME']; ?></span>
|
2021-06-17 18:42:12 -04:00
|
|
|
<input type="text" class="form-control form-control-sm bg-white" id="username" name="username" placeholder="<?php echo $transLang['USER-USERNAME']; ?>" required autofocus />
|
2021-08-03 12:14:51 -04:00
|
|
|
<span class="input-group-text form-control-sm"><?php echo $transLang['PASSWORD']; ?></span>
|
|
|
|
<input type="password" class="form-control form-control-sm bg-white" id="password" name="password" placeholder="<?php echo $transLang['PASSWORD']; ?>" required autofocus />
|
2018-10-15 15:14:36 -04:00
|
|
|
</div>
|
2021-06-17 18:42:12 -04:00
|
|
|
<?php } elseif (Registry::AUTHMETHOD == 'SAML') { ?>
|
|
|
|
<p><?php echo $transLang['LOGIN_SSO_DESCR']; ?></p>
|
2021-05-07 13:03:43 -04:00
|
|
|
<?php } ?>
|
2018-10-15 15:14:36 -04:00
|
|
|
</div>
|
2021-06-17 18:42:12 -04:00
|
|
|
<div class="col text-end">
|
|
|
|
<?php if (Registry::AUTHMETHOD == 'INTERNAL') { ?>
|
|
|
|
<button type="submit" class="btn btn-success btn-lg" name="login"><i class="fas fa-sign-in-alt"></i> <?php echo $transLang['LOGIN']; ?></button>
|
|
|
|
<?php } elseif (Registry::AUTHMETHOD == 'SAML') { ?>
|
|
|
|
<a type="button" class="btn btn-success btn-lg" name="login" href="<?php echo str_replace("http%3A%2F%2F","https%3A%2F%2F",$auth->getLoginURL()); ?>"><i class="fas fa-sign-in-alt"></i> <?php echo $transLang['LOGIN']; ?></a>
|
|
|
|
<?php } ?>
|
2021-08-11 16:47:18 -04:00
|
|
|
<a href="changeaccess.php" type="button" class="btn btn-primary btn-lg"><i class="fa fa-redo"></i></a>
|
2021-06-17 18:42:12 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<!-- LOGIN SECTION END -->
|
|
|
|
|
|
|
|
<!-- END CONTENT -->
|
2018-10-15 15:14:36 -04:00
|
|
|
|
2021-06-12 09:29:10 -04:00
|
|
|
<?php } require_once("inc/footer.inc.php");
|