engelsystem/includes/controller/shifts_controller.php

403 lines
12 KiB
PHP
Raw Normal View History

<?php
2017-08-28 16:21:10 +02:00
use Carbon\Carbon;
use Engelsystem\Http\Exceptions\HttpForbidden;
2020-09-06 23:50:36 +02:00
use Engelsystem\Models\Room;
use Engelsystem\Models\Shifts\ScheduleShift;
2016-11-23 22:31:11 +01:00
use Engelsystem\ShiftSignupState;
2017-01-03 03:22:48 +01:00
/**
* @param array $shift
* @return string
*/
2017-01-02 03:57:23 +01:00
function shift_link($shift)
{
2017-08-30 14:59:27 +02:00
$parameters = ['action' => 'view'];
if (isset($shift['SID'])) {
2017-08-30 14:59:27 +02:00
$parameters['shift_id'] = $shift['SID'];
}
2017-08-30 14:59:27 +02:00
$link = page_link_to('shifts', $parameters);
return $link;
2014-12-19 22:41:55 +01:00
}
2017-01-03 03:22:48 +01:00
/**
* @param array $shift
* @return string
*/
2017-01-02 03:57:23 +01:00
function shift_delete_link($shift)
{
2017-08-28 16:21:10 +02:00
return page_link_to('user_shifts', ['delete_shift' => $shift['SID']]);
2014-12-19 22:41:55 +01:00
}
2017-01-03 03:22:48 +01:00
/**
* @param array $shift
* @return string
*/
2017-01-02 03:57:23 +01:00
function shift_edit_link($shift)
{
2017-08-28 16:21:10 +02:00
return page_link_to('user_shifts', ['edit_shift' => $shift['SID']]);
2014-12-19 22:41:55 +01:00
}
/**
* Edit a single shift.
2017-01-03 03:22:48 +01:00
*
* @return string
*/
2017-01-02 03:57:23 +01:00
function shift_edit_controller()
{
2017-01-03 14:12:17 +01:00
$msg = '';
2017-01-02 03:57:23 +01:00
$valid = true;
$request = request();
2017-01-02 15:43:36 +01:00
if (!auth()->can('admin_shifts')) {
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('user_shifts'));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
if (!$request->has('edit_shift') || !test_request_int('edit_shift')) {
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('user_shifts'));
2017-01-02 03:57:23 +01:00
}
$shift_id = $request->input('edit_shift');
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$shift = Shift($shift_id);
if (ScheduleShift::whereShiftId($shift['SID'])->first()) {
warning(__(
'This shift was imported from a schedule so some changes will be overwritten with the next import.'
));
}
2017-01-02 15:43:36 +01:00
2020-09-06 23:50:36 +02:00
$rooms = [];
foreach (Rooms() as $room) {
$rooms[$room->id] = $room->name;
}
2017-01-02 03:57:23 +01:00
$angeltypes = select_array(AngelTypes(), 'id', 'name');
$shifttypes = select_array(ShiftTypes(), 'id', 'name');
2017-01-02 15:43:36 +01:00
2017-12-25 23:12:52 +01:00
$needed_angel_types = select_array(
NeededAngelTypes_by_shift($shift_id),
'angel_type_id',
'count'
);
2017-01-02 03:57:23 +01:00
foreach (array_keys($angeltypes) as $angeltype_id) {
2017-01-02 15:43:36 +01:00
if (!isset($needed_angel_types[$angeltype_id])) {
2017-01-02 03:57:23 +01:00
$needed_angel_types[$angeltype_id] = 0;
}
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$shifttype_id = $shift['shifttype_id'];
$title = $shift['title'];
2021-11-27 11:34:20 +01:00
$description = $shift['description'];
2017-01-02 03:57:23 +01:00
$rid = $shift['RID'];
$start = $shift['start'];
$end = $shift['end'];
2017-01-02 15:43:36 +01:00
if ($request->hasPostData('submit')) {
2017-01-02 03:57:23 +01:00
// Name/Bezeichnung der Schicht, darf leer sein
2017-01-02 15:43:36 +01:00
$title = strip_request_item('title');
$description = strip_request_item_nl('description');
2017-01-02 15:43:36 +01:00
// Auswahl der sichtbaren Locations für die Schichten
if (
$request->has('rid')
&& preg_match('/^\d+$/', $request->input('rid'))
2020-09-06 23:50:36 +02:00
&& isset($rooms[$request->input('rid')])
) {
$rid = $request->input('rid');
2017-01-02 15:43:36 +01:00
} else {
$valid = false;
$msg .= error(__('Please select a room.'), true);
2017-01-02 15:43:36 +01:00
}
if ($request->has('shifttype_id') && isset($shifttypes[$request->input('shifttype_id')])) {
$shifttype_id = $request->input('shifttype_id');
2017-01-02 03:57:23 +01:00
} else {
$valid = false;
$msg .= error(__('Please select a shifttype.'), true);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
if ($request->has('start') && $tmp = parse_date('Y-m-d H:i', $request->input('start'))) {
2017-01-02 03:57:23 +01:00
$start = $tmp;
} else {
$valid = false;
$msg .= error(__('Please enter a valid starting time for the shifts.'), true);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
if ($request->has('end') && $tmp = parse_date('Y-m-d H:i', $request->input('end'))) {
2017-01-02 03:57:23 +01:00
$end = $tmp;
} else {
$valid = false;
$msg .= error(__('Please enter a valid ending time for the shifts.'), true);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
if ($start >= $end) {
$valid = false;
$msg .= error(__('The ending time has to be after the starting time.'), true);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
foreach ($needed_angel_types as $needed_angeltype_id => $count) {
$needed_angel_types[$needed_angeltype_id] = 0;
$queryKey = 'type_' . $needed_angeltype_id;
if ($request->has($queryKey)) {
if (test_request_int($queryKey)) {
$needed_angel_types[$needed_angeltype_id] = trim($request->input($queryKey));
} else {
$valid = false;
$msg .= error(sprintf(
__('Please check your input for needed angels of type %s.'),
$angeltypes[$needed_angeltype_id]
), true);
}
2017-01-02 03:57:23 +01:00
}
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
if ($valid) {
$shift['shifttype_id'] = $shifttype_id;
$shift['title'] = $title;
2021-11-27 11:34:20 +01:00
$shift['description'] = $description;
2017-01-02 03:57:23 +01:00
$shift['RID'] = $rid;
$shift['start'] = $start;
$shift['end'] = $end;
2017-01-02 15:43:36 +01:00
2017-07-23 11:46:54 +02:00
Shift_update($shift);
2017-01-02 03:57:23 +01:00
NeededAngelTypes_delete_by_shift($shift_id);
$needed_angel_types_info = [];
foreach ($needed_angel_types as $type_id => $count) {
NeededAngelType_add($shift_id, $type_id, null, $count);
2017-12-25 23:12:52 +01:00
if ($count > 0) {
$needed_angel_types_info[] = $angeltypes[$type_id] . ': ' . $count;
}
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
engelsystem_log(
2017-01-03 14:12:17 +01:00
'Updated shift \'' . $shifttypes[$shifttype_id] . ', ' . $title
. '\' from ' . date('Y-m-d H:i', $start)
. ' to ' . date('Y-m-d H:i', $end)
. ' with angel types ' . join(', ', $needed_angel_types_info)
2021-11-27 11:34:20 +01:00
. ' and description ' . $description
2017-01-02 15:43:36 +01:00
);
success(__('Shift updated.'));
2017-01-02 15:43:36 +01:00
2019-09-08 02:25:49 +02:00
throw_redirect(shift_link([
2017-01-02 15:43:36 +01:00
'SID' => $shift_id
]));
2017-01-02 03:57:23 +01:00
}
}
2017-01-02 15:43:36 +01:00
2017-01-03 14:12:17 +01:00
$angel_types_spinner = '';
2017-01-02 03:57:23 +01:00
foreach ($angeltypes as $angeltype_id => $angeltype_name) {
2017-01-02 15:43:36 +01:00
$angel_types_spinner .= form_spinner('type_' . $angeltype_id, $angeltype_name,
$needed_angel_types[$angeltype_id]);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
return page_with_title(
shifts_title(),
[
msg(),
2017-12-25 23:12:52 +01:00
'<noscript>'
. info(__('This page is much more comfortable with javascript.'), true)
2017-12-25 23:12:52 +01:00
. '</noscript>',
2017-01-02 15:43:36 +01:00
form([
form_select('shifttype_id', __('Shifttype'), $shifttypes, $shifttype_id),
form_text('title', __('Title'), $title),
2020-09-06 23:50:36 +02:00
form_select('rid', __('Room:'), $rooms, $rid),
form_text('start', __('Start:'), date('Y-m-d H:i', $start)),
form_text('end', __('End:'), date('Y-m-d H:i', $end)),
2021-11-27 11:34:20 +01:00
form_textarea('description', __('Additional description'), $description),
form_info('', __('This description is for single shifts, otherwise please use the description in shift type.')),
'<h2>' . __('Needed angels') . '</h2>',
2017-01-02 15:43:36 +01:00
$angel_types_spinner,
form_submit('submit', __('Save'))
2017-01-02 15:43:36 +01:00
])
]
);
}
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
function shift_delete_controller()
{
$request = request();
2017-01-02 15:43:36 +01:00
if (!auth()->can('user_shifts_admin')) {
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('user_shifts'));
2017-01-02 15:43:36 +01:00
}
// Schicht komplett löschen (nur für admins/user mit user_shifts_admin privileg)
2017-08-30 14:59:27 +02:00
if (!$request->has('delete_shift') || !preg_match('/^\d+$/', $request->input('delete_shift'))) {
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('user_shifts'));
2017-01-02 03:57:23 +01:00
}
$shift_id = $request->input('delete_shift');
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$shift = Shift($shift_id);
2018-01-14 17:47:26 +01:00
if (empty($shift)) {
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('user_shifts'));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
// Schicht löschen bestätigt
if ($request->hasPostData('delete')) {
UserWorkLog_from_shift($shift_id);
2017-01-02 15:43:36 +01:00
Shift_delete($shift_id);
engelsystem_log(
2017-01-03 14:12:17 +01:00
'Deleted shift ' . $shift['name']
. ' from ' . date('Y-m-d H:i', $shift['start'])
. ' to ' . date('Y-m-d H:i', $shift['end'])
2017-01-02 15:43:36 +01:00
);
success(__('Shift deleted.'));
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('user_shifts'));
2017-01-02 15:43:36 +01:00
}
2017-01-02 03:57:23 +01:00
return page_with_title(shifts_title(), [
2017-01-02 15:43:36 +01:00
error(sprintf(
__('Do you want to delete the shift %s from %s to %s?'),
2017-01-02 15:43:36 +01:00
$shift['name'],
2017-01-03 14:12:17 +01:00
date('Y-m-d H:i', $shift['start']),
date('H:i', $shift['end'])
2017-01-02 15:43:36 +01:00
), true),
form([
form_hidden('delete_shift', $shift_id),
form_submit('delete', __('delete')),
]),
2017-01-02 15:43:36 +01:00
]);
}
2017-01-03 03:22:48 +01:00
/**
* @return array
*/
2017-01-02 03:57:23 +01:00
function shift_controller()
{
2018-10-10 03:10:28 +02:00
$user = auth()->user();
$request = request();
2017-01-02 15:43:36 +01:00
if (!auth()->can('user_shifts')) {
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('/'));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
if (!$request->has('shift_id')) {
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('user_shifts'));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
$shift = Shift($request->input('shift_id'));
2018-01-14 17:47:26 +01:00
if (empty($shift)) {
error(__('Shift could not be found.'));
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('user_shifts'));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$shifttype = ShiftType($shift['shifttype_id']);
2020-09-06 23:50:36 +02:00
$room = Room::find($shift['RID']);
2019-08-21 01:27:38 +02:00
$angeltypes = AngelTypes();
2018-10-10 03:10:28 +02:00
$user_shifts = Shifts_by_user($user->id);
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$shift_signup_state = new ShiftSignupState(ShiftSignupState::OCCUPIED, 0);
2019-08-21 01:27:38 +02:00
foreach ($angeltypes as &$angeltype) {
2017-01-02 03:57:23 +01:00
$needed_angeltype = NeededAngeltype_by_Shift_and_Angeltype($shift, $angeltype);
2018-10-09 21:47:31 +02:00
if (empty($needed_angeltype)) {
continue;
}
2018-10-09 21:47:31 +02:00
2017-01-02 03:57:23 +01:00
$shift_entries = ShiftEntries_by_shift_and_angeltype($shift['SID'], $angeltype['id']);
2017-01-02 15:43:36 +01:00
$angeltype_signup_state = Shift_signup_allowed(
$user,
$shift,
$angeltype,
null,
$user_shifts,
$needed_angeltype,
$shift_entries
);
$shift_signup_state->combineWith($angeltype_signup_state);
2017-01-02 03:57:23 +01:00
$angeltype['shift_signup_state'] = $angeltype_signup_state;
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
return [
2017-01-02 15:43:36 +01:00
$shift['name'],
Shift_view($shift, $shifttype, $room, $angeltypes, $shift_signup_state)
];
2014-12-19 22:41:55 +01:00
}
2017-01-03 03:22:48 +01:00
/**
* @return array|false
*/
2017-01-02 03:57:23 +01:00
function shifts_controller()
{
$request = request();
if (!$request->has('action')) {
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('user_shifts'));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
switch ($request->input('action')) {
2017-01-02 15:43:36 +01:00
case 'view':
return shift_controller();
2017-12-25 23:12:52 +01:00
/** @noinspection PhpMissingBreakStatementInspection */
2017-01-02 15:43:36 +01:00
case 'next':
2017-12-25 23:12:52 +01:00
shift_next_controller();
2017-01-03 03:22:48 +01:00
default:
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('/'));
2017-01-02 15:43:36 +01:00
}
2017-01-03 03:22:48 +01:00
return false;
2014-12-19 22:41:55 +01:00
}
2014-12-19 22:59:18 +01:00
/**
* Redirects the user to his next shift.
*/
2017-01-02 03:57:23 +01:00
function shift_next_controller()
{
if (!auth()->can('user_shifts')) {
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('/'));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2018-10-17 01:30:10 +02:00
$upcoming_shifts = ShiftEntries_upcoming_for_user(auth()->user()->id);
2017-01-02 15:43:36 +01:00
2017-01-22 01:16:00 +01:00
if (!empty($upcoming_shifts)) {
2019-09-08 02:25:49 +02:00
throw_redirect(shift_link($upcoming_shifts[0]));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('user_shifts'));
2014-12-19 22:59:18 +01:00
}
/**
2013-10-13 00:52:44 +02:00
* Export filtered shifts via JSON.
* (Like iCal Export or shifts view)
*/
2017-01-02 03:57:23 +01:00
function shifts_json_export_controller()
{
$request = request();
$user = auth()->apiUser('key');
2017-01-02 15:43:36 +01:00
if (
!$request->has('key')
|| !preg_match('/^[\da-f]{32}$/', $request->input('key'))
|| !$user
) {
throw new HttpForbidden('{"error":"Missing or invalid key"}', ['content-type' => 'application/json']);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
if (!auth()->can('shifts_json_export')) {
throw new HttpForbidden('{"error":"Not allowed"}', ['content-type' => 'application/json']);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$shifts = load_ical_shifts();
foreach ($shifts as $row => $shift) {
$shifts[$row]['start_date'] = Carbon::createFromTimestamp($shift['start'])->toRfc3339String();
$shifts[$row]['end_date'] = Carbon::createFromTimestamp($shift['end'])->toRfc3339String();
}
2017-01-02 15:43:36 +01:00
2017-01-03 14:12:17 +01:00
header('Content-Type: application/json; charset=utf-8');
2017-01-02 03:57:23 +01:00
raw_output(json_encode($shifts));
}
/**
* Returns users shifts to export.
2017-01-03 03:22:48 +01:00
*
* @return array
*/
2017-01-02 03:57:23 +01:00
function load_ical_shifts()
{
2018-10-09 21:47:31 +02:00
return Shifts_by_user(auth()->user()->id);
}