engelsystem/includes/pages/user_myshifts.php

139 lines
4.9 KiB
PHP
Raw Normal View History

2011-07-15 17:50:57 +02:00
<?php
2014-09-28 15:01:02 +02:00
use Engelsystem\Database\Db;
2023-01-03 22:19:03 +01:00
use Engelsystem\Models\Shifts\Shift;
2018-10-09 21:47:31 +02:00
use Engelsystem\Models\User\User;
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
function myshifts_title()
{
return __('My shifts');
2013-11-25 21:04:58 +01:00
}
2011-07-19 19:12:36 +02:00
2017-01-03 03:22:48 +01:00
/**
* Zeigt die Schichten an, die ein Benutzer belegt
*
* @return string
*/
2017-01-02 03:57:23 +01:00
function user_myshifts()
{
2018-10-10 03:10:28 +02:00
$user = auth()->user();
$request = request();
2017-01-02 15:43:36 +01:00
if (
$request->has('id')
&& auth()->can('user_shifts_admin')
&& preg_match('/^\d+$/', $request->input('id'))
2018-10-14 18:24:42 +02:00
&& User::find($request->input('id'))
2017-01-02 15:43:36 +01:00
) {
$shift_entry_id = $request->input('id');
2017-01-02 03:57:23 +01:00
} else {
2018-10-10 03:10:28 +02:00
$shift_entry_id = $user->id;
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2018-10-09 21:47:31 +02:00
$shifts_user = User::find($shift_entry_id);
if ($request->has('reset')) {
if ($request->input('reset') == 'ack') {
2017-01-02 03:57:23 +01:00
User_reset_api_key($user);
success(__('Key changed.'));
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('users', ['action' => 'view', 'user_id' => $shifts_user->id]));
2017-01-02 03:57:23 +01:00
}
return page_with_title(__('Reset API key'), [
2017-01-02 15:43:36 +01:00
error(
__('If you reset the key, the url to your iCal- and JSON-export and your atom feed changes! You have to update it in every application using one of these exports.'),
2017-01-02 15:43:36 +01:00
true
),
button(page_link_to('user_myshifts', ['reset' => 'ack']), __('Continue'), 'btn-danger')
2017-01-02 15:43:36 +01:00
]);
2017-08-30 14:59:27 +02:00
} elseif ($request->has('edit') && preg_match('/^\d+$/', $request->input('edit'))) {
$shift_entry_id = $request->input('edit');
2022-10-18 19:15:22 +02:00
$shift = Db::selectOne(
'
SELECT
`ShiftEntry`.`freeloaded`,
`ShiftEntry`.`freeload_comment`,
`ShiftEntry`.`Comment`,
`ShiftEntry`.`UID`,
`shift_types`.`name`,
2023-01-03 22:19:03 +01:00
`shifts`.*,
2022-11-09 00:02:30 +01:00
`angel_types`.`name` AS `angel_type`
FROM `ShiftEntry`
2022-11-09 00:02:30 +01:00
JOIN `angel_types` ON (`ShiftEntry`.`TID` = `angel_types`.`id`)
2023-01-03 22:19:03 +01:00
JOIN `shifts` ON (`ShiftEntry`.`SID` = `shifts`.`id`)
JOIN `shift_types` ON (`shift_types`.`id` = `shifts`.`shift_type_id`)
WHERE `ShiftEntry`.`id`=?
AND `UID`=?
LIMIT 1
',
[
$shift_entry_id,
2018-10-09 21:47:31 +02:00
$shifts_user->id,
]
);
if (!empty($shift)) {
2023-01-03 22:19:03 +01:00
/** @var Shift $shift */
$shift = (new Shift())->forceFill($shift);
$freeloaded = $shift->freeloaded;
$freeload_comment = $shift->freeloaded_comment;
2017-01-02 15:43:36 +01:00
if ($request->hasPostData('submit')) {
2017-01-02 03:57:23 +01:00
$valid = true;
if (auth()->can('user_shifts_admin')) {
$freeloaded = $request->has('freeloaded');
2017-01-02 03:57:23 +01:00
$freeload_comment = strip_request_item_nl('freeload_comment');
if ($freeloaded && $freeload_comment == '') {
$valid = false;
error(__('Please enter a freeload comment!'));
2017-01-02 03:57:23 +01:00
}
}
2017-01-02 15:43:36 +01:00
2023-01-03 22:19:03 +01:00
$comment = $shift->Comment;
$user_source = User::find($shift->UID);
if (auth()->user()->id == $user_source->id) {
$comment = strip_request_item_nl('comment');
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
if ($valid) {
2017-07-23 11:46:54 +02:00
ShiftEntry_update([
'id' => $shift_entry_id,
2017-01-02 15:43:36 +01:00
'Comment' => $comment,
'freeloaded' => $freeloaded,
'freeload_comment' => $freeload_comment
]);
engelsystem_log(
2023-01-03 22:19:03 +01:00
'Updated ' . User_Nick_render($user_source, true) . '\'s shift '
. $shift->title . ' / ' . $shift->shiftType->name
. ' from ' . $shift->start->format('Y-m-d H:i')
. ' to ' . $shift->end->format('Y-m-d H:i')
2017-01-03 14:12:17 +01:00
. ' with comment ' . $comment
. '. Freeloaded: ' . ($freeloaded ? 'YES Comment: ' . $freeload_comment : 'NO')
2017-01-02 15:43:36 +01:00
);
success(__('Shift saved.'));
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('users', ['action' => 'view', 'user_id' => $shifts_user->id]));
2017-01-02 03:57:23 +01:00
}
}
2017-01-02 15:43:36 +01:00
return ShiftEntry_edit_view(
$shifts_user,
2023-01-03 22:19:03 +01:00
$shift->start->format('Y-m-d H:i') . ', ' . shift_length($shift),
$shift->room->name,
$shift->shiftType->name,
$shift->angel_type,
$shift->Comment,
$shift->freeloaded,
$shift->freeload_comment,
auth()->can('user_shifts_admin')
2017-01-02 15:43:36 +01:00
);
2017-01-02 03:57:23 +01:00
} else {
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('user_myshifts'));
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('users', ['action' => 'view', 'user_id' => $shifts_user->id]));
2017-01-03 03:22:48 +01:00
return '';
2011-07-19 19:12:36 +02:00
}