38 lines
1.0 KiB
PHP
38 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Controller;
|
|
|
|
use ApiPlatform\Api\IriConverterInterface;
|
|
use App\Entity\User;
|
|
use Exception;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
use Symfony\Component\Security\Http\Attribute\CurrentUser;
|
|
|
|
class SecurityController extends AbstractController
|
|
{
|
|
#[Route('/login', name: 'app_login', methods: ['GET', 'POST'])]
|
|
public function login(IriConverterInterface $iriConverter, #[CurrentUser] User $user = null): Response
|
|
{
|
|
if (!$user) {
|
|
return $this->json([
|
|
'error' => 'Invalid credentials'
|
|
], 401);
|
|
}
|
|
|
|
return new Response(null, 204, [
|
|
'Location' => $iriConverter->getIriFromResource($user),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
#[Route('/logout', name: 'app_logout', methods: ['GET'])]
|
|
public function logout(): void
|
|
{
|
|
throw new Exception('This method can be blank.');
|
|
}
|
|
}
|