engelsystem/includes/pages/user_myshifts.php

150 lines
6.1 KiB
PHP
Raw Normal View History

2011-07-15 17:50:57 +02:00
<?php
2014-09-28 15:01:02 +02:00
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
2011-10-11 19:47:49 +02:00
// Zeigt die Schichten an, die ein Benutzer belegt
2017-01-02 03:57:23 +01:00
function user_myshifts()
{
global $LETZTES_AUSTRAGEN;
global $user, $privileges;
2017-01-02 15:43:36 +01:00
if (
isset($_REQUEST['id'])
&& in_array("user_shifts_admin", $privileges)
&& preg_match("/^[0-9]{1,}$/", $_REQUEST['id'])
&& sql_num_query("SELECT * FROM `User` WHERE `UID`='" . sql_escape($_REQUEST['id']) . "'") > 0
) {
2017-01-02 03:57:23 +01:00
$user_id = $_REQUEST['id'];
} else {
$user_id = $user['UID'];
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
list($shifts_user) = sql_select("SELECT * FROM `User` WHERE `UID`='" . sql_escape($user_id) . "' LIMIT 1");
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
if (isset($_REQUEST['reset'])) {
if ($_REQUEST['reset'] == "ack") {
User_reset_api_key($user);
success(_("Key changed."));
redirect(page_link_to('users') . '&action=view&user_id=' . $shifts_user['UID']);
}
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."),
true
),
button(page_link_to('user_myshifts') . '&reset=ack', _("Continue"), 'btn-danger')
]);
2017-01-02 03:57:23 +01:00
} elseif (isset($_REQUEST['edit']) && preg_match("/^[0-9]*$/", $_REQUEST['edit'])) {
$user_id = $_REQUEST['edit'];
$shift = sql_select("SELECT
`ShiftEntry`.`freeloaded`,
`ShiftEntry`.`freeload_comment`,
`ShiftEntry`.`Comment`,
`ShiftEntry`.`UID`,
2014-12-17 17:22:35 +01:00
`ShiftTypes`.`name`,
`Shifts`.*,
`Room`.`Name`,
2017-01-02 15:43:36 +01:00
`AngelTypes`.`name` AS `angel_type`
FROM `ShiftEntry`
JOIN `AngelTypes` ON (`ShiftEntry`.`TID` = `AngelTypes`.`id`)
JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`)
2014-12-17 17:22:35 +01:00
JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`)
2016-09-29 12:45:06 +02:00
WHERE `ShiftEntry`.`id`='" . sql_escape($user_id) . "'
2014-12-28 13:44:56 +01:00
AND `UID`='" . sql_escape($shifts_user['UID']) . "' LIMIT 1");
2017-01-02 03:57:23 +01:00
if (count($shift) > 0) {
$shift = $shift[0];
$freeloaded = $shift['freeloaded'];
$freeload_comment = $shift['freeload_comment'];
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
if (isset($_REQUEST['submit'])) {
$valid = true;
if (in_array("user_shifts_admin", $privileges)) {
$freeloaded = isset($_REQUEST['freeloaded']);
$freeload_comment = strip_request_item_nl('freeload_comment');
if ($freeloaded && $freeload_comment == '') {
$valid = false;
error(_("Please enter a freeload comment!"));
}
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$comment = strip_request_item_nl('comment');
$user_source = User($shift['UID']);
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
if ($valid) {
$result = ShiftEntry_update([
2017-01-02 15:43:36 +01:00
'id' => $user_id,
'Comment' => $comment,
'freeloaded' => $freeloaded,
'freeload_comment' => $freeload_comment
]);
2017-01-02 03:57:23 +01:00
if ($result === false) {
engelsystem_error('Unable to update shift entry.');
}
2017-01-02 15:43:36 +01:00
engelsystem_log(
"Updated " . User_Nick_render($user_source) . "'s shift " . $shift['name']
. " 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 03:57:23 +01:00
success(_("Shift saved."));
redirect(page_link_to('users') . '&action=view&user_id=' . $shifts_user['UID']);
}
}
2017-01-02 15:43:36 +01:00
return ShiftEntry_edit_view(
User_Nick_render($shifts_user),
date("Y-m-d H:i", $shift['start']) . ', ' . shift_length($shift),
$shift['Name'],
$shift['name'],
$shift['angel_type'],
$shift['Comment'],
$shift['freeloaded'],
$shift['freeload_comment'],
in_array("user_shifts_admin", $privileges)
);
2017-01-02 03:57:23 +01:00
} else {
redirect(page_link_to('user_myshifts'));
}
} elseif (isset($_REQUEST['cancel']) && preg_match("/^[0-9]*$/", $_REQUEST['cancel'])) {
$user_id = $_REQUEST['cancel'];
$shift = sql_select("
SELECT *
2014-12-17 17:22:35 +01:00
FROM `Shifts`
INNER JOIN `ShiftEntry` USING (`SID`)
2016-09-29 12:45:06 +02:00
WHERE `ShiftEntry`.`id`='" . sql_escape($user_id) . "' AND `UID`='" . sql_escape($shifts_user['UID']) . "'");
2017-01-02 03:57:23 +01:00
if (count($shift) > 0) {
$shift = $shift[0];
if (($shift['start'] > time() + $LETZTES_AUSTRAGEN * 3600) || in_array('user_shifts_admin', $privileges)) {
$result = ShiftEntry_delete($user_id);
if ($result === false) {
engelsystem_error('Unable to delete shift entry.');
}
$room = Room($shift['RID']);
$angeltype = AngelType($shift['TID']);
$shifttype = ShiftType($shift['shifttype_id']);
2017-01-02 15:43:36 +01:00
engelsystem_log(
"Deleted own shift: " . $shifttype['name']
. " at " . $room['Name']
. " from " . date("Y-m-d H:i", $shift['start'])
. " to " . date("Y-m-d H:i", $shift['end'])
. " as " . $angeltype['name']
);
2017-01-02 03:57:23 +01:00
success(_("Shift canceled."));
} else {
error(_("It's too late to sign yourself off the shift. If neccessary, ask the dispatcher to do so."));
}
} else {
redirect(user_link($shifts_user));
}
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
redirect(page_link_to('users') . '&action=view&user_id=' . $shifts_user['UID']);
2011-07-19 19:12:36 +02:00
}