2013-09-10 14:27:31 +02:00
|
|
|
<?php
|
2017-08-28 16:21:10 +02:00
|
|
|
|
2019-09-18 14:09:30 +02:00
|
|
|
use Engelsystem\Http\Exceptions\HttpForbidden;
|
2020-09-06 23:50:36 +02:00
|
|
|
use Engelsystem\Models\Room;
|
2020-09-21 23:10:44 +02:00
|
|
|
use Engelsystem\Models\Shifts\ScheduleShift;
|
2016-11-23 22:31:11 +01:00
|
|
|
use Engelsystem\ShiftSignupState;
|
2016-11-25 13:38:16 +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_link($shift)
|
|
|
|
{
|
2017-08-30 14:59:27 +02:00
|
|
|
$parameters = ['action' => 'view'];
|
2017-01-21 13:58:53 +01:00
|
|
|
if (isset($shift['SID'])) {
|
2017-08-30 14:59:27 +02:00
|
|
|
$parameters['shift_id'] = $shift['SID'];
|
2017-01-21 13:58:53 +01:00
|
|
|
}
|
2017-08-30 14:59:27 +02:00
|
|
|
|
|
|
|
$link = page_link_to('shifts', $parameters);
|
|
|
|
|
2017-01-21 13:58:53 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-10-02 21:19:03 +02:00
|
|
|
/**
|
|
|
|
* Edit a single shift.
|
2017-01-03 03:22:48 +01:00
|
|
|
*
|
|
|
|
* @return string
|
2016-10-02 21:19:03 +02:00
|
|
|
*/
|
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;
|
2017-07-18 21:38:53 +02:00
|
|
|
$request = request();
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2018-11-12 14:41:23 +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
|
|
|
|
2017-07-18 21:38:53 +02: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
|
|
|
}
|
2017-07-18 21:38:53 +02: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);
|
2020-09-21 23:10:44 +02:00
|
|
|
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;
|
|
|
|
}
|
2016-10-02 21:19:03 +02:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
$shifttype_id = $shift['shifttype_id'];
|
|
|
|
$title = $shift['title'];
|
|
|
|
$rid = $shift['RID'];
|
|
|
|
$start = $shift['start'];
|
|
|
|
$end = $shift['end'];
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2018-11-20 16:02:03 +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');
|
|
|
|
|
|
|
|
// Auswahl der sichtbaren Locations für die Schichten
|
2017-07-18 21:38:53 +02:00
|
|
|
if (
|
|
|
|
$request->has('rid')
|
|
|
|
&& preg_match('/^\d+$/', $request->input('rid'))
|
2020-09-06 23:50:36 +02:00
|
|
|
&& isset($rooms[$request->input('rid')])
|
2017-07-18 21:38:53 +02:00
|
|
|
) {
|
|
|
|
$rid = $request->input('rid');
|
2017-01-02 15:43:36 +01:00
|
|
|
} else {
|
|
|
|
$valid = false;
|
2018-08-29 21:55:32 +02:00
|
|
|
$msg .= error(__('Please select a room.'), true);
|
2017-01-02 15:43:36 +01:00
|
|
|
}
|
|
|
|
|
2017-07-18 21:38:53 +02: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;
|
2018-08-29 21:55:32 +02:00
|
|
|
$msg .= error(__('Please select a shifttype.'), true);
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-07-18 21:38:53 +02: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;
|
2018-08-29 21:55:32 +02:00
|
|
|
$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
|
|
|
|
2017-07-18 21:38:53 +02: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;
|
2018-08-29 21:55:32 +02:00
|
|
|
$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;
|
2018-08-29 21:55:32 +02:00
|
|
|
$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
|
|
|
|
2017-08-29 16:21:25 +02: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(
|
2018-08-29 21:55:32 +02:00
|
|
|
__('Please check your input for needed angels of type %s.'),
|
2017-08-29 16:21:25 +02:00
|
|
|
$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;
|
|
|
|
$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) {
|
2017-12-17 13:22:29 +01:00
|
|
|
$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)
|
2017-01-02 15:43:36 +01:00
|
|
|
);
|
2018-08-29 21:55:32 +02: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
|
|
|
}
|
2016-10-02 21:19:03 +02: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>'
|
2018-08-29 21:55:32 +02:00
|
|
|
. 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([
|
2018-08-29 21:55:32 +02:00
|
|
|
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),
|
2018-08-29 21:55:32 +02:00
|
|
|
form_text('start', __('Start:'), date('Y-m-d H:i', $start)),
|
|
|
|
form_text('end', __('End:'), date('Y-m-d H:i', $end)),
|
|
|
|
'<h2>' . __('Needed angels') . '</h2>',
|
2017-01-02 15:43:36 +01:00
|
|
|
$angel_types_spinner,
|
2018-08-29 21:55:32 +02:00
|
|
|
form_submit('submit', __('Save'))
|
2017-01-02 15:43:36 +01:00
|
|
|
])
|
|
|
|
]
|
|
|
|
);
|
2016-10-02 21:19:03 +02:00
|
|
|
}
|
|
|
|
|
2017-01-03 03:22:48 +01:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-01-02 03:57:23 +01:00
|
|
|
function shift_delete_controller()
|
|
|
|
{
|
2017-07-18 21:38:53 +02:00
|
|
|
$request = request();
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2018-11-12 14:41:23 +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
|
|
|
}
|
2017-07-18 21:38:53 +02: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
|
2018-11-20 16:02:03 +01:00
|
|
|
if ($request->hasPostData('delete')) {
|
2019-09-07 00:41:48 +02:00
|
|
|
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
|
|
|
);
|
2018-08-29 21:55:32 +02: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(
|
2018-08-29 21:55:32 +02:00
|
|
|
__('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),
|
2018-11-20 16:02:03 +01:00
|
|
|
form([
|
|
|
|
form_hidden('delete_shift', $shift_id),
|
|
|
|
form_submit('delete', __('delete')),
|
|
|
|
]),
|
2017-01-02 15:43:36 +01:00
|
|
|
]);
|
2016-10-02 21:19:03 +02: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();
|
2017-07-18 21:38:53 +02:00
|
|
|
$request = request();
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2018-11-12 14:41:23 +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
|
|
|
|
2017-07-18 21:38:53 +02: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
|
|
|
|
2017-07-18 21:38:53 +02:00
|
|
|
$shift = Shift($request->input('shift_id'));
|
2018-01-14 17:47:26 +01:00
|
|
|
if (empty($shift)) {
|
2018-08-29 21:55:32 +02:00
|
|
|
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)) {
|
2018-08-28 18:28:09 +02:00
|
|
|
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
|
|
|
|
2017-01-21 13:58:53 +01:00
|
|
|
$angeltype_signup_state = Shift_signup_allowed(
|
|
|
|
$user,
|
|
|
|
$shift,
|
|
|
|
$angeltype,
|
|
|
|
null,
|
|
|
|
$user_shifts,
|
|
|
|
$needed_angeltype,
|
|
|
|
$shift_entries
|
|
|
|
);
|
2018-08-28 18:28:09 +02:00
|
|
|
$shift_signup_state->combineWith($angeltype_signup_state);
|
2017-01-02 03:57:23 +01:00
|
|
|
$angeltype['shift_signup_state'] = $angeltype_signup_state;
|
2014-12-25 22:23:18 +01:00
|
|
|
}
|
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()
|
|
|
|
{
|
2017-07-18 21:38:53 +02:00
|
|
|
$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
|
|
|
|
2017-07-18 21:38:53 +02: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()
|
|
|
|
{
|
2018-11-12 14:41:23 +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
|
|
|
|
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-09-10 14:27:31 +02:00
|
|
|
/**
|
2013-10-13 00:52:44 +02:00
|
|
|
* Export filtered shifts via JSON.
|
|
|
|
* (Like iCal Export or shifts view)
|
2013-09-10 14:27:31 +02:00
|
|
|
*/
|
2017-01-02 03:57:23 +01:00
|
|
|
function shifts_json_export_controller()
|
|
|
|
{
|
2017-07-18 21:38:53 +02:00
|
|
|
$request = request();
|
2019-09-18 14:09:30 +02:00
|
|
|
$user = auth()->apiUser('key');
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2019-09-18 14:09:30 +02: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
|
|
|
|
2018-11-12 14:41:23 +01:00
|
|
|
if (!auth()->can('shifts_json_export')) {
|
2019-09-18 14:09:30 +02:00
|
|
|
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();
|
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));
|
2016-08-22 19:03:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-11-25 13:38:16 +01:00
|
|
|
* Returns users shifts to export.
|
2017-01-03 03:22:48 +01:00
|
|
|
*
|
|
|
|
* @return array
|
2016-08-22 19:03:18 +02:00
|
|
|
*/
|
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);
|
2013-09-10 14:27:31 +02:00
|
|
|
}
|