engelsystem/includes/controller/public_dashboard_controller...

134 lines
3.9 KiB
PHP
Raw Normal View History

2017-12-11 22:26:36 +01:00
<?php
2020-09-06 23:50:36 +02:00
use Engelsystem\Models\Room;
2020-10-27 17:13:46 +01:00
use Engelsystem\ShiftsFilter;
2020-09-06 23:50:36 +02:00
2017-12-11 22:26:36 +01:00
/**
* Loads all data for the public dashboard
2017-12-25 23:12:52 +01:00
*
* @return array
2017-12-11 22:26:36 +01:00
*/
function public_dashboard_controller()
{
2020-10-27 17:13:46 +01:00
$filter = null;
2020-11-24 01:18:05 +01:00
if (request()->get('filtered')) {
$requestRooms = check_request_int_array('rooms');
$requestAngelTypes = check_request_int_array('types');
if (!$requestRooms && !$requestAngelTypes) {
$sessionFilter = collect(session()->get('shifts-filter', []));
$requestRooms = $sessionFilter->get('rooms', []);
$requestAngelTypes = $sessionFilter->get('types', []);
}
$angelTypes = collect(unrestricted_angeltypes());
$rooms = $requestRooms ?: Rooms()->pluck('id')->toArray();
$angelTypes = $requestAngelTypes ?: $angelTypes->pluck('id')->toArray();
$filterValues = [
'userShiftsAdmin' => false,
'filled' => [],
'rooms' => $rooms,
'types' => $angelTypes,
'startTime' => null,
'endTime' => null,
];
2020-10-27 17:13:46 +01:00
$filter = new ShiftsFilter();
2020-11-24 01:18:05 +01:00
$filter->sessionImport($filterValues);
2020-10-27 17:13:46 +01:00
}
2017-12-12 21:57:57 +01:00
$stats = [
2020-10-27 17:13:46 +01:00
'needed-3-hours' => stats_angels_needed_three_hours($filter),
'needed-night' => stats_angels_needed_for_nightshifts($filter),
'angels-working' => stats_currently_working($filter),
'hours-to-work' => stats_hours_to_work($filter)
2017-12-12 21:57:57 +01:00
];
2017-12-25 23:12:52 +01:00
2020-10-27 17:13:46 +01:00
$free_shifts_source = Shifts_free(time(), time() + 12 * 60 * 60, $filter);
$free_shifts = [];
foreach ($free_shifts_source as $shift) {
2020-10-27 17:13:46 +01:00
$free_shift = public_dashboard_controller_free_shift($shift, $filter);
2017-12-25 23:12:52 +01:00
if (count($free_shift['needed_angels']) > 0) {
$free_shifts[] = $free_shift;
}
}
2017-12-25 23:12:52 +01:00
2017-12-11 22:26:36 +01:00
return [
__('Public Dashboard'),
2017-12-12 21:57:57 +01:00
public_dashboard_view($stats, $free_shifts)
2017-12-11 22:26:36 +01:00
];
}
/**
2017-12-25 21:29:00 +01:00
* Gathers information for free shifts to display.
*
2020-10-27 17:13:46 +01:00
* @param array $shift
* @param ShiftsFilter|null $filter
*
2017-12-25 23:12:52 +01:00
* @return array
*/
2020-10-27 17:13:46 +01:00
function public_dashboard_controller_free_shift($shift, ShiftsFilter $filter = null)
{
$shifttype = ShiftType($shift['shifttype_id']);
2020-09-06 23:50:36 +02:00
$room = Room::find($shift['RID']);
2017-12-25 23:12:52 +01:00
$free_shift = [
2017-12-25 23:12:52 +01:00
'SID' => $shift['SID'],
'style' => 'default',
'start' => date('H:i', $shift['start']),
'end' => date('H:i', $shift['end']),
'duration' => round(($shift['end'] - $shift['start']) / 3600),
'shifttype_name' => $shifttype['name'],
2017-12-25 23:12:52 +01:00
'title' => $shift['title'],
2020-09-06 23:50:36 +02:00
'room_name' => $room->name,
'needed_angels' => public_dashboard_needed_angels($shift['NeedAngels'], $filter),
];
2017-12-25 23:12:52 +01:00
if (time() + 3 * 60 * 60 > $shift['start']) {
$free_shift['style'] = 'warning';
}
if (time() > $shift['start']) {
$free_shift['style'] = 'danger';
}
2017-12-25 23:12:52 +01:00
return $free_shift;
}
/**
2017-12-25 21:29:00 +01:00
* Gathers information for needed angels on dashboard
*
2020-10-27 17:13:46 +01:00
* @param array $needed_angels
* @param ShiftsFilter|null $filter
*
2017-12-25 23:12:52 +01:00
* @return array
*/
2020-10-27 17:13:46 +01:00
function public_dashboard_needed_angels($needed_angels, ShiftsFilter $filter = null)
{
$result = [];
foreach ($needed_angels as $needed_angel) {
$need = $needed_angel['count'] - $needed_angel['taken'];
2020-10-27 17:13:46 +01:00
if ($need > 0 && (!$filter || in_array($needed_angel['TID'], $filter->getTypes()))) {
$angeltype = AngelType($needed_angel['TID']);
if ($angeltype['show_on_dashboard']) {
$result[] = [
2017-12-25 23:12:52 +01:00
'need' => $need,
'angeltype_name' => $angeltype['name']
];
}
}
}
return $result;
}
/**
* Returns url to public dashboard
2017-12-25 23:12:52 +01:00
*
2020-10-27 17:13:46 +01:00
* @param array $parameters
*
2017-12-25 23:12:52 +01:00
* @return string
*/
2020-10-27 17:13:46 +01:00
function public_dashboard_link(array $parameters = []): string
{
2020-10-27 17:13:46 +01:00
return page_link_to('public-dashboard', $parameters);
}