SuiteCRM-Core/core/backend/Authentication/Controller/SecurityController.php
Clemente Raposo bb7074b86b Symfony 6.4 - Re-setup Security Controller
- Use attributes instead of annotations
- Adjust to new session changes
- Adjust to new symfony setup

[Legacy] Re-setup Security Controller

- Add method to check if user is enabled
2024-08-21 18:06:15 +01:00

206 lines
7.2 KiB
PHP

<?php
/**
* SuiteCRM is a customer relationship management program developed by SalesAgility Ltd.
* Copyright (C) 2021 SalesAgility Ltd.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SALESAGILITY, SALESAGILITY DISCLAIMS THE
* WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* In accordance with Section 7(b) of the GNU Affero General Public License
* version 3, these Appropriate Legal Notices must retain the display of the
* "Supercharged by SuiteCRM" logo. If the display of the logos is not reasonably
* feasible for technical reasons, the Appropriate Legal Notices must display
* the words "Supercharged by SuiteCRM".
*/
namespace App\Authentication\Controller;
use App\Authentication\LegacyHandler\Authentication;
use App\Module\Users\Entity\User;
use RuntimeException;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Bundle\SecurityBundle\Security;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Core\User\UserInterface;
use Symfony\Component\Security\Http\Attribute\CurrentUser;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
/**
* Class SecurityController
* @package App\Controller
*/
class SecurityController extends AbstractController
{
/**
* @var Authentication
*/
private $authentication;
/**
* @var RequestStack
*/
private $requestStack;
/**
* SecurityController constructor.
* @param Authentication $authentication
* @param RequestStack $requestStack
*/
public function __construct(Authentication $authentication, RequestStack $requestStack)
{
$this->authentication = $authentication;
$this->requestStack = $requestStack;
}
#[Route('/login', name: 'app_login', methods: ["GET", "POST"])]
public function login(AuthenticationUtils $authenticationUtils, #[CurrentUser] ?User $user): JsonResponse
{
$error = $authenticationUtils->getLastAuthenticationError();
$isAppInstalled = $this->authentication->getAppInstallStatus();
$isAppInstallerLocked = $this->authentication->getAppInstallerLockStatus();
$appStatus = [
'installed' => $isAppInstalled,
'locked' => $isAppInstallerLocked
];
if ($error) {
return $this->json([
'active' => false,
'message' => 'missing credentials'
], Response::HTTP_UNAUTHORIZED);
}
if (null === $user) {
return $this->json([
'active' => false,
'message' => 'missing credentials',
], Response::HTTP_UNAUTHORIZED);
}
$data = $this->getResponseData($user, $appStatus);
$needsRedirect = $this->authentication->needsRedirect($user);
if (!empty($needsRedirect)) {
$data['redirect'] = $needsRedirect;
}
$data['user'] = $user->getUserIdentifier();
return $this->json($data, Response::HTTP_OK);
}
#[Route('/logout', name: 'app_logout', methods: ["GET", "POST"])]
public function logout(): void
{
throw new RuntimeException('This will be intercepted by the logout key');
}
#[Route('/session-status', name: 'app_session_status', methods: ["GET"])]
public function sessionStatus(Security $security): JsonResponse
{
$isAppInstalled = $this->authentication->getAppInstallStatus();
$isAppInstallerLocked = $this->authentication->getAppInstallerLockStatus();
$appStatus = [
'installed' => $isAppInstalled,
'locked' => $isAppInstallerLocked
];
if (!$isAppInstalled) {
$response = new JsonResponse(['appStatus' => $appStatus], Response::HTTP_OK);
$response->headers->clearCookie('XSRF-TOKEN');
$this->requestStack->getSession()->invalidate();
$this->requestStack->getSession()->start();
return $response;
}
$isActive = $this->authentication->checkSession();
if ($isActive !== true) {
$response = new JsonResponse(['active' => false, 'appStatus' => $appStatus], Response::HTTP_OK);
$this->requestStack->getSession()->invalidate();
$this->requestStack->getSession()->start();
$this->authentication->initLegacySystemSession();
return $response;
}
$user = $security->getUser();
if ($user === null) {
$response = new JsonResponse(['active' => false, 'appStatus' => $appStatus], Response::HTTP_OK);
$this->requestStack->getSession()->invalidate();
$this->requestStack->getSession()->start();
return $response;
}
$isUserActive = $this->authentication->isUserActive();
if ($isUserActive !== true) {
$response = new JsonResponse(['active' => false, 'appStatus' => $appStatus], Response::HTTP_OK);
$this->requestStack->getSession()->invalidate();
$this->requestStack->getSession()->start();
return $response;
}
$data = $this->getResponseData($user, $appStatus);
return new JsonResponse($data, Response::HTTP_OK);
}
#[Route('/auth/login', name: 'native_auth_login', methods: ["GET", "POST"])]
public function nativeAuthLogin(AuthenticationUtils $authenticationUtils, #[CurrentUser] ?User $user): JsonResponse
{
return $this->login($authenticationUtils, $user);
}
#[Route('/auth/logout', name: 'native_auth_logout', methods: ["GET", "POST"])]
public function nativeAuthLogout(): void
{
$this->logout();
}
#[Route('/auth/session-status', name: 'native_auth_session_status', methods: ["GET"])]
public function nativeAuthSessionStatus(Security $security): JsonResponse
{
return $this->sessionStatus($security);
}
/**
* @param UserInterface $user
* @param array $appStatus
* @return array
*/
private function getResponseData(UserInterface $user, array $appStatus): array
{
$id = $user->getId();
$firstName = $user->getFirstName();
$lastName = $user->getLastName();
$userName = $user->getUsername();
return [
'appStatus' => $appStatus,
'active' => true,
'id' => $id,
'firstName' => $firstName,
'lastName' => $lastName,
'userName' => $userName
];
}
}