2024-06-28 17:05:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once 'classes/database.php';
|
|
|
|
require 'classes/user.php';
|
2024-07-01 09:45:07 +00:00
|
|
|
|
|
|
|
// clear the global error var before login
|
2024-06-28 17:05:32 +00:00
|
|
|
unset($error);
|
|
|
|
|
|
|
|
try {
|
2024-07-01 09:45:07 +00:00
|
|
|
$db = new Database($config['database']);
|
2024-06-28 17:05:32 +00:00
|
|
|
$user = new User($db);
|
|
|
|
|
|
|
|
if ( $_SERVER['REQUEST_METHOD'] == 'POST' ) {
|
|
|
|
$username = $_POST['username'];
|
|
|
|
$password = $_POST['password'];
|
|
|
|
|
2024-06-30 07:49:51 +00:00
|
|
|
// login successful
|
2024-06-28 17:05:32 +00:00
|
|
|
if ( $user->login($username, $password) ) {
|
2024-06-30 07:49:51 +00:00
|
|
|
// if remember_me is checked, max out the session
|
|
|
|
if (isset($_POST['remember_me'])) {
|
|
|
|
// 30*24*60*60 = 30 days
|
2024-07-02 17:04:12 +00:00
|
|
|
$cookie_lifetime = 30 * 24 * 60 * 60;
|
|
|
|
$gc_maxlifetime = 30 * 24 * 60 * 60;
|
2024-06-30 07:49:51 +00:00
|
|
|
} else {
|
|
|
|
// 0 - session end on browser close
|
|
|
|
// 1440 - 24 minutes (default)
|
2024-07-02 17:04:12 +00:00
|
|
|
$cookie_lifetime = 0;
|
|
|
|
$gc_maxlifetime = 1440;
|
2024-06-30 07:49:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// set session lifetime
|
|
|
|
ini_set('session.gc_maxlifetime', $gc_maxlifetime);
|
|
|
|
session_set_cookie_params([
|
2024-07-02 17:04:12 +00:00
|
|
|
'lifetime' => $cookie_lifetime,
|
2024-06-30 07:49:51 +00:00
|
|
|
'samesite' => 'Strict',
|
|
|
|
'httponly' => true,
|
|
|
|
'secure' => isset($_SERVER['HTTPS']),
|
2024-07-01 09:45:07 +00:00
|
|
|
'domain' => $config['domain'],
|
|
|
|
'path' => $config['folder']
|
2024-06-30 07:49:51 +00:00
|
|
|
]);
|
2024-07-02 17:04:12 +00:00
|
|
|
session_start();
|
|
|
|
|
2024-06-30 07:49:51 +00:00
|
|
|
// redirect to index
|
2024-07-01 09:45:07 +00:00
|
|
|
$_SESSION['notice'] = "Login successful";
|
2024-06-28 17:05:32 +00:00
|
|
|
header('Location: index.php');
|
|
|
|
exit();
|
2024-06-30 07:49:51 +00:00
|
|
|
|
|
|
|
// login failed
|
2024-06-28 17:05:32 +00:00
|
|
|
} else {
|
2024-07-01 09:45:07 +00:00
|
|
|
$_SESSION['error'] = "Login failed.";
|
|
|
|
header('Location: index.php');
|
|
|
|
exit();
|
2024-06-28 17:05:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$error = $e->getMessage();
|
|
|
|
}
|
|
|
|
|
|
|
|
include 'templates/form-login.php';
|
|
|
|
|
|
|
|
?>
|