| 
									
										
										
										
											2024-07-08 09:17:35 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-04 10:02:06 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Components information | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2024-12-04 10:04:36 +00:00
										 |  |  |  * This page ("components") retrieves and displays information about Jitsi components events. | 
					
						
							|  |  |  |  * Allows filtering by component ID, name, or event name, and listing within a specified time range. | 
					
						
							|  |  |  |  * Supports pagination. | 
					
						
							| 
									
										
										
										
											2024-12-04 10:02:06 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-10 18:42:44 +00:00
										 |  |  | // connect to database
 | 
					
						
							| 
									
										
										
										
											2024-11-14 10:58:41 +00:00
										 |  |  | $response = connectDB($config, 'jilo', $platformDetails[0]['jilo_database'], $platform_id); | 
					
						
							| 
									
										
										
										
											2024-11-17 12:11:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // if DB connection has error, display it and stop here
 | 
					
						
							| 
									
										
										
										
											2024-11-14 10:58:41 +00:00
										 |  |  | if ($response['db'] === null) { | 
					
						
							| 
									
										
										
										
											2025-02-16 08:18:26 +00:00
										 |  |  |     Feedback::flash('ERROR', 'DEFAULT', $response['error']); | 
					
						
							| 
									
										
										
										
											2024-11-17 12:11:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // otherwise if DB connection is OK, go on
 | 
					
						
							| 
									
										
										
										
											2024-11-14 10:58:41 +00:00
										 |  |  | } else { | 
					
						
							|  |  |  |     $db = $response['db']; | 
					
						
							| 
									
										
										
										
											2024-08-10 18:42:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-26 12:39:10 +00:00
										 |  |  |     // Get current page for pagination
 | 
					
						
							|  |  |  |     $currentPage = $_REQUEST['page_num'] ?? 1; | 
					
						
							|  |  |  |     $currentPage = (int)$currentPage; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-17 12:11:22 +00:00
										 |  |  |     // specify time range
 | 
					
						
							|  |  |  |     include '../app/helpers/time_range.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-26 12:39:10 +00:00
										 |  |  |     // Build params for pagination
 | 
					
						
							|  |  |  |     $params = ''; | 
					
						
							|  |  |  |     if (!empty($_REQUEST['from_time'])) { | 
					
						
							|  |  |  |         $params .= '&from_time=' . urlencode($_REQUEST['from_time']); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!empty($_REQUEST['until_time'])) { | 
					
						
							|  |  |  |         $params .= '&until_time=' . urlencode($_REQUEST['until_time']); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!empty($_REQUEST['name'])) { | 
					
						
							|  |  |  |         $params .= '&name=' . urlencode($_REQUEST['name']); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!empty($_REQUEST['id'])) { | 
					
						
							|  |  |  |         $params .= '&id=' . urlencode($_REQUEST['id']); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (isset($_REQUEST['event'])) { | 
					
						
							|  |  |  |         $params .= '&event=' . urlencode($_REQUEST['event']); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // pagination variables
 | 
					
						
							| 
									
										
										
										
											2025-01-29 14:05:56 +00:00
										 |  |  |     $items_per_page = 20; | 
					
						
							| 
									
										
										
										
											2025-01-26 12:39:10 +00:00
										 |  |  |     $offset = ($currentPage -1) * $items_per_page; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-17 12:11:22 +00:00
										 |  |  |     // jitsi component events list
 | 
					
						
							|  |  |  |     // we use $_REQUEST, so that both links and forms work
 | 
					
						
							|  |  |  |     // if it's there, but empty, we make it same as the field name; otherwise assign the value
 | 
					
						
							|  |  |  |     $jitsi_component = !empty($_REQUEST['name']) ? "'" . $_REQUEST['name'] . "'" : 'jitsi_component'; | 
					
						
							|  |  |  |     $component_id = !empty($_REQUEST['id']) ? "'" . $_REQUEST['id'] . "'" : 'component_id'; | 
					
						
							|  |  |  |     $event_type = !empty($_REQUEST['event']) ? "'" . $_REQUEST['event'] . "'" : 'event_type'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  |     // Component events listings
 | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-29 13:55:45 +00:00
										 |  |  |     require '../app/classes/component.php'; | 
					
						
							| 
									
										
										
										
											2024-11-17 12:11:22 +00:00
										 |  |  |     $componentObject = new Component($db); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // prepare the result
 | 
					
						
							|  |  |  |     $search = $componentObject->jitsiComponents($jitsi_component, $component_id, $event_type, $from_time, $until_time, $offset, $items_per_page); | 
					
						
							|  |  |  |     $search_all = $componentObject->jitsiComponents($jitsi_component, $component_id, $event_type, $from_time, $until_time); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!empty($search)) { | 
					
						
							|  |  |  |         // we get total items and number of pages
 | 
					
						
							|  |  |  |         $item_count = count($search_all); | 
					
						
							| 
									
										
										
										
											2025-01-26 12:39:10 +00:00
										 |  |  |         $totalPages = ceil($item_count / $items_per_page); | 
					
						
							| 
									
										
										
										
											2024-11-17 12:11:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $components = array(); | 
					
						
							|  |  |  |         $components['records'] = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($search as $item) { | 
					
						
							|  |  |  |             extract($item); | 
					
						
							|  |  |  |             $component_record = array( | 
					
						
							|  |  |  |                 // assign title to the field in the array record
 | 
					
						
							|  |  |  |                 'component'		=> $jitsi_component, | 
					
						
							|  |  |  |                 'loglevel'		=> $loglevel, | 
					
						
							|  |  |  |                 'time'		=> $time, | 
					
						
							|  |  |  |                 'component ID'	=> $component_id, | 
					
						
							|  |  |  |                 'event'		=> $event_type, | 
					
						
							|  |  |  |                 'param'		=> $event_param, | 
					
						
							|  |  |  |             ); | 
					
						
							|  |  |  |             // populate the result array
 | 
					
						
							|  |  |  |             array_push($components['records'], $component_record); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2024-07-08 09:17:35 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-29 13:55:45 +00:00
										 |  |  |     // filter message
 | 
					
						
							|  |  |  |     $filterMessage = array(); | 
					
						
							| 
									
										
										
										
											2024-11-17 12:11:22 +00:00
										 |  |  |     if (isset($_REQUEST['name']) && $_REQUEST['name'] != '') { | 
					
						
							| 
									
										
										
										
											2025-01-29 13:55:45 +00:00
										 |  |  |         array_push($filterMessage, 'Jitsi events for component "<strong>' . $_REQUEST['name'] . '</strong>"'); | 
					
						
							| 
									
										
										
										
											2024-11-17 12:11:22 +00:00
										 |  |  |     } elseif (isset($_REQUEST['id']) && $_REQUEST['id'] != '') { | 
					
						
							| 
									
										
										
										
											2025-01-29 13:55:45 +00:00
										 |  |  |         array_push($filterMessage, 'Jitsi events for component ID "<strong>' . $_REQUEST['id'] . '</strong>"'); | 
					
						
							| 
									
										
										
										
											2024-11-17 12:11:22 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2025-01-29 13:55:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-17 08:24:50 +00:00
										 |  |  |     // Get any new feedback messages
 | 
					
						
							| 
									
										
										
										
											2025-02-17 14:50:57 +00:00
										 |  |  |     include '../app/helpers/feedback.php'; | 
					
						
							| 
									
										
										
										
											2024-07-08 09:17:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-17 12:11:22 +00:00
										 |  |  |     // display the widget
 | 
					
						
							| 
									
										
										
										
											2025-01-26 12:39:10 +00:00
										 |  |  |     include '../app/templates/components.php'; | 
					
						
							| 
									
										
										
										
											2024-11-17 12:11:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-07-08 09:17:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ?>
 |