2011-06-02 16:56:45 +02:00
|
|
|
<?php
|
2017-01-03 03:22:48 +01:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-01-02 03:57:23 +01:00
|
|
|
function admin_rooms_title()
|
|
|
|
{
|
2018-08-29 21:55:32 +02:00
|
|
|
return __('Rooms');
|
2013-11-25 21:04:58 +01:00
|
|
|
}
|
|
|
|
|
2017-01-03 03:22:48 +01:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-01-02 03:57:23 +01:00
|
|
|
function admin_rooms()
|
|
|
|
{
|
2017-12-10 18:56:40 +01:00
|
|
|
$rooms_source = Rooms();
|
2017-01-02 03:57:23 +01:00
|
|
|
$rooms = [];
|
2017-07-18 21:38:53 +02:00
|
|
|
$request = request();
|
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
foreach ($rooms_source as $room) {
|
|
|
|
$rooms[] = [
|
2017-12-25 23:12:52 +01:00
|
|
|
'name' => Room_name_render($room),
|
2017-12-10 15:02:37 +01:00
|
|
|
'from_frab' => glyph_bool($room['from_frab']),
|
2017-12-25 23:12:52 +01:00
|
|
|
'map_url' => glyph_bool(!empty($room['map_url'])),
|
|
|
|
'actions' => table_buttons([
|
|
|
|
button(
|
|
|
|
page_link_to('admin_rooms', ['show' => 'edit', 'id' => $room['RID']]),
|
2018-08-29 21:55:32 +02:00
|
|
|
__('edit'),
|
2017-12-25 23:12:52 +01:00
|
|
|
'btn-xs'
|
|
|
|
),
|
|
|
|
button(
|
|
|
|
page_link_to('admin_rooms', ['show' => 'delete', 'id' => $room['RID']]),
|
2018-08-29 21:55:32 +02:00
|
|
|
__('delete'),
|
2017-12-25 23:12:52 +01:00
|
|
|
'btn-xs'
|
|
|
|
)
|
2017-01-02 15:43:36 +01:00
|
|
|
])
|
|
|
|
];
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-12-25 23:12:52 +01:00
|
|
|
$room = null;
|
2017-07-18 21:38:53 +02:00
|
|
|
if ($request->has('show')) {
|
2017-01-03 14:12:17 +01:00
|
|
|
$msg = '';
|
|
|
|
$name = '';
|
2017-12-10 15:02:37 +01:00
|
|
|
$from_frab = false;
|
|
|
|
$map_url = null;
|
|
|
|
$description = null;
|
2017-01-03 03:22:48 +01:00
|
|
|
$room_id = 0;
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-12-10 18:56:40 +01:00
|
|
|
$angeltypes_source = AngelTypes();
|
2017-01-02 03:57:23 +01:00
|
|
|
$angeltypes = [];
|
|
|
|
$angeltypes_count = [];
|
|
|
|
foreach ($angeltypes_source as $angeltype) {
|
|
|
|
$angeltypes[$angeltype['id']] = $angeltype['name'];
|
|
|
|
$angeltypes_count[$angeltype['id']] = 0;
|
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
if (test_request_int('id')) {
|
2017-12-10 15:02:37 +01:00
|
|
|
$room = Room($request->input('id'));
|
2018-01-14 17:47:26 +01:00
|
|
|
if (empty($room)) {
|
2017-01-02 03:57:23 +01:00
|
|
|
redirect(page_link_to('admin_rooms'));
|
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-07-18 21:38:53 +02:00
|
|
|
$room_id = $request->input('id');
|
2017-01-02 03:57:23 +01:00
|
|
|
$name = $room['Name'];
|
2017-12-10 15:02:37 +01:00
|
|
|
$from_frab = $room['from_frab'];
|
|
|
|
$map_url = $room['map_url'];
|
|
|
|
$description = $room['description'];
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-12-10 18:56:40 +01:00
|
|
|
$needed_angeltypes = NeededAngelTypes_by_room($room_id);
|
2017-01-02 03:57:23 +01:00
|
|
|
foreach ($needed_angeltypes as $needed_angeltype) {
|
|
|
|
$angeltypes_count[$needed_angeltype['angel_type_id']] = $needed_angeltype['count'];
|
|
|
|
}
|
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-07-18 21:38:53 +02:00
|
|
|
if ($request->input('show') == 'edit') {
|
2018-11-20 16:02:03 +01:00
|
|
|
if ($request->hasPostData('submit')) {
|
2017-01-02 03:57:23 +01:00
|
|
|
$valid = true;
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-07-18 21:38:53 +02:00
|
|
|
if ($request->has('name') && strlen(strip_request_item('name')) > 0) {
|
2017-12-10 18:56:40 +01:00
|
|
|
$result = Room_validate_name(strip_request_item('name'), $room_id);
|
2017-12-25 23:12:52 +01:00
|
|
|
if (!$result->isValid()) {
|
2017-01-02 03:57:23 +01:00
|
|
|
$valid = false;
|
2018-08-29 21:55:32 +02:00
|
|
|
$msg .= error(__('This name is already in use.'), true);
|
2017-12-10 18:56:40 +01:00
|
|
|
} else {
|
|
|
|
$name = $result->getValue();
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$valid = false;
|
2018-08-29 21:55:32 +02:00
|
|
|
$msg .= error(__('Please enter a name.'), true);
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-12-10 15:02:37 +01:00
|
|
|
$from_frab = $request->has('from_frab');
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-12-10 15:02:37 +01:00
|
|
|
if ($request->has('map_url')) {
|
|
|
|
$map_url = strip_request_item('map_url');
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-12-10 15:02:37 +01:00
|
|
|
if ($request->has('description')) {
|
2017-12-25 23:12:52 +01:00
|
|
|
$description = strip_request_item_nl('description');
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
foreach ($angeltypes as $angeltype_id => $angeltype) {
|
2017-08-29 16:21:25 +02:00
|
|
|
$angeltypes_count[$angeltype_id] = 0;
|
|
|
|
$queryKey = 'angeltype_count_' . $angeltype_id;
|
|
|
|
if (!$request->has($queryKey)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (preg_match('/^\d{1,4}$/', $request->input($queryKey))) {
|
|
|
|
$angeltypes_count[$angeltype_id] = $request->input($queryKey);
|
2017-01-02 03:57:23 +01:00
|
|
|
} else {
|
|
|
|
$valid = false;
|
2017-12-25 23:12:52 +01:00
|
|
|
$msg .= error(sprintf(
|
2018-08-29 21:55:32 +02:00
|
|
|
__('Please enter needed angels for type %s.'),
|
2017-12-25 23:12:52 +01:00
|
|
|
$angeltype
|
|
|
|
), 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) {
|
2017-12-10 18:56:40 +01:00
|
|
|
if (empty($room_id)) {
|
2017-12-10 15:02:37 +01:00
|
|
|
$room_id = Room_create($name, $from_frab, $map_url, $description);
|
2017-12-10 18:56:40 +01:00
|
|
|
} else {
|
|
|
|
Room_update($room_id, $name, $from_frab, $map_url, $description);
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
NeededAngelTypes_delete_by_room($room_id);
|
|
|
|
$needed_angeltype_info = [];
|
|
|
|
foreach ($angeltypes_count as $angeltype_id => $angeltype_count) {
|
|
|
|
$angeltype = AngelType($angeltype_id);
|
2018-01-14 17:47:26 +01:00
|
|
|
if (!empty($angeltype)) {
|
2017-01-02 03:57:23 +01:00
|
|
|
NeededAngelType_add(null, $angeltype_id, $room_id, $angeltype_count);
|
2017-12-25 23:12:52 +01:00
|
|
|
if ($angeltype_count > 0) {
|
2017-12-12 20:04:36 +01:00
|
|
|
$needed_angeltype_info[] = $angeltype['name'] . ': ' . $angeltype_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
|
|
|
'Set needed angeltypes of room ' . $name
|
|
|
|
. ' to: ' . join(', ', $needed_angeltype_info)
|
2017-01-02 15:43:36 +01:00
|
|
|
);
|
2018-08-29 21:55:32 +02:00
|
|
|
success(__('Room saved.'));
|
2017-01-03 14:12:17 +01:00
|
|
|
redirect(page_link_to('admin_rooms'));
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$angeltypes_count_form = [];
|
|
|
|
foreach ($angeltypes as $angeltype_id => $angeltype) {
|
|
|
|
$angeltypes_count_form[] = div('col-lg-4 col-md-6 col-xs-6', [
|
2017-01-02 15:43:36 +01:00
|
|
|
form_spinner('angeltype_count_' . $angeltype_id, $angeltype, $angeltypes_count[$angeltype_id])
|
|
|
|
]);
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
return page_with_title(admin_rooms_title(), [
|
2017-01-02 15:43:36 +01:00
|
|
|
buttons([
|
2018-08-29 21:55:32 +02:00
|
|
|
button(page_link_to('admin_rooms'), __('back'), 'back')
|
2017-01-02 15:43:36 +01:00
|
|
|
]),
|
|
|
|
$msg,
|
|
|
|
form([
|
|
|
|
div('row', [
|
|
|
|
div('col-md-6', [
|
2018-12-18 13:22:10 +01:00
|
|
|
form_text('name', __('Name'), $name, false, 35),
|
2018-08-29 21:55:32 +02:00
|
|
|
form_checkbox('from_frab', __('Frab import'), $from_frab),
|
|
|
|
form_text('map_url', __('Map URL'), $map_url),
|
|
|
|
form_info('', __('The map url is used to display an iframe on the room page.')),
|
|
|
|
form_textarea('description', __('Description'), $description),
|
|
|
|
form_info('', __('Please use markdown for the description.')),
|
2017-01-02 15:43:36 +01:00
|
|
|
]),
|
|
|
|
div('col-md-6', [
|
|
|
|
div('row', [
|
|
|
|
div('col-md-12', [
|
2018-08-29 21:55:32 +02:00
|
|
|
form_info(__('Needed angels:'))
|
2017-01-02 15:43:36 +01:00
|
|
|
]),
|
|
|
|
join($angeltypes_count_form)
|
|
|
|
])
|
|
|
|
])
|
|
|
|
]),
|
2018-08-29 21:55:32 +02:00
|
|
|
form_submit('submit', __('Save'))
|
2017-01-02 15:43:36 +01:00
|
|
|
])
|
|
|
|
]);
|
2017-07-18 21:38:53 +02:00
|
|
|
} elseif ($request->input('show') == 'delete') {
|
2018-11-20 16:02:03 +01:00
|
|
|
if ($request->hasPostData('ack')) {
|
2019-09-07 01:44:15 +02:00
|
|
|
$shifts = Shifts_by_room($room_id);
|
|
|
|
foreach ($shifts as $shift) {
|
|
|
|
$shift = Shift($shift['SID']);
|
|
|
|
|
|
|
|
UserWorkLog_from_shift($shift);
|
|
|
|
mail_shift_delete($shift);
|
|
|
|
}
|
|
|
|
|
2017-07-28 18:50:00 +02:00
|
|
|
Room_delete($room_id);
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2018-08-29 21:55:32 +02:00
|
|
|
success(sprintf(__('Room %s deleted.'), $name));
|
2017-01-02 03:57:23 +01:00
|
|
|
redirect(page_link_to('admin_rooms'));
|
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
return page_with_title(admin_rooms_title(), [
|
2017-01-02 15:43:36 +01:00
|
|
|
buttons([
|
2018-08-29 21:55:32 +02:00
|
|
|
button(page_link_to('admin_rooms'), __('back'), 'back')
|
2017-01-02 15:43:36 +01:00
|
|
|
]),
|
2018-08-29 21:55:32 +02:00
|
|
|
sprintf(__('Do you want to delete room %s?'), $name),
|
2018-11-20 16:02:03 +01:00
|
|
|
form([
|
|
|
|
form_submit('ack', __('Delete'), 'delete btn-danger'),
|
|
|
|
], page_link_to('admin_rooms', ['show' => 'delete', 'id' => $room_id])),
|
2017-01-02 15:43:36 +01:00
|
|
|
]);
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2012-04-26 22:37:37 +02:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
return page_with_title(admin_rooms_title(), [
|
2017-01-02 15:43:36 +01:00
|
|
|
buttons([
|
2018-08-29 21:55:32 +02:00
|
|
|
button(page_link_to('admin_rooms', ['show' => 'edit']), __('add'))
|
2017-01-02 15:43:36 +01:00
|
|
|
]),
|
|
|
|
msg(),
|
|
|
|
table([
|
2018-08-29 21:55:32 +02:00
|
|
|
'name' => __('Name'),
|
|
|
|
'from_frab' => __('Frab import'),
|
|
|
|
'map_url' => __('Map'),
|
2017-12-25 23:12:52 +01:00
|
|
|
'actions' => ''
|
2017-01-02 15:43:36 +01:00
|
|
|
], $rooms)
|
|
|
|
]);
|
2011-06-02 16:56:45 +02:00
|
|
|
}
|