engelsystem/includes/pages/user_myshifts.php

135 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;
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{1,}$/', $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');
$shift = DB::selectOne('
SELECT
`ShiftEntry`.`freeloaded`,
`ShiftEntry`.`freeload_comment`,
`ShiftEntry`.`Comment`,
`ShiftEntry`.`UID`,
`ShiftTypes`.`name`,
`Shifts`.*,
2020-09-06 23:50:36 +02:00
`rooms`.`name` as room_name,
`AngelTypes`.`name` AS `angel_type`
FROM `ShiftEntry`
JOIN `AngelTypes` ON (`ShiftEntry`.`TID` = `AngelTypes`.`id`)
JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`)
JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
2020-09-06 23:50:36 +02:00
JOIN `rooms` ON (`Shifts`.`RID` = `rooms`.`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)) {
2017-01-02 03:57:23 +01:00
$freeloaded = $shift['freeloaded'];
$freeload_comment = $shift['freeload_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
$comment = $shift['Comment'];
2018-10-09 21:47:31 +02:00
$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(
2019-05-31 04:03:19 +02:00
'Updated ' . User_Nick_render($user_source, true) . '\'s shift ' . $shift['name']
2017-01-03 14:12:17 +01:00
. ' from ' . date('Y-m-d H:i', $shift['start'])
. ' to ' . date('Y-m-d H:i', $shift['end'])
. ' 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,
2017-01-03 14:12:17 +01:00
date('Y-m-d H:i', $shift['start']) . ', ' . shift_length($shift),
2020-09-06 23:50:36 +02:00
$shift['room_name'],
2017-01-02 15:43:36 +01:00
$shift['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
}