engelsystem/includes/pages/admin_groups.php

147 lines
5.5 KiB
PHP
Raw Normal View History

2011-06-02 22:40:08 +02:00
<?php
use Engelsystem\Database\Db;
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
function admin_groups_title()
{
return __('Grouprights');
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_groups()
{
2017-01-03 14:12:17 +01:00
$html = '';
$request = request();
2022-06-16 22:50:52 +02:00
$groups = Db::select('SELECT * FROM `Groups` ORDER BY `Name`');
if (!$request->has('action')) {
2017-01-02 03:57:23 +01:00
$groups_table = [];
foreach ($groups as $group) {
2022-06-16 22:50:52 +02:00
$privileges = Db::select('
SELECT `name`
2017-01-02 15:43:36 +01:00
FROM `GroupPrivileges`
JOIN `Privileges` ON (`GroupPrivileges`.`privilege_id` = `Privileges`.`id`)
WHERE `group_id`=?
ORDER BY `name`
', [$group['UID']]);
2017-01-02 03:57:23 +01:00
$privileges_html = [];
2017-01-02 15:43:36 +01:00
foreach ($privileges as $privilege) {
$privileges_html[] = $privilege['name'];
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$groups_table[] = [
2017-01-02 15:43:36 +01:00
'name' => $group['Name'],
'privileges' => join(', ', $privileges_html),
'actions' => button(
2022-10-18 19:15:22 +02:00
page_link_to(
'admin_groups',
['action' => 'edit', 'id' => $group['UID']]
),
__('edit'),
2021-07-23 01:52:19 +02:00
'btn-sm'
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-01-02 03:57:23 +01:00
return page_with_title(admin_groups_title(), [
2017-01-02 15:43:36 +01:00
table([
'name' => __('Name'),
'privileges' => __('Privileges'),
2017-01-02 15:43:36 +01:00
'actions' => ''
], $groups_table)
]);
2017-01-02 03:57:23 +01:00
} else {
switch ($request->input('action')) {
2017-01-02 15:43:36 +01:00
case 'edit':
if ($request->has('id') && preg_match('/^-\d{1,11}$/', $request->input('id'))) {
$group_id = $request->input('id');
2017-01-02 15:43:36 +01:00
} else {
2017-01-03 14:12:17 +01:00
return error('Incomplete call, missing Groups ID.', true);
2017-01-02 15:43:36 +01:00
}
2022-06-16 22:50:52 +02:00
$group = Db::select('SELECT * FROM `Groups` WHERE `UID`=? LIMIT 1', [$group_id]);
if (!empty($group)) {
2022-06-16 22:50:52 +02:00
$privileges = Db::select('
2017-01-02 15:43:36 +01:00
SELECT `Privileges`.*, `GroupPrivileges`.`group_id`
FROM `Privileges`
LEFT OUTER JOIN `GroupPrivileges`
ON (
`Privileges`.`id` = `GroupPrivileges`.`privilege_id`
AND `GroupPrivileges`.`group_id`=?
2017-01-02 15:43:36 +01:00
)
ORDER BY `Privileges`.`name`
', [$group_id]);
2017-01-02 15:43:36 +01:00
$privileges_form = [];
foreach ($privileges as $privilege) {
2017-01-02 15:43:36 +01:00
$privileges_form[] = form_checkbox(
'privileges[]',
$privilege['desc'] . ' (' . $privilege['name'] . ')',
$privilege['group_id'] != '',
$privilege['id'],
'privilege-' . $privilege['name']
2017-01-02 15:43:36 +01:00
);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
$privileges_form[] = form_submit('submit', __('Save'));
$html .= page_with_title(__('Edit group'), [
2017-08-28 16:21:10 +02:00
form(
$privileges_form,
page_link_to('admin_groups', ['action' => 'save', 'id' => $group_id])
)
2017-01-02 15:43:36 +01:00
]);
} else {
2017-01-03 14:12:17 +01:00
return error('No Group found.', true);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
break;
case 'save':
if (
$request->has('id')
&& preg_match('/^-\d{1,11}$/', $request->input('id'))
&& $request->hasPostData('submit')
) {
$group_id = $request->input('id');
2017-01-02 15:43:36 +01:00
} else {
2017-01-03 14:12:17 +01:00
return error('Incomplete call, missing Groups ID.', true);
2017-01-02 15:43:36 +01:00
}
2022-06-16 22:50:52 +02:00
$group = Db::selectOne('SELECT * FROM `Groups` WHERE `UID`=? LIMIT 1', [$group_id]);
2020-09-06 23:50:36 +02:00
$privileges = $request->request->all('privileges');
if (!empty($group)) {
2022-06-16 22:50:52 +02:00
Db::delete('DELETE FROM `GroupPrivileges` WHERE `group_id`=?', [$group_id]);
2017-01-02 15:43:36 +01:00
$privilege_names = [];
foreach ($privileges as $privilege) {
if (preg_match('/^\d+$/', $privilege)) {
2022-06-16 22:50:52 +02:00
$group_privileges_source = Db::selectOne(
'SELECT `name` FROM `Privileges` WHERE `id`=? LIMIT 1',
[$privilege]
);
if (!empty($group_privileges_source)) {
2022-06-16 22:50:52 +02:00
Db::insert(
'INSERT INTO `GroupPrivileges` (`group_id`, `privilege_id`) VALUES (?, ?)',
[$group_id, $privilege]
);
$privilege_names[] = $group_privileges_source['name'];
2017-01-02 15:43:36 +01:00
}
}
}
engelsystem_log(
2017-01-03 14:12:17 +01:00
'Group privileges of group ' . $group['Name']
. ' edited: ' . join(', ', $privilege_names)
2017-01-02 15:43:36 +01:00
);
2019-09-08 02:25:49 +02:00
throw_redirect(page_link_to('admin_groups'));
2017-01-02 15:43:36 +01:00
} else {
2017-01-03 14:12:17 +01:00
return error('No Group found.', true);
2017-01-02 15:43:36 +01:00
}
break;
}
2017-01-02 03:57:23 +01:00
}
return $html;
2011-06-02 22:40:08 +02:00
}