| 
									
										
										
										
											2024-07-04 09:04:27 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-28 14:49:47 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Conference information | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2024-11-29 16:07:47 +00:00
										 |  |  |  * This page ("conferences") retrieves and displays information about conferences. | 
					
						
							|  |  |  |  * Allows filtering by conference ID or name, and listing within a specified time range. | 
					
						
							|  |  |  |  * Supports pagination. | 
					
						
							| 
									
										
										
										
											2024-11-28 14:49:47 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-10 18:42:44 +00:00
										 |  |  | // connect to database
 | 
					
						
							| 
									
										
										
										
											2024-11-12 10:51:33 +00:00
										 |  |  | $response = connectDB($config, 'jilo', $platformDetails[0]['jilo_database'], $platform_id); | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // if DB connection has error, display it and stop here
 | 
					
						
							| 
									
										
										
										
											2024-11-12 10:51:33 +00:00
										 |  |  | if ($response['db'] === null) { | 
					
						
							| 
									
										
										
										
											2025-02-16 08:18:26 +00:00
										 |  |  |     Feedback::flash('ERROR', 'DEFAULT', $response['error']); | 
					
						
							| 
									
										
										
										
											2024-07-04 10:57:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-16 11:08:56 +00:00
										 |  |  | // otherwise if DB connection is OK, go on
 | 
					
						
							| 
									
										
										
										
											2024-07-04 10:57:18 +00:00
										 |  |  | } else { | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     $db = $response['db']; | 
					
						
							| 
									
										
										
										
											2024-09-15 18:42:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     // specify time range
 | 
					
						
							|  |  |  |     include '../app/helpers/time_range.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // conference id/name are specified when searching specific conference(s)
 | 
					
						
							|  |  |  |     // 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
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     //$conferenceName = !empty($_REQUEST['name']) ? "'" . $_REQUEST['name'] . "'" : 'conference_name';
 | 
					
						
							|  |  |  |     //$conferenceId = !empty($_REQUEST['id']) ? "'" . $_REQUEST['id'] . "'" : 'conference_id';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (isset($_REQUEST['id']) && $_REQUEST['id'] != '') { | 
					
						
							|  |  |  |         $conferenceId = $_REQUEST['id']; | 
					
						
							|  |  |  |         unset($_REQUEST['name']); | 
					
						
							|  |  |  |         unset($conferenceName); | 
					
						
							|  |  |  |     } elseif (isset($_REQUEST['name']) && $_REQUEST['name'] != '') { | 
					
						
							|  |  |  |         unset($conferenceId); | 
					
						
							|  |  |  |         $conferenceName = $_REQUEST['name']; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         unset($conferenceId); | 
					
						
							|  |  |  |         unset($conferenceName); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-07-25 12:13:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-05 08:23:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     //
 | 
					
						
							|  |  |  |     // Conference listings
 | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-29 15:20:32 +00:00
										 |  |  |     require '../app/classes/conference.php'; | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     $conferenceObject = new Conference($db); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-29 15:20:32 +00:00
										 |  |  |     // get current page for pagination
 | 
					
						
							|  |  |  |     $currentPage = $_REQUEST['page_num'] ?? 1; | 
					
						
							|  |  |  |     $currentPage = (int)$currentPage; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     // pagination variables
 | 
					
						
							| 
									
										
										
										
											2025-01-29 15:20:32 +00:00
										 |  |  |     $items_per_page = 20; | 
					
						
							|  |  |  |     $offset = ($currentPage -1) * $items_per_page; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // 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']); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // search and list specific conference ID
 | 
					
						
							|  |  |  |     if (isset($conferenceId)) { | 
					
						
							|  |  |  |         $search = $conferenceObject->conferenceById($conferenceId, $from_time, $until_time, $offset, $items_per_page); | 
					
						
							|  |  |  |         $search_all = $conferenceObject->conferenceById($conferenceId, $from_time, $until_time); | 
					
						
							|  |  |  |     // search and list specific conference name
 | 
					
						
							|  |  |  |     } elseif (isset($conferenceName)) { | 
					
						
							|  |  |  |         $search = $conferenceObject->conferenceByName($conferenceName, $from_time, $until_time, $offset, $items_per_page); | 
					
						
							|  |  |  |         $search_all = $conferenceObject->conferenceByName($conferenceName, $from_time, $until_time); | 
					
						
							|  |  |  |     // list of all conferences (default)
 | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         $search = $conferenceObject->conferencesAllFormatted($from_time, $until_time, $offset, $items_per_page); | 
					
						
							|  |  |  |         $search_all = $conferenceObject->conferencesAllFormatted($from_time, $until_time); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-07-25 12:13:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     if (!empty($search)) { | 
					
						
							|  |  |  |         // we get total items and number of pages
 | 
					
						
							|  |  |  |         $item_count = count($search_all); | 
					
						
							| 
									
										
										
										
											2025-01-29 15:20:32 +00:00
										 |  |  |         $totalPages = ceil($item_count / $items_per_page); | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $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 = ''; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // search and list specific conference ID
 | 
					
						
							|  |  |  |             if (isset($conferenceId)) { | 
					
						
							|  |  |  |                 $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 | 
					
						
							|  |  |  |                 ); | 
					
						
							|  |  |  |             // search and list specific conference name
 | 
					
						
							|  |  |  |             } elseif (isset($conferenceName)) { | 
					
						
							|  |  |  |                 $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 | 
					
						
							|  |  |  |                 ); | 
					
						
							|  |  |  |             // list of all conferences (default)
 | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $conference_record = array( | 
					
						
							|  |  |  |                     // assign title to the field in the array record
 | 
					
						
							|  |  |  |                     'component'		=> $jitsi_component, | 
					
						
							|  |  |  |                     'start'			=> $start, | 
					
						
							|  |  |  |                     'end'			=> $end, | 
					
						
							|  |  |  |                     'duration'		=> $duration, | 
					
						
							|  |  |  |                     '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); | 
					
						
							| 
									
										
										
										
											2024-07-05 08:23:31 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-07-05 08:23:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-29 15:20:32 +00:00
										 |  |  |     // filter message
 | 
					
						
							|  |  |  |     $filterMessage = array(); | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     if (isset($_REQUEST['name']) && $_REQUEST['name'] != '') { | 
					
						
							| 
									
										
										
										
											2025-01-29 15:20:32 +00:00
										 |  |  |         array_push($filterMessage, 'Conferences with name matching "<strong>' . $_REQUEST['name'] . '</strong>"'); | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     } elseif (isset($_REQUEST['id']) && $_REQUEST['id'] != '') { | 
					
						
							| 
									
										
										
										
											2025-01-29 15:20:32 +00:00
										 |  |  |         array_push($filterMessage, 'Conferences with ID "<strong>' . $_REQUEST['id'] . '</strong>"'); | 
					
						
							| 
									
										
										
										
											2024-07-05 08:23:31 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-29 15:20:32 +00:00
										 |  |  |     // Get any new messages
 | 
					
						
							|  |  |  |     include '../app/includes/messages.php'; | 
					
						
							|  |  |  |     include '../app/includes/messages-show.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     // display the widget
 | 
					
						
							| 
									
										
										
										
											2025-01-29 15:20:32 +00:00
										 |  |  |     include '../app/templates/conferences.php'; | 
					
						
							| 
									
										
										
										
											2024-07-29 12:56:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2024-07-04 10:57:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-04 09:04:27 +00:00
										 |  |  | ?>
 |