jilo-web/public_html/pages/front.php

242 lines
7.5 KiB
PHP
Raw Normal View History

2024-07-06 14:21:21 +00:00
<?php
require_once 'classes/database.php';
require 'classes/conference.php';
// connect to database
try {
$db = new Database($config['jilo_database']);
} catch (Exception $e) {
$error = 'Error: ' . $e->getMessage();
include 'templates/message.php';
exit();
}
//
// dashboard widget listings
//
// conferences in last 7 days
try {
$conference = new Conference($db);
// conferences for last 2 days
$from_time = date('Y-m-d', time() - 60 * 60 * 24 * 2);
$until_time = date('Y-m-d', time());
$time_range_specified = true;
// prepare the result
$search = $conference->conferencesAllFormatted($from_time, $until_time);
if (!empty($search)) {
$conferences = array();
$conferences['records'] = array();
foreach ($search as $item) {
extract($item);
// we don't have duration field, so we calculate it
if (!empty($start) && !empty($end)) {
$duration = gmdate("H:i:s", abs(strtotime($end) - strtotime($start)));
} else {
$duration = '';
}
2024-07-06 14:21:21 +00:00
$conference_record = array(
// assign title to the field in the array record
'component' => $jitsi_component,
'start' => $start,
'end' => $end,
'duration' => $duration,
2024-07-06 14:21:21 +00:00
'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
echo "<a style=\"text-decoration: none;\" data-toggle=\"collapse\" href=\"#collapseLastDays\" role=\"button\" aria-expanded=\"true\" aria-controls=\"collapseLastDays\">";
echo "<div class=\"card bg-light card-body\">Conferences for the last 2 days</div></a>";
echo "<div class=\"collapse show\" id=\"collapseLastDays\">";
2024-07-06 14:21:21 +00:00
if ($time_range_specified) {
echo "<p class=\"m-3\">time period: <strong>$from_time - $until_time</strong></p>";
2024-07-06 14:21:21 +00:00
}
//// filters - time selection and sorting dropdowns
//include 'templates/results-filter.php';
// results table
2024-07-25 09:24:07 +00:00
echo "<div class=\"mb-5\">\n";
2024-07-06 14:21:21 +00:00
if (!empty($conferences['records'])) {
2024-07-25 09:24:07 +00:00
echo "\t<table class=\"table table-striped table-hover table-bordered\">\n";
echo "\t\t<thead class=\"thead-dark\">\n";
echo "\t\t\t<tr>\n";
2024-07-06 14:21:21 +00:00
// table headers
foreach (array_keys($conferences['records'][0]) as $header) {
2024-07-25 09:24:07 +00:00
echo "\t\t\t\t<th scope=\"col\">" . htmlspecialchars($header) . "</th>\n";
2024-07-06 14:21:21 +00:00
}
2024-07-25 09:24:07 +00:00
echo "\t\t\t</tr>\n";
echo "\t\t</thead>\n";
echo "\t\t<tbody>\n";
2024-07-06 14:21:21 +00:00
//table rows
foreach ($conferences['records'] as $row) {
2024-07-25 09:24:07 +00:00
echo "\t\t\t<tr>\n";
2024-07-06 14:21:21 +00:00
// sometimes $column is empty, we make it '' then
foreach ($row as $key => $column) {
if ($key === 'conference ID' && $column === $conference_id) {
2024-07-25 09:24:07 +00:00
echo "\t\t\t\t<td><strong>" . htmlspecialchars($column ?? '') . "</strong></td>\n";
2024-07-06 14:21:21 +00:00
} elseif ($key === 'conference name') {
2024-07-25 09:24:07 +00:00
echo "\t\t\t\t<td><a href=\"$app_root?page=conferences&name=" . htmlspecialchars($column ?? '') . "\">" . htmlspecialchars($column ?? '') . "</a></td>\n";
2024-07-06 14:21:21 +00:00
} else {
2024-07-25 09:24:07 +00:00
echo "\t\t\t\t<td>" . htmlspecialchars($column ?? '') . "</td>\n";
2024-07-06 14:21:21 +00:00
}
}
2024-07-25 09:24:07 +00:00
echo "\t\t\t</tr>\n";
2024-07-06 14:21:21 +00:00
}
2024-07-25 09:24:07 +00:00
echo "\t\t</tbody>\n";
2024-07-06 14:21:21 +00:00
echo "\t</table>\n";
} else {
2024-07-25 09:24:07 +00:00
echo '<p class="m-3">No matching conferences found.</p>';
2024-07-06 14:21:21 +00:00
}
echo "\n</div>\n";
echo "</div>";
echo "<br />";
2024-07-06 14:21:21 +00:00
// last 10 conferences
try {
$conference = new Conference($db);
// all time
$from_time = '0000-01-01';
$until_time = '9999-12-31';
$time_range_specified = false;
// number of conferences to show
$conference_number = 10;
// prepare the result
$search = $conference->conferencesAllFormatted($from_time, $until_time);
if (!empty($search)) {
$conferences = array();
$conferences['records'] = array();
$i = 0;
foreach ($search as $item) {
extract($item);
// we don't have duration field, so we calculate it
if (!empty($start) && !empty($end)) {
$duration = gmdate("H:i:s", abs(strtotime($end) - strtotime($start)));
} else {
$duration = '';
}
2024-07-06 14:21:21 +00:00
$conference_record = array(
// assign title to the field in the array record
'component' => $jitsi_component,
'start' => $start,
'end' => $end,
'duration' => $duration,
2024-07-06 14:21:21 +00:00
'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);
// we only take the first 10 results
$i++;
if ($i == 10) break;
}
}
} catch (Exception $e) {
$error = 'Error: ' . $e->getMessage();
include 'templates/message.php';
exit();
}
// display the result
echo "<a style=\"text-decoration: none;\" data-toggle=\"collapse\" href=\"#collapseLastConferences\" role=\"button\" aria-expanded=\"true\" aria-controls=\"collapseLastConferences\">";
echo "<div class=\"card bg-light card-body\">The last $conference_number conferences</div></a>";
echo "<div class=\"collapse show\" id=\"collapseLastConferences\">";
2024-07-06 14:21:21 +00:00
if ($time_range_specified) {
echo "<br />for the time period <strong>$from_time - $until_time</strong>";
}
//// filters - time selection and sorting dropdowns
//include 'templates/results-filter.php';
// results table
2024-07-25 09:24:07 +00:00
echo "<div class=\"mb-5\">\n";
2024-07-06 14:21:21 +00:00
if (!empty($conferences['records'])) {
2024-07-25 09:24:07 +00:00
echo "\t<table class=\"table table-striped table-hover table-bordered\">\n";
2024-07-25 12:13:12 +00:00
echo "\t\t<thead class=\"table-secondary\">\n";
2024-07-25 09:24:07 +00:00
echo "\t\t\t<tr>\n";
2024-07-06 14:21:21 +00:00
// table headers
foreach (array_keys($conferences['records'][0]) as $header) {
2024-07-25 09:24:07 +00:00
echo "\t\t\t\t<th scope=\"col\">" . htmlspecialchars($header) . "</th>\n";
2024-07-06 14:21:21 +00:00
}
2024-07-25 09:24:07 +00:00
echo "\t\t\t</tr>\n";
echo "\t\t</thead>\n";
echo "\t\t<tbody>\n";
2024-07-06 14:21:21 +00:00
//table rows
foreach ($conferences['records'] as $row) {
2024-07-25 09:24:07 +00:00
echo "\t\t\t<tr>\n";
2024-07-06 14:21:21 +00:00
// sometimes $column is empty, we make it '' then
foreach ($row as $key => $column) {
2024-07-06 14:32:13 +00:00
if ($key === 'conference ID') {
2024-07-25 09:24:07 +00:00
echo "\t\t\t\t<td><a href=\"$app_root?page=conferences&id=" . htmlspecialchars($column ?? '') . "\">" . htmlspecialchars($column ?? '') . "</a></td>\n";
2024-07-06 14:21:21 +00:00
} elseif ($key === 'conference name') {
2024-07-25 09:24:07 +00:00
echo "\t\t\t\t<td><a href=\"$app_root?page=conferences&name=" . htmlspecialchars($column ?? '') . "\">" . htmlspecialchars($column ?? '') . "</a></td>\n";
2024-07-06 14:21:21 +00:00
} else {
2024-07-25 09:24:07 +00:00
echo "\t\t\t\t<td>" . htmlspecialchars($column ?? '') . "</td>\n";
2024-07-06 14:21:21 +00:00
}
}
2024-07-25 09:24:07 +00:00
echo "\t\t\t</tr>\n";
2024-07-06 14:21:21 +00:00
}
2024-07-25 09:24:07 +00:00
echo "\t\t</tbody>\n";
2024-07-06 14:21:21 +00:00
echo "\t</table>\n";
} else {
2024-07-25 09:24:07 +00:00
echo '<p class="m-3">No matching conferences found.</p>';
2024-07-06 14:21:21 +00:00
}
echo "\n</div>\n";
echo "</div>";
?>