Compare commits
5 Commits
f952257c20
...
b552a80203
Author | SHA1 | Date |
---|---|---|
|
b552a80203 | |
|
b971a76662 | |
|
25da7331f0 | |
|
50b89f92ea | |
|
676e145349 |
|
@ -8,68 +8,25 @@
|
||||||
class Settings {
|
class Settings {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads the config.js file from the Jitsi server.
|
* Loads javascript file the Jitsi server.
|
||||||
*
|
|
||||||
* @param string $jitsiUrl The base URL of the Jitsi server.
|
|
||||||
* @param bool $raw Whether to return the full file (true) or only uncommented values (false).
|
|
||||||
*
|
|
||||||
* @return string The content of the config.js file or an error message.
|
|
||||||
*/
|
|
||||||
public function getPlatformConfigjs($jitsiUrl, $raw = false) {
|
|
||||||
// constructing the URL
|
|
||||||
$configjsFile = $jitsiUrl . '/config.js';
|
|
||||||
|
|
||||||
// default content, if we can't get the file contents
|
|
||||||
$platformConfigjs = "The file $configjsFile can't be loaded.";
|
|
||||||
|
|
||||||
// ssl options
|
|
||||||
$contextOptions = [
|
|
||||||
'ssl' => [
|
|
||||||
'verify_peer' => true,
|
|
||||||
'verify_peer_name' => true,
|
|
||||||
],
|
|
||||||
];
|
|
||||||
$context = stream_context_create($contextOptions);
|
|
||||||
|
|
||||||
// get the file
|
|
||||||
$fileContent = @file_get_contents($configjsFile, false, $context);
|
|
||||||
|
|
||||||
if ($fileContent !== false) {
|
|
||||||
|
|
||||||
// when we need only uncommented values
|
|
||||||
if ($raw === false) {
|
|
||||||
// remove block comments
|
|
||||||
$platformConfigjs = preg_replace('!/\*.*?\*/!s', '', $fileContent);
|
|
||||||
// remove single-line comments
|
|
||||||
$platformConfigjs = preg_replace('/\/\/[^\n]*/', '', $platformConfigjs);
|
|
||||||
// remove empty lines
|
|
||||||
$platformConfigjs = preg_replace('/^\s*[\r\n]/m', '', $platformConfigjs);
|
|
||||||
|
|
||||||
// when we need the full file as it is
|
|
||||||
} else {
|
|
||||||
$platformConfigjs = $fileContent;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $platformConfigjs;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Loads the interface_config.js file from the Jitsi server.
|
|
||||||
*
|
*
|
||||||
* @param string $jitsiUrl The base URL of the Jitsi server.
|
* @param string $jitsiUrl The base URL of the Jitsi server.
|
||||||
|
* @param string $livejsFile The name of the remote js file to load.
|
||||||
* @param bool $raw Whether to return the full file (true) or only uncommented values (false).
|
* @param bool $raw Whether to return the full file (true) or only uncommented values (false).
|
||||||
*
|
*
|
||||||
* @return string The content of the interface_config.js file or an error message.
|
* @return string The content of the interface_config.js file or an error message.
|
||||||
*/
|
*/
|
||||||
public function getPlatformInterfaceConfigjs($jitsiUrl, $raw = false) {
|
public function getPlatformJsFile($jitsiUrl, $livejsFile, $raw = false) {
|
||||||
// constructing the URL
|
// constructing the URL
|
||||||
$interfaceConfigjsFile = $jitsiUrl . '/interface_config.js';
|
$jsFile = $jitsiUrl . '/' . $livejsFile;
|
||||||
|
|
||||||
// default content, if we can't get the file contents
|
// default content, if we can't get the file contents
|
||||||
$platformInterfaceConfigjs = "The file $interfaceConfigjsFile can't be loaded.";
|
$jsFileContent = "The file $livejsFile can't be loaded.";
|
||||||
|
|
||||||
|
// Check if URL is valid
|
||||||
|
if (!filter_var($jsFile, FILTER_VALIDATE_URL)) {
|
||||||
|
return "Invalid URL: $jsFile";
|
||||||
|
}
|
||||||
|
|
||||||
// ssl options
|
// ssl options
|
||||||
$contextOptions = [
|
$contextOptions = [
|
||||||
|
@ -80,27 +37,60 @@ class Settings {
|
||||||
];
|
];
|
||||||
$context = stream_context_create($contextOptions);
|
$context = stream_context_create($contextOptions);
|
||||||
|
|
||||||
|
// Try to get headers first to check if file exists and wasn't redirected
|
||||||
|
$headers = @get_headers($jsFile, 1); // 1 to get headers as array
|
||||||
|
if ($headers === false) {
|
||||||
|
return "The file $livejsFile can't be loaded (connection error).";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check for redirects
|
||||||
|
$statusLine = $headers[0];
|
||||||
|
if (strpos($statusLine, '301') !== false || strpos($statusLine, '302') !== false) {
|
||||||
|
return "The file $livejsFile was redirected - this might indicate the file doesn't exist.";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if we got 200 OK
|
||||||
|
if (strpos($statusLine, '200') === false) {
|
||||||
|
return "The file $livejsFile can't be loaded (HTTP error: $statusLine).";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check content type
|
||||||
|
$contentType = isset($headers['Content-Type']) ? $headers['Content-Type'] : '';
|
||||||
|
if (is_array($contentType)) {
|
||||||
|
$contentType = end($contentType); // get last content-type in case of redirects
|
||||||
|
}
|
||||||
|
if (stripos($contentType, 'javascript') === false && stripos($contentType, 'text/plain') === false) {
|
||||||
|
return "The file $livejsFile doesn't appear to be a JavaScript file (got $contentType).";
|
||||||
|
}
|
||||||
|
|
||||||
// get the file
|
// get the file
|
||||||
$fileContent = @file_get_contents($interfaceConfigjsFile, false, $context);
|
$fileContent = @file_get_contents($jsFile, false, $context);
|
||||||
|
|
||||||
if ($fileContent !== false) {
|
if ($fileContent !== false) {
|
||||||
|
// Quick validation of content
|
||||||
|
$firstLine = strtolower(trim(substr($fileContent, 0, 100)));
|
||||||
|
if (strpos($firstLine, '<!doctype html>') !== false ||
|
||||||
|
strpos($firstLine, '<html') !== false ||
|
||||||
|
strpos($firstLine, '<?xml') !== false) {
|
||||||
|
return "The file $livejsFile appears to be HTML/XML content instead of JavaScript.";
|
||||||
|
}
|
||||||
|
|
||||||
// when we need only uncommented values
|
// when we need only uncommented values
|
||||||
if ($raw === false) {
|
if ($raw === false) {
|
||||||
// remove block comments
|
// remove block comments
|
||||||
$platformInterfaceConfigjs = preg_replace('!/\*.*?\*/!s', '', $fileContent);
|
$jsFileContent = preg_replace('!/\*.*?\*/!s', '', $fileContent);
|
||||||
// remove single-line comments
|
// remove single-line comments
|
||||||
$platformInterfaceConfigjs = preg_replace('/\/\/[^\n]*/', '', $platformInterfaceConfigjs);
|
$jsFileContent = preg_replace('/\/\/[^\n]*/', '', $jsFileContent);
|
||||||
// remove empty lines
|
// remove empty lines
|
||||||
$platformInterfaceConfigjs = preg_replace('/^\s*[\r\n]/m', '', $platformInterfaceConfigjs);
|
$jsFileContent = preg_replace('/^\s*[\r\n]/m', '', $jsFileContent);
|
||||||
|
|
||||||
// when we need the full file as it is
|
// when we need the full file as it is
|
||||||
} else {
|
} else {
|
||||||
$platformInterfaceConfigjs = $fileContent;
|
$jsFileContent = $fileContent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $platformInterfaceConfigjs;
|
return $jsFileContent;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,12 +3,10 @@
|
||||||
$action = $_REQUEST['action'] ?? '';
|
$action = $_REQUEST['action'] ?? '';
|
||||||
$agent = $_REQUEST['agent'] ?? '';
|
$agent = $_REQUEST['agent'] ?? '';
|
||||||
|
|
||||||
require '../app/classes/settings.php';
|
|
||||||
require '../app/classes/agent.php';
|
require '../app/classes/agent.php';
|
||||||
require '../app/classes/conference.php';
|
require '../app/classes/conference.php';
|
||||||
require '../app/classes/host.php';
|
require '../app/classes/host.php';
|
||||||
|
|
||||||
$settingsObject = new Settings();
|
|
||||||
$agentObject = new Agent($dbWeb);
|
$agentObject = new Agent($dbWeb);
|
||||||
$hostObject = new Host($dbWeb);
|
$hostObject = new Host($dbWeb);
|
||||||
|
|
||||||
|
|
|
@ -1,141 +1,19 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$action = $_REQUEST['action'] ?? '';
|
$mode = $_REQUEST['mode'] ?? '';
|
||||||
$agent = $_REQUEST['agent'] ?? '';
|
$raw = ($mode === 'raw');
|
||||||
|
$livejsFile = $_REQUEST['item'] ?? '';
|
||||||
|
|
||||||
require '../app/classes/settings.php';
|
require '../app/classes/settings.php';
|
||||||
require '../app/classes/agent.php';
|
|
||||||
require '../app/classes/conference.php';
|
|
||||||
require '../app/classes/host.php';
|
|
||||||
|
|
||||||
$settingsObject = new Settings();
|
$settingsObject = new Settings();
|
||||||
$agentObject = new Agent($dbWeb);
|
|
||||||
$hostObject = new Host($dbWeb);
|
|
||||||
|
|
||||||
// connect to Jilo database
|
$livejsData = $settingsObject->getPlatformJsFile($platformDetails[0]['jitsi_url'], $item, $raw);
|
||||||
//$response = connectDB($config, 'jilo', $platformDetails[0]['jilo_database'], $platform_id);
|
|
||||||
//
|
|
||||||
//// if DB connection has error, display it and stop here
|
|
||||||
//if ($response['db'] === null) {
|
|
||||||
// Messages::flash('ERROR', 'DEFAULT', $response['error']);
|
|
||||||
|
|
||||||
// otherwise if DB connection is OK, go on
|
|
||||||
//} else {
|
|
||||||
// $db = $response['db'];
|
|
||||||
//
|
|
||||||
// $conferenceObject = new Conference($db);
|
|
||||||
|
|
||||||
switch ($item) {
|
|
||||||
|
|
||||||
case 'graphs':
|
|
||||||
// Connect to Jilo database for log data
|
|
||||||
$jilo_response = connectDB($config, 'jilo', $platformDetails[0]['jilo_database'], $platform_id);
|
|
||||||
if ($jilo_response['db'] === null) {
|
|
||||||
Messages::flash('ERROR', 'DEFAULT', $jilo_response['error']);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
$jilo_db = $jilo_response['db'];
|
|
||||||
|
|
||||||
// Get date range for the last 7 days
|
|
||||||
$from_time = date('Y-m-d', strtotime('-7 days'));
|
|
||||||
$until_time = date('Y-m-d');
|
|
||||||
|
|
||||||
// Define graphs to show
|
|
||||||
$graphs = [
|
|
||||||
[
|
|
||||||
'graph_name' => 'conferences',
|
|
||||||
'graph_title' => 'Conferences in "' . htmlspecialchars($platformDetails[0]['name']) . '" over time',
|
|
||||||
'datasets' => []
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'graph_name' => 'participants',
|
|
||||||
'graph_title' => 'Participants in "' . htmlspecialchars($platformDetails[0]['name']) . '" over time',
|
|
||||||
'datasets' => []
|
|
||||||
]
|
|
||||||
];
|
|
||||||
|
|
||||||
// Get Jitsi API data
|
|
||||||
$conferences_api = $agentObject->getHistoricalData(
|
|
||||||
$platform_id,
|
|
||||||
'jicofo',
|
|
||||||
'conferences',
|
|
||||||
$from_time,
|
|
||||||
$until_time
|
|
||||||
);
|
|
||||||
$graphs[0]['datasets'][] = [
|
|
||||||
'data' => $conferences_api,
|
|
||||||
'label' => 'Conferences from Jitsi API',
|
|
||||||
'color' => 'rgba(75, 192, 192, 1)'
|
|
||||||
];
|
|
||||||
|
|
||||||
// Get conference data from logs
|
|
||||||
$conferences_logs = $conferenceObject->conferenceNumber(
|
|
||||||
$from_time,
|
|
||||||
$until_time
|
|
||||||
);
|
|
||||||
$graphs[0]['datasets'][] = [
|
|
||||||
'data' => $conferences_logs,
|
|
||||||
'label' => 'Conferences from Logs',
|
|
||||||
'color' => 'rgba(255, 99, 132, 1)'
|
|
||||||
];
|
|
||||||
|
|
||||||
// Get participants data
|
|
||||||
$participants_api = $agentObject->getHistoricalData(
|
|
||||||
$platform_id,
|
|
||||||
'jicofo',
|
|
||||||
'participants',
|
|
||||||
$from_time,
|
|
||||||
$until_time
|
|
||||||
);
|
|
||||||
$graphs[1]['datasets'][] = [
|
|
||||||
'data' => $participants_api,
|
|
||||||
'label' => 'Participants from Jitsi API',
|
|
||||||
'color' => 'rgba(75, 192, 192, 1)'
|
|
||||||
];
|
|
||||||
|
|
||||||
// Prepare data for template
|
|
||||||
$graph = $graphs;
|
|
||||||
|
|
||||||
// prepare the widget
|
|
||||||
$widget['full'] = false;
|
|
||||||
$widget['name'] = 'Graphs';
|
|
||||||
$widget['title'] = 'Jitsi graphs';
|
|
||||||
|
|
||||||
// Get any new messages
|
// Get any new messages
|
||||||
include '../app/includes/messages.php';
|
include '../app/includes/messages.php';
|
||||||
include '../app/includes/messages-show.php';
|
include '../app/includes/messages-show.php';
|
||||||
|
|
||||||
// Load the template
|
// Load the template
|
||||||
include '../app/templates/graphs-combined.php';
|
include '../app/templates/livejs.php';
|
||||||
break;
|
|
||||||
|
|
||||||
case 'configjs':
|
|
||||||
$mode = $_REQUEST['mode'] ?? '';
|
|
||||||
$raw = ($mode === 'raw');
|
|
||||||
$platformConfigjs = $settingsObject->getPlatformConfigjs($platformDetails[0]['jitsi_url'], $raw);
|
|
||||||
// Get any new messages
|
|
||||||
include '../app/includes/messages.php';
|
|
||||||
include '../app/includes/messages-show.php';
|
|
||||||
|
|
||||||
// Load the template
|
|
||||||
include '../app/templates/data-configjs.php';
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'interfaceconfigjs':
|
|
||||||
$mode = $_REQUEST['mode'] ?? '';
|
|
||||||
$raw = ($mode === 'raw');
|
|
||||||
$platformInterfaceConfigjs = $settingsObject->getPlatformInterfaceConfigjs($platformDetails[0]['jitsi_url'], $raw);
|
|
||||||
// Get any new messages
|
|
||||||
include '../app/includes/messages.php';
|
|
||||||
include '../app/includes/messages-show.php';
|
|
||||||
|
|
||||||
// Load the template
|
|
||||||
include '../app/templates/data-interfaceconfigjs.php';
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
}
|
|
||||||
|
|
||||||
//}
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col-12 mb-4">
|
<div class="col-12 mb-4">
|
||||||
<h2 class="mb-0">Jilo Agents status</h2>
|
<h2 class="mb-0">Jilo Agents status</h2>
|
||||||
<small>manage and monitor agents on platform <?= htmlspecialchars($platform_id) ?> (<?= htmlspecialchars($platformDetails[0]['name']) ?>).</small>
|
<small>manage and monitor agents on platform <strong><?= htmlspecialchars($platformDetails[0]['name']) ?></strong></small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
|
|
||||||
<!-- "jitsi components events" -->
|
<!-- jitsi components events -->
|
||||||
<div class="container-fluid mt-2">
|
<div class="container-fluid mt-2">
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col-md-6 mb-5">
|
<div class="col-md-6 mb-5">
|
||||||
<h2>Jitsi components events</h2>
|
<h2 class="mb-0">Jitsi components events</h2>
|
||||||
<small>Log events related to Jitsi Meet components like Jicofo, Videobridge, Jigasi, etc.</small>
|
<small>log events related to Jitsi Meet components like Jicofo, Videobridge, Jigasi, etc.</small>
|
||||||
</div>
|
</div>
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
|
|
||||||
|
@ -94,4 +94,4 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- "/jitsi components events" -->
|
<!-- /jitsi components events -->
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="container-fluid mt-2">
|
<div class="container-fluid mt-2">
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col-12 mb-4">
|
<div class="col-12 mb-4">
|
||||||
<h2>Configuration</h2>
|
<h2 class="mb-0">Configuration</h2>
|
||||||
<small>Jilo Web configuration file: <em><?= htmlspecialchars($localConfigPath) ?></em></small>
|
<small>Jilo Web configuration file: <em><?= htmlspecialchars($localConfigPath) ?></em></small>
|
||||||
<?php if ($configMessage) { ?>
|
<?php if ($configMessage) { ?>
|
||||||
<?= $configMessage ?>
|
<?= $configMessage ?>
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
|
|
||||||
<!-- widget "config.js" -->
|
|
||||||
<div class="card text-center w-75 mx-lef">
|
|
||||||
<p class="h4 card-header">Configuration of the Jitsi platform <strong><?= htmlspecialchars($platformDetails[0]['name']) ?></strong></p>
|
|
||||||
<div class="card-body">
|
|
||||||
<p class="card-text">
|
|
||||||
<span class="m-3">URL: <?= htmlspecialchars($platformDetails[0]['jitsi_url']) ?></span>
|
|
||||||
<span class="m-3">FILE: config.js</span>
|
|
||||||
<?php if ($mode === 'raw') { ?>
|
|
||||||
<span class="m-3"><a class="btn btn-light" href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=data&item=configjs">view only active lines</a></span>
|
|
||||||
<?php } else { ?>
|
|
||||||
<span class="m-3"><a class="btn btn-light" href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=data&item=configjs&mode=raw">view raw file contents</a></span>
|
|
||||||
<?php } ?>
|
|
||||||
</p>
|
|
||||||
<pre class="results">
|
|
||||||
<?php
|
|
||||||
echo htmlspecialchars($platformConfigjs);
|
|
||||||
?>
|
|
||||||
</pre>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- /widget "config.js" -->
|
|
|
@ -1,22 +0,0 @@
|
||||||
|
|
||||||
<!-- widget "interfaceconfig" -->
|
|
||||||
<div class="card text-center w-75 mx-lef">
|
|
||||||
<p class="h4 card-header">Configuration of the Jitsi platform <strong><?= htmlspecialchars($platformDetails[0]['name']) ?></strong></p>
|
|
||||||
<div class="card-body">
|
|
||||||
<p class="card-text">
|
|
||||||
<span class="m-3">URL: <?= htmlspecialchars($platformDetails[0]['jitsi_url']) ?></span>
|
|
||||||
<span class="m-3">FILE: interface_config.js</span>
|
|
||||||
<?php if ($mode === 'raw') { ?>
|
|
||||||
<span class="m-3"><a class="btn btn-light" href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=data&item=interfaceconfigjs">view only active lines</a></span>
|
|
||||||
<?php } else { ?>
|
|
||||||
<span class="m-3"><a class="btn btn-light" href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=data&item=interfaceconfigjs&mode=raw">view raw file contents</a></span>
|
|
||||||
<?php } ?>
|
|
||||||
</p>
|
|
||||||
<pre class="results">
|
|
||||||
<?php
|
|
||||||
echo htmlspecialchars($platformInterfaceConfigjs);
|
|
||||||
?>
|
|
||||||
</pre>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- /widget "interfaceconfig" -->
|
|
|
@ -4,7 +4,7 @@
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col-12 mb-4">
|
<div class="col-12 mb-4">
|
||||||
<h2 class="mb-0">Jitsi graphs</h2>
|
<h2 class="mb-0">Jitsi graphs</h2>
|
||||||
<small>usage graphs for platform <?= htmlspecialchars($platform_id) ?> (<?= htmlspecialchars($platformDetails[0]['name']) ?>)</small>
|
<small>usage graphs for platform <strong><?= htmlspecialchars($platformDetails[0]['name']) ?></strong></small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
|
|
||||||
<!-- help -->
|
<!-- help -->
|
||||||
<div class="container-fluid mt-2">
|
<div class="container-fluid mt-2">
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col-12 mb-4">
|
<div class="col-12 mb-4">
|
||||||
<h2>Help</h2>
|
<h2 class="mb-0">Help</h2>
|
||||||
|
<small>about this program</small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -85,7 +87,7 @@
|
||||||
statistics and graphs of the usage, the events and the issues.
|
statistics and graphs of the usage, the events and the issues.
|
||||||
</p>
|
</p>
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
It's a multi-user web tool with user levels and access rights integrated into it, making it suitable
|
It is a multi-user web tool with user levels and access rights integrated into it, making it suitable
|
||||||
for the different levels in an enterprise.
|
for the different levels in an enterprise.
|
||||||
</p>
|
</p>
|
||||||
<div class="alert alert-info mt-3 mb-0">
|
<div class="alert alert-info mt-3 mb-0">
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col-12 mb-4">
|
<div class="col-12 mb-4">
|
||||||
<h2 class="mb-0">Latest data from Jilo Agents</h2>
|
<h2 class="mb-0">Latest data from Jilo Agents</h2>
|
||||||
<small>gathered for platform <?= htmlspecialchars($platform_id) ?> (<?= htmlspecialchars($platformDetails[0]['name']) ?>)</small>
|
<small>gathered for platform <strong><?= htmlspecialchars($platformDetails[0]['name']) ?></strong></small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
|
||||||
|
<!-- remote config "<?= htmlspecialchars($livejsFile) ?>" -->
|
||||||
|
<div class="container-fluid mt-2">
|
||||||
|
<div class="row mb-4">
|
||||||
|
<div class="col-12 mb-4">
|
||||||
|
<h2 class="mb-0">Remote Jitsi config</h2>
|
||||||
|
<small>contents of the file "<strong><?= htmlspecialchars($livejsFile) ?></strong>"</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="mb-4">
|
||||||
|
<div class="card mb-4">
|
||||||
|
<div class="card-header">
|
||||||
|
<h5 class="mb-0">
|
||||||
|
<i class="fas fa-file me-2 text-secondary"></i>
|
||||||
|
<small><span class="text-muted"><?= htmlspecialchars($platformDetails[0]['jitsi_url']) ?>:</span> <?= htmlspecialchars($livejsFile) ?></small>
|
||||||
|
<span class="card-text">
|
||||||
|
<?php if ($mode === 'raw') { ?>
|
||||||
|
<span class="m-3"><a class="btn border btn-primary" href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=livejs&item=<?= htmlspecialchars($livejsFile) ?>">view only active lines</a></span>
|
||||||
|
<?php } else { ?>
|
||||||
|
<span class="m-3"><a class="btn border btn-secondary" href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=livejs&item=<?= htmlspecialchars($livejsFile) ?>&mode=raw">view raw file contents</a></span>
|
||||||
|
<?php } ?>
|
||||||
|
</span>
|
||||||
|
</h5>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<pre class="results">
|
||||||
|
<?php
|
||||||
|
echo htmlspecialchars($livejsData);
|
||||||
|
?>
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- /remote config "<?= htmlspecialchars($livejsFile) ?>" -->
|
|
@ -3,7 +3,8 @@
|
||||||
<div class="container-fluid mt-2">
|
<div class="container-fluid mt-2">
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col-md-6 mb-5">
|
<div class="col-md-6 mb-5">
|
||||||
<h2>Log events</h2>
|
<h2 class="mb-0">Log events</h2>
|
||||||
|
<small>events recorded in the Jilo monitoring platform</small>
|
||||||
</div>
|
</div>
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<ul class="nav nav-tabs mb-3">
|
<ul class="nav nav-tabs mb-3">
|
||||||
|
|
|
@ -49,13 +49,13 @@ $timeNow = new DateTime('now', new DateTimeZone($userTimezone));
|
||||||
<i class="fas fa-list" data-toggle="tooltip" data-placement="right" data-offset="30.0" title="latest data"></i>latest data
|
<i class="fas fa-list" data-toggle="tooltip" data-placement="right" data-offset="30.0" title="latest data"></i>latest data
|
||||||
</li>
|
</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=data&item=configjs">
|
<a href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=livejs&item=config.js">
|
||||||
<li class="list-group-item<?php if ($page === 'data' && $item === 'configjs') echo ' list-group-item-secondary'; else echo ' list-group-item-action'; ?>">
|
<li class="list-group-item<?php if ($page === 'livejs' && $item === 'config.js') echo ' list-group-item-secondary'; else echo ' list-group-item-action'; ?>">
|
||||||
<i class="fas fa-tv" data-toggle="tooltip" data-placement="right" data-offset="30.0" title="config.js"></i>config.js
|
<i class="fas fa-tv" data-toggle="tooltip" data-placement="right" data-offset="30.0" title="config.js"></i>config.js
|
||||||
</li>
|
</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=data&item=interfaceconfigjs">
|
<a href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=livejs&item=interface_config.js">
|
||||||
<li class="list-group-item<?php if ($page === 'data' && $item === 'interfaceconfigjs') echo ' list-group-item-secondary'; else echo ' list-group-item-action'; ?>">
|
<li class="list-group-item<?php if ($page === 'livejs' && $item === 'interface_config.js') echo ' list-group-item-secondary'; else echo ' list-group-item-action'; ?>">
|
||||||
<i class="fas fa-th" data-toggle="tooltip" data-placement="right" data-offset="30.0" title="interface_config.js"></i>interface_config.js
|
<i class="fas fa-th" data-toggle="tooltip" data-placement="right" data-offset="30.0" title="interface_config.js"></i>interface_config.js
|
||||||
</li>
|
</li>
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
<div class="container-fluid mt-2">
|
<div class="container-fluid mt-2">
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<h2>Security settings</h2>
|
<h2 class="mb-0">Security settings</h2>
|
||||||
|
<small>network restrictions to control flooding and brute force attacks</small>
|
||||||
<ul class="nav nav-tabs mt-5">
|
<ul class="nav nav-tabs mt-5">
|
||||||
<?php if ($userObject->hasRight($user_id, 'superuser') || $userObject->hasRight($user_id, 'edit whitelist')) { ?>
|
<?php if ($userObject->hasRight($user_id, 'superuser') || $userObject->hasRight($user_id, 'edit whitelist')) { ?>
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
|
@ -195,8 +196,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php
|
<?php $stmt = $rateLimiter->db->prepare("
|
||||||
$stmt = $rateLimiter->db->prepare("
|
|
||||||
SELECT ip_address, username, attempted_at
|
SELECT ip_address, username, attempted_at
|
||||||
FROM {$rateLimiter->ratelimitTable}
|
FROM {$rateLimiter->ratelimitTable}
|
||||||
ORDER BY attempted_at DESC
|
ORDER BY attempted_at DESC
|
||||||
|
@ -204,8 +204,7 @@
|
||||||
");
|
");
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
$attempts = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
$attempts = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
||||||
foreach ($attempts as $attempt) {
|
foreach ($attempts as $attempt) { ?>
|
||||||
?>
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><?= htmlspecialchars($attempt['ip_address']) ?></td>
|
<td><?= htmlspecialchars($attempt['ip_address']) ?></td>
|
||||||
<td><?= htmlspecialchars($attempt['username']) ?></td>
|
<td><?= htmlspecialchars($attempt['username']) ?></td>
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
<div class="container-fluid mt-2">
|
<div class="container-fluid mt-2">
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col-md-6 mb-5">
|
<div class="col-md-6 mb-5">
|
||||||
<h2>Jitsi Meet platforms settings</h2>
|
<h2 class="mb-0">Jitsi Meet platforms settings</h2>
|
||||||
|
<small>manage the monitored platforms and their hosts and agents</small>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 text-end">
|
<div class="col-md-6 text-end">
|
||||||
<button type="button" class="btn btn-primary" onclick="showAddPlatformModal()">
|
<button type="button" class="btn btn-primary" onclick="showAddPlatformModal()">
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
<div class="container-fluid mt-2">
|
<div class="container-fluid mt-2">
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col-md-6 mb-5">
|
<div class="col-md-6 mb-5">
|
||||||
<h2>Jilo status</h2>
|
<h2 class="mb-0">Jilo status</h2>
|
||||||
|
<small>status checks of the whole Jilo monitoring platform</small>
|
||||||
</div>
|
</div>
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue