| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-02 09:06:02 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Main dashboard file for displaying conference statistics. | 
					
						
							| 
									
										
										
										
											2024-12-03 09:10:43 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2024-12-04 10:02:06 +00:00
										 |  |  |  * This page ("dashboard") connects to the database and displays various widgets: | 
					
						
							| 
									
										
										
										
											2024-12-02 09:06:02 +00:00
										 |  |  |  * 1. Monthly statistics for the past year. | 
					
						
							|  |  |  |  * 2. Conferences from the last 2 days. | 
					
						
							|  |  |  |  * 3. The most recent 10 conferences. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-17 08:24:50 +00:00
										 |  |  | // Get any new feedback messages
 | 
					
						
							|  |  |  | include '../app/includes/feedback-get.php'; | 
					
						
							|  |  |  | include '../app/includes/feedback-show.php'; | 
					
						
							| 
									
										
										
										
											2025-01-06 09:13:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | require '../app/classes/conference.php'; | 
					
						
							|  |  |  | require '../app/classes/participant.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // connect to database
 | 
					
						
							| 
									
										
										
										
											2024-11-08 10:38:19 +00:00
										 |  |  | $response = connectDB($config, 'jilo', $platformDetails[0]['jilo_database'], $platform_id); | 
					
						
							| 
									
										
										
										
											2024-12-03 09:10:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // if DB connection has error, display it and stop here
 | 
					
						
							| 
									
										
										
										
											2024-11-08 10:38:19 +00:00
										 |  |  | if ($response['db'] === null) { | 
					
						
							| 
									
										
										
										
											2025-02-16 08:18:26 +00:00
										 |  |  |     Feedback::flash('ERROR', 'DEFAULT', $response['error']); | 
					
						
							| 
									
										
										
										
											2024-12-03 09:10:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // otherwise if DB connection is OK, go on
 | 
					
						
							| 
									
										
										
										
											2024-11-08 10:38:19 +00:00
										 |  |  | } else { | 
					
						
							|  |  |  |     $db = $response['db']; | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |     $conferenceObject = new Conference($db); | 
					
						
							|  |  |  |     $participantObject = new Participant($db); | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-03 09:10:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-02 09:06:02 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Monthly usage statistics for the last year. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Retrieves conference and participant numbers for each month within the past year. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |     // monthly conferences for the last year
 | 
					
						
							|  |  |  |     $fromMonth = (new DateTime())->sub(new DateInterval('P1Y')); | 
					
						
							|  |  |  |     $fromMonth->modify('first day of this month'); | 
					
						
							|  |  |  |     $thisMonth = new DateTime(); | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  |     $from_time = $fromMonth->format('Y-m-d'); | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |     $until_time = $thisMonth->format('Y-m-d'); | 
					
						
							| 
									
										
										
										
											2024-09-15 18:49:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |     $widget['records'] = array(); | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |     // loop 1 year in the past
 | 
					
						
							|  |  |  |     $i = 0; | 
					
						
							|  |  |  |     while ($fromMonth < $thisMonth) { | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |         $untilMonth = clone $fromMonth; | 
					
						
							|  |  |  |         $untilMonth->modify('last day of this month'); | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |         $from_time = $fromMonth->format('Y-m-d'); | 
					
						
							|  |  |  |         $until_time = $untilMonth->format('Y-m-d'); | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |         $searchConferenceNumber = $conferenceObject->conferenceNumber($from_time, $until_time); | 
					
						
							|  |  |  |         $searchParticipantNumber = $participantObject->participantNumber($from_time, $until_time); | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |         // pretty format for displaying the month in the widget
 | 
					
						
							|  |  |  |         $month = $fromMonth->format('F Y'); | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |         // populate the records
 | 
					
						
							|  |  |  |         $widget['records'][$i] = array( | 
					
						
							|  |  |  |             'from_time'	=> $from_time, | 
					
						
							|  |  |  |             'until_time'	=> $until_time, | 
					
						
							|  |  |  |             'table_headers'	=> $month, | 
					
						
							|  |  |  |             'conferences'	=> $searchConferenceNumber[0]['conferences'], | 
					
						
							|  |  |  |             'participants'	=> $searchParticipantNumber[0]['participants'], | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |         // move everything one month in future
 | 
					
						
							|  |  |  |         $untilMonth->add(new DateInterval('P1M')); | 
					
						
							|  |  |  |         $fromMonth->add(new DateInterval('P1M')); | 
					
						
							|  |  |  |         $i++; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |     $time_range_specified = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // prepare the widget
 | 
					
						
							|  |  |  |     $widget['full'] = false; | 
					
						
							|  |  |  |     $widget['name'] = 'LastYearMonths'; | 
					
						
							|  |  |  |     $widget['title'] = 'Conferences monthly stats for the last year'; | 
					
						
							|  |  |  |     $widget['collapsible'] = true; | 
					
						
							|  |  |  |     $widget['collapsed'] = false; | 
					
						
							|  |  |  |     $widget['filter'] = false; | 
					
						
							|  |  |  |     if (!empty($searchConferenceNumber) && !empty($searchParticipantNumber)) { | 
					
						
							|  |  |  |         $widget['full'] = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     $widget['pagination'] = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // display the widget
 | 
					
						
							|  |  |  |     include '../app/templates/widget-monthly.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-02 09:06:02 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Conferences in the last 2 days. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Displays a summary of all conferences held in the past 48 hours. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |     // time range limit
 | 
					
						
							|  |  |  |     $from_time = date('Y-m-d', time() - 60 * 60 * 24 * 2); | 
					
						
							|  |  |  |     $until_time = date('Y-m-d', time()); | 
					
						
							|  |  |  |     $time_range_specified = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // prepare the result
 | 
					
						
							|  |  |  |     $search = $conferenceObject->conferencesAllFormatted($from_time, $until_time); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!empty($search)) { | 
					
						
							|  |  |  |         $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 = ''; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $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-09-13 11:07:36 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |     // prepare the widget
 | 
					
						
							|  |  |  |     $widget['full'] = false; | 
					
						
							|  |  |  |     $widget['name'] = 'LastDays'; | 
					
						
							|  |  |  |     $widget['title'] = 'Conferences for the last 2 days'; | 
					
						
							|  |  |  |     $widget['collapsible'] = true; | 
					
						
							|  |  |  |     $widget['collapsed'] = false; | 
					
						
							|  |  |  |     $widget['filter'] = false; | 
					
						
							|  |  |  |     if (!empty($conferences['records'])) { | 
					
						
							|  |  |  |         $widget['full'] = true; | 
					
						
							|  |  |  |         $widget['table_headers'] = array_keys($conferences['records'][0]); | 
					
						
							|  |  |  |         $widget['table_records'] = $conferences['records']; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     $widget['pagination'] = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // display the widget
 | 
					
						
							|  |  |  |     include '../app/templates/widget.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-02 09:06:02 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Last 10 conferences. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Displays the 10 most recent conferences in the database. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |     // all time
 | 
					
						
							|  |  |  |     $from_time = '0000-01-01'; | 
					
						
							|  |  |  |     $until_time = '9999-12-31'; | 
					
						
							|  |  |  |     $time_range_specified = false; | 
					
						
							|  |  |  |     // number of conferences to show
 | 
					
						
							|  |  |  |     $conference_number = 10; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // prepare the result
 | 
					
						
							|  |  |  |     $search = $conferenceObject->conferencesAllFormatted($from_time, $until_time); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!empty($search)) { | 
					
						
							|  |  |  |         $conferences = array(); | 
					
						
							|  |  |  |         $conferences['records'] = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $i = 0; | 
					
						
							|  |  |  |         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 = ''; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $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); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // we only take the first 10 results
 | 
					
						
							|  |  |  |             $i++; | 
					
						
							|  |  |  |             if ($i == 10) break; | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |     // prepare the widget
 | 
					
						
							|  |  |  |     $widget['full'] = false; | 
					
						
							|  |  |  |     $widget['name'] = 'LastConferences'; | 
					
						
							|  |  |  |     $widget['title'] = 'The last ' . $conference_number . ' conferences'; | 
					
						
							|  |  |  |     $widget['collapsible'] = true; | 
					
						
							|  |  |  |     $widget['collapsed'] = false; | 
					
						
							|  |  |  |     $widget['filter'] = false; | 
					
						
							|  |  |  |     $widget['pagination'] = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!empty($conferences['records'])) { | 
					
						
							|  |  |  |         $widget['full'] = true; | 
					
						
							|  |  |  |         $widget['table_headers'] = array_keys($conferences['records'][0]); | 
					
						
							|  |  |  |         $widget['table_records'] = $conferences['records']; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-01 08:58:42 +00:00
										 |  |  |     // display the widget
 | 
					
						
							|  |  |  |     include '../app/templates/widget.php'; | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-30 08:56:22 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-13 11:07:36 +00:00
										 |  |  | ?>
 |