mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 18:44:46 +02:00

Co-authored-by: Lance Pioch <git@lance.sh> Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com>
132 lines
3.6 KiB
PHP
132 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\RolePermissionModels;
|
|
use App\Enums\RolePermissionPrefixes;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Spatie\Permission\Models\Role as BaseRole;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property string $guard_name
|
|
* @property \Illuminate\Database\Eloquent\Collection|\Spatie\Permission\Models\Permission[] $permissions
|
|
* @property int|null $permissions_count
|
|
* @property \Illuminate\Database\Eloquent\Collection|\App\Models\User[] $users
|
|
* @property int|null $users_count
|
|
*/
|
|
class Role extends BaseRole
|
|
{
|
|
use HasFactory;
|
|
|
|
public const RESOURCE_NAME = 'role';
|
|
|
|
public const ROOT_ADMIN = 'Root Admin';
|
|
|
|
public const DEFAULT_GUARD_NAME = 'web';
|
|
|
|
public const MODEL_SPECIFIC_PERMISSIONS = [
|
|
'egg' => [
|
|
'import',
|
|
'export',
|
|
],
|
|
];
|
|
|
|
public const SPECIAL_PERMISSIONS = [
|
|
'settings' => [
|
|
'view',
|
|
'update',
|
|
],
|
|
'health' => [
|
|
'view',
|
|
],
|
|
'activity' => [
|
|
'seeIps',
|
|
],
|
|
];
|
|
|
|
/** @var array<string, array<string>> */
|
|
protected static array $customPermissions = [];
|
|
|
|
/** @param array<string, array<string>> $customPermissions */
|
|
public static function registerCustomPermissions(array $customPermissions): void
|
|
{
|
|
static::$customPermissions = [
|
|
...static::$customPermissions,
|
|
...$customPermissions,
|
|
];
|
|
}
|
|
|
|
public static function registerCustomDefaultPermissions(string $model): void
|
|
{
|
|
$permissions = [];
|
|
|
|
foreach (RolePermissionPrefixes::cases() as $prefix) {
|
|
$permissions[] = $prefix->value;
|
|
}
|
|
|
|
static::registerCustomPermissions([
|
|
$model => $permissions,
|
|
]);
|
|
}
|
|
|
|
/** @return array<string, array<string>> */
|
|
public static function getPermissionList(): array
|
|
{
|
|
$allPermissions = [];
|
|
|
|
// Standard permissions for our default model
|
|
foreach (RolePermissionModels::cases() as $model) {
|
|
$allPermissions[$model->value] ??= [];
|
|
|
|
foreach (RolePermissionPrefixes::cases() as $prefix) {
|
|
array_push($allPermissions[$model->value], $prefix->value);
|
|
}
|
|
|
|
if (array_key_exists($model->value, Role::MODEL_SPECIFIC_PERMISSIONS)) {
|
|
foreach (static::MODEL_SPECIFIC_PERMISSIONS[$model->value] as $permission) {
|
|
array_push($allPermissions[$model->value], $permission);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Special permissions for our default models
|
|
foreach (static::SPECIAL_PERMISSIONS as $model => $prefixes) {
|
|
$allPermissions[$model] ??= [];
|
|
|
|
foreach ($prefixes as $prefix) {
|
|
array_push($allPermissions[$model], $prefix);
|
|
}
|
|
}
|
|
|
|
// Custom third party permissions
|
|
foreach (static::$customPermissions as $model => $prefixes) {
|
|
$allPermissions[$model] ??= [];
|
|
|
|
foreach ($prefixes as $prefix) {
|
|
array_push($allPermissions[$model], $prefix);
|
|
}
|
|
}
|
|
|
|
foreach ($allPermissions as $model => $permissions) {
|
|
$allPermissions[$model] = array_unique($permissions);
|
|
}
|
|
|
|
return $allPermissions;
|
|
}
|
|
|
|
public function isRootAdmin(): bool
|
|
{
|
|
return $this->name === self::ROOT_ADMIN;
|
|
}
|
|
|
|
public static function getRootAdmin(): self
|
|
{
|
|
/** @var self $role */
|
|
$role = self::findOrCreate(self::ROOT_ADMIN, self::DEFAULT_GUARD_NAME);
|
|
|
|
return $role;
|
|
}
|
|
}
|