Files
Leantime/app/Domain/Auth/Models/Roles.php

62 lines
1.4 KiB
PHP

<?php
namespace Leantime\Domain\Auth\Models;
use Illuminate\Contracts\Container\BindingResolutionException;
use Leantime\Core\Events\DispatchesEvents;
/**
* @TODO: Role names should be converted into an enum.
*/
class Roles
{
use DispatchesEvents;
public static string $readonly = 'readonly';
public static string $commenter = 'commenter';
public static string $editor = 'editor';
public static string $manager = 'manager';
public static string $admin = 'admin';
public static string $owner = 'owner';
private static array $roleKeys = [
5 => 'readonly', // prev: none
10 => 'commenter', // prev: client
20 => 'editor', // prev: developer
30 => 'manager', // prev: clientmanager
40 => 'admin', // prev: manager
50 => 'owner', // prev: admin
];
/**
* @throws BindingResolutionException
*/
private static function getFilteredRoles(): mixed
{
return self::dispatch_filter('available_roles', self::$roleKeys);
}
/**
* @return false|mixed
*
* @throws BindingResolutionException
*/
public static function getRoleString(mixed $key): mixed
{
return self::getFilteredRoles()[$key] ?? false;
}
/**
* @throws BindingResolutionException
*/
public static function getRoles(): mixed
{
return self::getFilteredRoles();
}
}