mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 07:46:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1018 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1018 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Services\Servers;
 | 
						|
 | 
						|
use App\Models\User;
 | 
						|
use App\Models\Server;
 | 
						|
 | 
						|
class GetUserPermissionsService
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Returns the server specific permissions that a user has. This checks
 | 
						|
     * if they are an admin or a subuser for the server. If no permissions are
 | 
						|
     * found, an empty array is returned.
 | 
						|
     */
 | 
						|
    public function handle(Server $server, User $user): array
 | 
						|
    {
 | 
						|
        if ($user->root_admin || $user->id === $server->owner_id) {
 | 
						|
            $permissions = ['*'];
 | 
						|
 | 
						|
            if ($user->root_admin) {
 | 
						|
                $permissions[] = 'admin.websocket.errors';
 | 
						|
                $permissions[] = 'admin.websocket.install';
 | 
						|
                $permissions[] = 'admin.websocket.transfer';
 | 
						|
            }
 | 
						|
 | 
						|
            return $permissions;
 | 
						|
        }
 | 
						|
 | 
						|
        /** @var \App\Models\Subuser|null $subuserPermissions */
 | 
						|
        $subuserPermissions = $server->subusers()->where('user_id', $user->id)->first();
 | 
						|
 | 
						|
        return $subuserPermissions ? $subuserPermissions->permissions : [];
 | 
						|
    }
 | 
						|
}
 |