| 
									
										
										
										
											2024-07-04 09:04:27 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-28 14:49:47 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Conference information | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This page ("conferences") handles the listing and searching of conferences from the database. | 
					
						
							|  |  |  |  * It supports searching by conference ID, name, or listing all conferences within a specified time range. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-12 11:12:24 +00:00
										 |  |  | require '../app/classes/conference.php'; | 
					
						
							| 
									
										
										
										
											2024-07-04 09:04:27 +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) { | 
					
						
							|  |  |  |     $error = $response['error']; | 
					
						
							|  |  |  |     include '../app/templates/block-message.php'; | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $conferenceObject = new Conference($db); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // pagination variables
 | 
					
						
							|  |  |  |     $items_per_page = 15; | 
					
						
							|  |  |  |     $browse_page = $_REQUEST['p'] ?? 1; | 
					
						
							|  |  |  |     $browse_page = (int)$browse_page; | 
					
						
							|  |  |  |     $offset = ($browse_page -1) * $items_per_page; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // 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); | 
					
						
							|  |  |  |         $page_count = ceil($item_count / $items_per_page); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     // prepare the widget
 | 
					
						
							|  |  |  |     $widget['full'] = false; | 
					
						
							|  |  |  |     $widget['name'] = 'Conferences'; | 
					
						
							|  |  |  |     $widget['collapsible'] = false; | 
					
						
							|  |  |  |     $widget['collapsed'] = false; | 
					
						
							|  |  |  |     $widget['filter'] = true; | 
					
						
							|  |  |  |     $widget['pagination'] = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // widget title
 | 
					
						
							|  |  |  |     if (isset($_REQUEST['name']) && $_REQUEST['name'] != '') { | 
					
						
							|  |  |  |         $widget['title'] = 'Conferences with name matching "<strong>' . $_REQUEST['name'] . '"</strong>'; | 
					
						
							|  |  |  |     } elseif (isset($_REQUEST['id']) && $_REQUEST['id'] != '') { | 
					
						
							|  |  |  |         $widget['title'] = 'Conference with ID "<strong>' . $_REQUEST['id'] . '"</strong>'; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         $widget['title'] = 'All conferences'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     // widget records
 | 
					
						
							|  |  |  |     if (!empty($conferences['records'])) { | 
					
						
							|  |  |  |         $widget['full'] = true; | 
					
						
							|  |  |  |         $widget['table_headers'] = array_keys($conferences['records'][0]); | 
					
						
							|  |  |  |         $widget['table_records'] = $conferences['records']; | 
					
						
							| 
									
										
										
										
											2024-07-05 08:23:31 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-15 11:05:28 +00:00
										 |  |  |     // display the widget
 | 
					
						
							|  |  |  |     include '../app/templates/event-list-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
										 |  |  | ?>
 |