41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
|
<?php
|
||
|
|
||
|
class Component {
|
||
|
private $db;
|
||
|
private $queries;
|
||
|
|
||
|
public function __construct($database) {
|
||
|
$this->db = $database->getConnection();
|
||
|
$this->queries = include('queries.php');
|
||
|
}
|
||
|
|
||
|
|
||
|
// list of component events
|
||
|
public function jitsiComponents($jitsi_component, $component_id, $from_time, $until_time) {
|
||
|
|
||
|
// time period drill-down
|
||
|
// FIXME make it similar to the bash version
|
||
|
if (empty($from_time)) {
|
||
|
$from_time = '0000-01-01';
|
||
|
}
|
||
|
if (empty($until_time)) {
|
||
|
$until_time = '9999-12-31';
|
||
|
}
|
||
|
|
||
|
// this is needed for compatibility with the bash version, so we use '%s' placeholders
|
||
|
$from_time = htmlspecialchars(strip_tags($from_time));
|
||
|
$until_time = htmlspecialchars(strip_tags($until_time));
|
||
|
$sql = $this->queries['jitsi_components'];
|
||
|
$sql = sprintf($sql, $jitsi_component, $component_id, $from_time, $until_time);
|
||
|
|
||
|
$query = $this->db->prepare($sql);
|
||
|
$query->execute();
|
||
|
|
||
|
return $query->fetchAll(PDO::FETCH_ASSOC);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|