jilo-web/public_html/index.php

113 lines
2.7 KiB
PHP
Raw Normal View History

<?php
2024-07-01 09:45:07 +00:00
/**
* Jilo web logs observer
*
* Description: A web interface to Jilo (JItsi Logs Observer), written in PHP
* Author: Yasen Pramatarov
* License: GPLv2
* Project URL: https://lindeas.com/jilo
* Year: 2024
2024-07-25 16:10:53 +00:00
* Version: 0.1.1
2024-07-01 09:45:07 +00:00
*/
// error reporting, comment out in production
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
2024-07-01 09:45:07 +00:00
// list of available pages
// edit accordingly, add 'pages/PAGE.php'
$allowed_urls = [
'front',
'login',
'logout',
'register',
'profile',
'config',
'conferences',
'participants',
2024-07-08 09:17:35 +00:00
'components',
2024-07-01 09:45:07 +00:00
];
// cnfig file
$config_file = '/home/yasen/work/code/git/lindeas-code/jilo-web/jilo-web.conf.php';
if (file_exists($config_file)) {
require_once $config_file;
} else {
die('Config file not found');
}
$app_root = $config['folder'];
2024-07-01 09:45:07 +00:00
session_start();
if (isset($_GET['page'])) {
$page = $_GET['page'];
} elseif (isset($_POST['page'])) {
$page = $_POST['page'];
} else {
$page = 'front';
}
2024-07-03 06:37:35 +00:00
// check if logged in
if (isset($_COOKIE['username'])) {
if ( !isset($_SESSION['username']) ) {
$_SESSION['username'] = $_COOKIE['username'];
}
2024-07-01 09:45:07 +00:00
$user = htmlspecialchars($_SESSION['username']);
}
2024-07-01 09:45:07 +00:00
// redirect to login
2024-07-03 15:15:32 +00:00
if ( !isset($_COOKIE['username']) && ($page !== 'login' && $page !== 'register') ) {
header('Location: index.php?page=login');
exit();
}
2024-07-01 09:45:07 +00:00
// we use 'notice' for all non-critical messages and 'error' for errors
if (isset($_SESSION['notice'])) {
$notice = $_SESSION['notice'];
}
2024-07-01 09:45:07 +00:00
if (isset($_SESSION['error'])) {
$error = $_SESSION['error'];
}
2024-07-01 09:45:07 +00:00
// page building
if (in_array($page, $allowed_urls)) {
// logout is a special case, as we can't use session vars for notices
if ($page == 'logout') {
2024-07-01 09:45:07 +00:00
// clean up session
session_unset();
session_destroy();
2024-07-03 06:37:35 +00:00
setcookie('username', "", time() - 100, $config['folder'], $config['domain'], isset($_SERVER['HTTPS']), true);
2024-07-01 09:45:07 +00:00
$notice = "You were logged out.<br />You can log in again.";
include 'templates/page-header.php';
include 'templates/page-menu.php';
include 'templates/block-message.php';
2024-07-01 09:45:07 +00:00
include 'pages/login.php';
// all other normal pages
} else {
include 'templates/page-header.php';
include 'templates/page-menu.php';
include 'templates/block-message.php';
2024-07-01 09:45:07 +00:00
include "pages/{$page}.php";
}
// the page is not in allowed urls, loading front page
} else {
include 'templates/page-header.php';
include 'templates/page-menu.php';
include 'templates/block-message.php';
include 'pages/front.php';
}
include 'templates/page-footer.php';
2024-07-01 09:45:07 +00:00
// clear errors and notices before next page just in case
unset($_SESSION['error']);
unset($_SESSION['notice']);
?>