src/Controller/v1/Profile/RolesController.php
<?php
declare(strict_types = 1);
/**
* /src/Controller/v1/Profile/RolesController.php
*
* @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com>
*/
namespace App\Controller\v1\Profile;
use App\Entity\User;
use App\Security\RolesService;
use OpenApi\Attributes as OA;
use OpenApi\Attributes\JsonContent;
use OpenApi\Attributes\Property;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Attribute\AsController;
use Symfony\Component\Routing\Attribute\Route;
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
use Symfony\Component\Security\Http\Attribute\IsGranted;
/**
* @package App\Controller\v1\Profile
* @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com>
*/
#[AsController]
class RolesController
{
public function __construct(
private readonly RolesService $rolesService,
) {
}
/**
* Endpoint action to get current user roles as an array.
*/
#[Route(
path: '/v1/profile/roles',
methods: [Request::METHOD_GET],
)]
#[IsGranted(AuthenticatedVoter::IS_AUTHENTICATED_FULLY)]
#[OA\Parameter(
name: 'Authorization',
description: 'Authorization header',
in: 'header',
example: 'Bearer {token}',
)]
#[OA\Response(
response: 200,
description: 'Logged in user roles',
content: new JsonContent(
type: 'array',
items: new OA\Items(type: 'string', example: 'ROLE_USER'),
example: ['ROLE_USER', 'ROLE_LOGGED'],
),
)]
#[OA\Response(
response: 401,
description: 'Invalid token',
content: new JsonContent(
properties: [
new Property(property: 'code', type: 'integer'),
new Property(property: 'message', type: 'string'),
],
type: 'object',
example: [
'Token not found' => "{code: 401, message: 'JWT Token not found'}",
'Expired token' => "{code: 401, message: 'Expired JWT Token'}",
],
),
)]
#[OA\Response(
response: 403,
description: 'Access denied',
content: new JsonContent(
properties: [
new Property(property: 'code', type: 'integer'),
new Property(property: 'message', type: 'string'),
],
type: 'object',
example: [
'Access denied' => "{code: 403, message: 'Access denied'}",
],
),
)]
#[OA\Tag(name: 'Profile')]
public function __invoke(User $loggedInUser): JsonResponse
{
return new JsonResponse($this->rolesService->getInheritedRoles($loggedInUser->getRoles()));
}
}