<?php
namespace App\Controller;
use KnpU\OAuth2ClientBundle\Client\ClientRegistry;
use Stevenmaguire\OAuth2\Client\Provider\Keycloak;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Symfony\Component\Routing\Annotation\Route;
class KeycloackController extends AbstractController
{
/**
* @Route("/connect", name="connect_start")
*/
public function connectAction(ClientRegistry $clientRegistry)
{
return $clientRegistry
->getClient('keycloak')
->redirect();
}
/**
* @Route("/connect/check", name="connect_check")
*/
public function connectCheckAction(Request $request, SessionInterface $session)
{
$authServerUrl = $this->getParameter('AUTH_SERVER_URL');
$realm = $this->getParameter('REALM');
$clientId = $this->getParameter('CLIENT_ID');
$clientSecret = $this->getParameter('CLIENT_SECRET');
$redirectUri = 'connect_check';
$provider = new Keycloak([
'authServerUrl' => $authServerUrl,
'realm' => $realm,
'clientId' => $clientId,
'clientSecret' => $clientSecret,
'redirectUri' => $redirectUri
]);
/*try {
$token = $provider->getAccessToken('authorization_code', [
'code' => $_GET['code']
]);
dd($token);
} catch (\Exception $e) {
exit('Failed to get access token: ' . $e->getMessage());
}*/
// Try to get an access token (using the authorization coe grant)
session_start();
if (!isset($_GET['code'])) {
// If we don't have an authorization code then get one
$authUrl = $provider->getAuthorizationUrl();
$_SESSION['oauth2state'] = $provider->getState();
header('Location: '.$authUrl);
exit;
// Check given state against previously stored one to mitigate CSRF attack
} elseif (empty($_GET['state']) || ($_SESSION['oauth2state'] && ($_GET['state'] !== $_SESSION['oauth2state']))) {
unset($_SESSION['oauth2state']);
exit('Invalid state, make sure HTTP sessions are enabled.');
} else {
// Try to get an access token (using the authorization coe grant)
try {
$token = $provider->getAccessToken('authorization_code', [
'code' => $_GET['code']
]);
} catch (Exception $e) {
exit('Failed to get access token: '.$e->getMessage());
}
// Optional: Now you have a token you can look up a users profile data
try {
// We got an access token, let's now get the user's details
$user = $provider->getResourceOwner($token);
// Use these details to create a new profile
printf('Hello %s!', $user->getName());
} catch (Exception $e) {
exit('Failed to get resource owner: '.$e->getMessage());
}
// Use this to interact with an API on the users behalf
echo $token->getToken();
}
}
/**
* @Route("/logout", name="logout")
*/
public function logoutAction()
{
$provider = new Keycloak([
'authServerUrl' => 'https://authentication.qotico-telecom.fr/auth',
'realm' => 'qotico-gp-sandbox',
'clientId' => 'sicom-gp-front',
'clientSecret' => '4PEhz0D4NV08PBmUGu34ZKInFkGdgq4f',
'redirectUri' => 'connect_check',
]);
$url = $provider->getLogoutUrl();
dump($url);
exit();
}
}