misuzu/src/Users/role.php

158 lines
4.4 KiB
PHP
Raw Normal View History

2018-05-27 02:20:35 +02:00
<?php
define('MSZ_ROLE_MAIN', 1);
function user_role_add(int $userId, int $roleId): bool
{
$addRole = db_prepare('
2018-05-27 02:20:35 +02:00
INSERT INTO `msz_user_roles`
(`user_id`, `role_id`)
VALUES
(:user_id, :role_id)
');
$addRole->bindValue('user_id', $userId);
$addRole->bindValue('role_id', $roleId);
return $addRole->execute();
}
2018-05-27 03:59:57 +02:00
function user_role_remove(int $userId, int $roleId): bool
{
$removeRole = db_prepare('
2018-05-27 03:59:57 +02:00
DELETE FROM `msz_user_roles`
WHERE `user_id` = :user_id
AND `role_id` = :role_id
');
$removeRole->bindValue('user_id', $userId);
$removeRole->bindValue('role_id', $roleId);
return $removeRole->execute();
}
2018-11-17 21:37:18 +01:00
function user_role_can_leave(int $roleId): bool
{
$canLeaveRole = db_prepare('
SELECT `role_can_leave` != 0
FROM `msz_roles`
WHERE `role_id` = :role_id
');
$canLeaveRole->bindValue('role_id', $roleId);
return $canLeaveRole->execute() ? (bool)$canLeaveRole->fetchColumn() : false;
}
2018-05-27 03:59:57 +02:00
function user_role_has(int $userId, int $roleId): bool
{
$hasRole = db_prepare('
2018-05-27 03:59:57 +02:00
SELECT COUNT(`role_id`) > 0
FROM `msz_user_roles`
WHERE `user_id` = :user_id
AND `role_id` = :role_id
');
$hasRole->bindValue('user_id', $userId);
$hasRole->bindValue('role_id', $roleId);
return $hasRole->execute() ? (bool)$hasRole->fetchColumn() : false;
}
function user_role_set_display(int $userId, int $roleId): bool
{
if (!user_role_has($userId, $roleId)) {
return false;
}
$setDisplay = db_prepare('
2018-05-27 03:59:57 +02:00
UPDATE `msz_users`
SET `display_role` = :role_id
WHERE `user_id` = :user_id
');
$setDisplay->bindValue('user_id', $userId);
$setDisplay->bindValue('role_id', $roleId);
return $setDisplay->execute();
}
2018-11-17 21:37:18 +01:00
function user_role_get_display(int $userId): int
{
if ($userId < 1) {
return MSZ_ROLE_MAIN;
}
$fetchRole = db_prepare('
SELECT `display_role`
FROM `msz_users`
WHERE `user_id` = :user_id
');
$fetchRole->bindValue('user_id', $userId);
return $fetchRole->execute() ? (int)$fetchRole->fetchColumn() : MSZ_ROLE_MAIN;
}
function user_role_all_user(int $userId): array
{
$getUserRoles = db_prepare('
SELECT
r.`role_id`, r.`role_name`, r.`role_description`,
r.`role_colour`, r.`role_can_leave`, r.`role_created`
FROM `msz_user_roles` AS ur
LEFT JOIN `msz_roles` AS r
ON r.`role_id` = ur.`role_id`
WHERE ur.`user_id` = :user_id
ORDER BY r.`role_hierarchy` DESC
');
$getUserRoles->bindValue('user_id', $userId);
return db_fetch_all($getUserRoles);
}
function user_role_all(bool $withHidden = false)
{
return db_query(sprintf(
'
SELECT
r.`role_id`, r.`role_name`, r.`role_description`,
r.`role_colour`, r.`role_can_leave`, r.`role_created`,
(
SELECT COUNT(`user_id`)
FROM `msz_user_roles`
WHERE `role_id` = r.`role_id`
) AS `role_user_count`
FROM `msz_roles` AS r
%s
ORDER BY `role_id`
',
$withHidden ? '' : 'WHERE `role_hidden` = 0'
))->fetchAll(PDO::FETCH_ASSOC);
}
function user_role_get(int $roleId): array
{
$getRole = db_prepare('
SELECT
r.`role_id`, r.`role_name`, r.`role_description`,
r.`role_colour`, r.`role_can_leave`, r.`role_created`,
(
SELECT COUNT(`user_id`)
FROM `msz_user_roles`
WHERE `role_id` = r.`role_id`
) AS `role_user_count`
FROM `msz_roles` AS r
WHERE `role_id` = :role_id
');
$getRole->bindValue('role_id', $roleId);
return db_fetch($getRole);
}
function user_role_check_authority(int $userId, int $roleId): bool
{
$checkHierarchy = db_prepare('
SELECT (
SELECT MAX(r.`role_hierarchy`)
FROM `msz_roles` AS r
LEFT JOIN `msz_user_roles` AS ur
ON ur.`role_id` = r.`role_id`
WHERE ur.`user_id` = :user_id
) > (
SELECT `role_hierarchy`
FROM `msz_roles`
WHERE `role_id` = :role_id
)
');
$checkHierarchy->bindValue('user_id', $userId);
$checkHierarchy->bindValue('role_id', $roleId);
return (bool)($checkHierarchy->execute() ? $checkHierarchy->fetchColumn() : false);
}