File: /home/timetracker.panomity.com/src/Security/RolePermissionManager.php
<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Security;
use App\Entity\User;
use App\User\PermissionService;
final class RolePermissionManager
{
/**
* Permissions that are always true for ROLE_SUPER_ADMIN, no matter what is inside the database.
*
* @var array<string, bool>
* @internal
*/
public const SUPER_ADMIN_PERMISSIONS = [
'view_all_data' => true,
'role_permissions' => true,
'view_user' => true,
];
private bool $isInitialized = false;
/**
* @param PermissionService $service
* @param array<string, array<string, bool>> $permissions as defined in kimai.yaml
* @param array<string, bool> $permissionNames as defined in kimai.yaml
*/
public function __construct(private PermissionService $service, private array $permissions, private array $permissionNames)
{
}
private function init(): void
{
if ($this->isInitialized) {
return;
}
foreach ($this->service->getPermissions() as $item) {
$perm = (string) $item['permission'];
$role = (string) $item['role'];
// these permissions may not be revoked at any time, because super admin would lose the ability to reactivate any permission
if ($role === User::ROLE_SUPER_ADMIN && \array_key_exists($perm, self::SUPER_ADMIN_PERMISSIONS)) {
continue;
}
if (!\array_key_exists($role, $this->permissions)) {
$this->permissions[$role] = [];
}
$this->permissions[$role][$perm] = (bool) $item['allowed'];
}
foreach (self::SUPER_ADMIN_PERMISSIONS as $perm => $value) {
$this->permissions[User::ROLE_SUPER_ADMIN][$perm] = $value;
}
$this->isInitialized = true;
}
/**
* Only permissions which were registered through the Symfony configuration stack will be acknowledged here.
*
* @param string $permission
* @return bool
*/
public function isRegisteredPermission(string $permission): bool
{
$this->init();
return \array_key_exists($permission, $this->permissionNames);
}
public function hasPermission(string $role, string $permission): bool
{
$this->init();
$role = strtoupper($role);
if (!\array_key_exists($role, $this->permissions)) {
return false;
}
return \array_key_exists($permission, $this->permissions[$role]) ? $this->permissions[$role][$permission] : false;
}
public function hasRolePermission(User $user, string $permission): bool
{
$this->init();
foreach ($user->getRoles() as $role) {
if ($this->hasPermission($role, $permission)) {
return true;
}
}
return false;
}
/**
* Only permissions which were registered through the Symfony configuration stack will be returned here.
*
* @return array<string>
*/
public function getPermissions(): array
{
$this->init();
return array_keys($this->permissionNames);
}
}