jilo-web/public_html/pages/conferences.php

283 lines
9.0 KiB
PHP
Raw Normal View History

<?php
require_once 'classes/database.php';
require 'classes/conference.php';
2024-07-04 10:57:18 +00:00
// FIXME add dropdown menus for selecting from-until
$from_time = '0000-01-01';
$until_time = '9999-12-31';
// FIXME move thi sto a special function
$time_range_specified = true;
// conference id/name are specified when searching specific conference(s)
// either id or name, id has precedence
// we use $_REQUEST, so that both links and forms work
if (isset($_REQUEST['id'])) {
$conference_id = $_REQUEST['id'];
unset($conference_name);
} elseif (isset($_REQUEST['name'])) {
unset($conference_id);
$conference_name = $_REQUEST['name'];
} else {
unset($conference_id);
unset($conference_name);
}
// connect to database
try {
$db = new Database($config['jilo_database']);
} catch (Exception $e) {
$error = 'Error: ' . $e->getMessage();
include 'templates/message.php';
exit();
}
//
// Conference listings
//
// search and list specific conference ID
if (isset($conference_id)) {
try {
$conference = new Conference($db);
2024-07-04 10:57:18 +00:00
// prepare the result
$search = $conference->conferenceById($conference_id, $from_time, $until_time);
if (!empty($search)) {
$conferences = array();
$conferences['records'] = array();
foreach ($search as $item) {
extract($item);
$conference_record = array(
// assign title to the field in the array record
'time' => $time,
'conference ID' => $conference_id,
'conference name' => $conference_name,
'conference host' => $conference_host,
'loglevel' => $loglevel,
'participant ID' => $participant_id,
'event' => $event_type,
'parameter' => $event_param
);
// populate the result array
array_push($conferences['records'], $conference_record);
}
}
2024-07-04 10:57:18 +00:00
} catch (Exception $e) {
$error = 'Error: ' . $e->getMessage();
include 'templates/message.php';
exit();
}
2024-07-04 10:57:18 +00:00
// display the result
2024-07-05 09:13:09 +00:00
echo "<div class=\"results\">\n";
echo "Conferences with ID matching \"<strong>$conference_id</strong>\"";
if ($time_range_specified) {
echo " for the time period <strong>$from_time - $until_time</strong>";
2024-07-04 10:57:18 +00:00
}
2024-07-05 09:13:09 +00:00
echo "\n\n";
2024-07-04 10:57:18 +00:00
if (!empty($conferences['records'])) {
2024-07-05 09:13:09 +00:00
echo "\t<table>\n";
echo "\t\t<tr>\n";
// table headers
foreach (array_keys($conferences['records'][0]) as $header) {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<th>" . htmlspecialchars($header) . "</th>\n";
2024-07-04 10:57:18 +00:00
}
2024-07-05 09:13:09 +00:00
echo "\t\t</tr>\n";
//table rows
foreach ($conferences['records'] as $row) {
2024-07-05 09:13:09 +00:00
echo "\t\t<tr>\n";
// sometimes $column is empty, we make it '' then
foreach ($row as $key => $column) {
2024-07-05 08:40:28 +00:00
if ($key === 'conference ID' && $column === $conference_id) {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<td><strong>" . htmlspecialchars($column ?? '') . "</strong></td>\n";
} elseif ($key === 'conference name') {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<td><a href=\"$app_root?page=conferences&name=" . htmlspecialchars($column ?? '') . "\">" . htmlspecialchars($column ?? '') . "</a></td>\n";
} else {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<td>" . htmlspecialchars($column ?? '') . "</td>\n";
}
}
2024-07-05 09:13:09 +00:00
echo "\t\t</tr>\n";
}
2024-07-05 09:13:09 +00:00
echo "\t</table>\n";
} else {
echo '<p>No matching conferences found.</p>';
2024-07-04 10:57:18 +00:00
}
2024-07-05 09:13:09 +00:00
echo "\n</div>\n";
2024-07-04 10:57:18 +00:00
// search and list specific conference ID
} elseif (isset($conference_name)) {
try {
$conference = new Conference($db);
// prepare the result
$search = $conference->conferenceByName($conference_name, $from_time, $until_time);
if (!empty($search)) {
$conferences = array();
$conferences['records'] = array();
foreach ($search as $item) {
extract($item);
$conference_record = array(
// assign title to the field in the array record
'time' => $time,
'conference ID' => $conference_id,
'conference name' => $conference_name,
'conference host' => $conference_host,
'loglevel' => $loglevel,
'participant ID' => $participant_id,
'event' => $event_type,
'parameter' => $event_param
);
// populate the result array
array_push($conferences['records'], $conference_record);
}
}
} catch (Exception $e) {
$error = 'Error: ' . $e->getMessage();
include 'templates/message.php';
exit();
}
// display the result
2024-07-05 09:13:09 +00:00
echo "<div class=\"results\">\n";
echo "Conferences with name matching \"<strong>$conference_name</strong>\"";
if ($time_range_specified) {
echo " for the time period <strong>$from_time - $until_time</strong>";
}
2024-07-05 09:13:09 +00:00
echo "\n\n";
if (!empty($conferences['records'])) {
2024-07-05 09:13:09 +00:00
echo "\t<table>\n";
echo "\t\t<tr>\n";
// table headers
foreach (array_keys($conferences['records'][0]) as $header) {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<th>" . htmlspecialchars($header) . "</th>\n";
}
2024-07-05 09:13:09 +00:00
echo "\t\t</tr>\n";
//table rows
foreach ($conferences['records'] as $row) {
2024-07-05 09:13:09 +00:00
echo "\t\t<tr>\n";
// sometimes $column is empty, we make it '' then
foreach ($row as $key => $column) {
2024-07-05 08:40:28 +00:00
if ($key === 'conference name' && $column === $conference_name) {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<td><strong>" . htmlspecialchars($column ?? '') . "</strong></td>\n";
} elseif ($key === 'conference ID') {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<td><a href=\"$app_root?page=conferences&id=" . htmlspecialchars($column ?? '') . "\">" . htmlspecialchars($column ?? '') . "</a></td>\n";
} else {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<td>" . htmlspecialchars($column ?? '') . "</td>\n";
}
}
2024-07-05 09:13:09 +00:00
echo "\t\t</tr>\n";
}
2024-07-05 09:13:09 +00:00
echo "\t</table>\n";
} else {
echo '<p>No matching conferences found.</p>';
}
2024-07-05 09:13:09 +00:00
echo "\n</div>\n";
// list of all conferences (default)
2024-07-04 10:57:18 +00:00
} else {
try {
$conference = new Conference($db);
// prepare the result
$search = $conference->conferencesAllFormatted($from_time, $until_time);
if (!empty($search)) {
$conferences = array();
$conferences['records'] = array();
foreach ($search as $item) {
extract($item);
$conference_record = array(
// assign title to the field in the array record
'component' => $jitsi_component,
'start' => $start,
'end' => $end,
'conference ID' => $conference_id,
'conference name' => $conference_name,
'participants' => $participants,
'name count' => $name_count,
'conference host' => $conference_host
);
// populate the result array
array_push($conferences['records'], $conference_record);
}
}
} catch (Exception $e) {
$error = 'Error: ' . $e->getMessage();
include 'templates/message.php';
exit();
}
// display the result
2024-07-05 09:13:09 +00:00
echo "<div class=\"results\">\n";
echo "All conferences";
if ($time_range_specified) {
echo " for the time period <strong>$from_time - $until_time</strong>";
}
echo "\n\n";
if (!empty($conferences['records'])) {
2024-07-05 09:13:09 +00:00
echo "\t<table>\n";
echo "\t\t<tr>\n";
// table headers
foreach (array_keys($conferences['records'][0]) as $header) {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<th>" . htmlspecialchars($header) . "</th>\n";
}
2024-07-05 09:13:09 +00:00
echo "\t\t</tr>\n";
//table rows
foreach ($conferences['records'] as $row) {
2024-07-05 09:13:09 +00:00
echo "\t\t<tr>\n";
// sometimes $column is empty, we make it '' then
foreach ($row as $key => $column) {
if ($key === 'conference ID') {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<td><a href=\"$app_root?page=conferences&id=" . htmlspecialchars($column ?? '') . "\">" . htmlspecialchars($column ?? '') . "</a></td>\n";
} elseif ($key === 'conference name') {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<td><a href=\"$app_root?page=conferences&name=" . htmlspecialchars($column ?? '') . "\">" . htmlspecialchars($column ?? '') . "</a></td>\n";
} else {
2024-07-05 09:13:09 +00:00
echo "\t\t\t<td>" . htmlspecialchars($column ?? '') . "</td>\n";
}
}
2024-07-05 09:13:09 +00:00
echo "\t\t</tr>\n";
}
2024-07-05 09:13:09 +00:00
echo "\t</table>\n";
} else {
echo '<p>No matching conferences found.</p>';
}
2024-07-05 09:13:09 +00:00
echo "\n</div>\n";
2024-07-04 10:57:18 +00:00
}
?>