glance-project / cern-authentication
Library to abstract the use of CERN Authentication API.
Requires
- php: ^8.2
- guzzlehttp/guzzle: ^6.0 || ^7.0
- nyholm/psr7: ^1.3
- psr/http-client: ^1.0
- psr/http-factory: ^1.0
- psr/http-message: ^1.0
Requires (Dev)
- dq5studios/psalm-junit: ^2.0
- phpunit/phpunit: ^8.5
- squizlabs/php_codesniffer: ^3.5
- vimeo/psalm: ^4.1
This package is auto-updated.
Last update: 2024-10-31 08:01:23 UTC
README
This is a library created to abstract the process of using the CERN Authentication, a OpenID server implemented with Keycloak
This documentation does not aim to teach the fundamentals of OpenID, OAuth and Keycloak.
Installation
Install using Composer.
composer require glance-project/cern-authentication
Getting started
To use this library, you will need to have an application registered on Application Portal. If you do not know what this mean, refer to the CERN Authorization Service documentation
With your application registered, you will need the Client ID. Depending on the authentication flow, you will also need the Client Secret and a valid Redirect URL.
KeycloakProvider
KeycloakProvider
is the main class of the library. You will need it to
perform any type of authentication.
KeycloakProvider::create()
Creates a KeycloakProvider
object.
<?php
use Glance\CernAuthentication\KeycloakProvider;
$keycloakProvider = KeycloakProvider::create();
KeycloakProvider::create()
optionally accepts an $options
array, which
overwrites the default configuration:
$defaultOptions = [
"authenticationUri" => "https://auth.cern.ch/auth/realms/cern/protocol/openid-connect",
"apiAccessUri" => "https://auth.cern.ch/auth/realms/cern/api-access/token",
"client" => new \GuzzleHttp\Client(),
"serverRequestFactory" => new Nyholm\Psr7\Factory\Psr17Factory(),
"uriFactory" => new Nyholm\Psr7\Factory\Psr17Factory(),
"streamFactory" => new Nyholm\Psr7\Factory\Psr17Factory(),
];
Only pass the values to be changed. For example, if you want to use the QA environment from CERN Authentication:
<?php
use Glance\CernAuthentication\KeycloakProvider;
$keycloakProvider = KeycloakProvider::create([
"authenticationUri" => "https://keycloak-qa.cern.ch/auth/realms/cern/protocol/openid-connect",
"apiAccessUri" => "https://keycloak-qa.cern.ch/auth/realms/cern/api-access/token",
]);
**Note**
{: .panel-heading}
It is advised to use `createForProduction()` and `createForDevelopment()` instead.
KeycloakProvider::createForProduction()
Similar to KeycloakProvider::create()
but, with URIs set to production by default.
Example:
<?php
use Glance\CernAuthentication\KeycloakProvider;
$inProduction = getenv("ENVIRONMENT") === "PRODUCTION"; // true or false
$keycloakProvider = $inProduction ?
KeycloakProvider::createForProduction() :
KeycloakProvider::createForDevelopment();
KeycloakProvider::createForDevelopment()
Similar to KeycloakProvider::create()
but, with URIs set to QA by default.
KeycloakProvider::apiAccess()
You can use API Access to get access tokens to API which also use the CERN Authentication.
According to the CERN Authorization Service documentation:
API Access is a non-standard token endpoint of the CERN Authentication server. OpenID Connect applications with Client Credentials Grant (a.k.a. Keycloak service accounts) can use this endpoint to get a valid API token for any other application, by providing a valid audience. The roles inside the token are the ones assigned to the Application Identity that got the token, defined in the target application.
To use this type of authentication, you will need an application with Client ID, Client Secret and be able to perform the client credentials flow (mark the option My application will need to get tokens using its own client ID and secret on Application Portal > SSO Registration).
The most common use of this approach is to get tokens to be used on other CERN
APIs, for example the Authorization Service API which includes endpoints for
dealing with groups. On the next example, we can get an access token to be used
while calling the Authorization Service API (Audience Client ID:
authorization-service-api
).
<?php
$clientId = getenv("MY_APP_CLIENT_ID");
$clientSecret = getenv("MY_APP_CLIENT_SECRET");
$audienceClientId = "authorization-service-api";
$provider = KeycloakProvider::create();
$result = $provider->apiAccess($clientId, $clientSecret, $audienceClientId);
echo $result->accessToken(); // eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwi...
KeycloakProvider::introspectToken()
The CERN Authorization Service provides the possibility to check the validity of an access token. This will check for if the token is not defrauded and if it is not expired.
For token introspection, you will need the access token to be checked, together with Client ID and Client Secret of the application.
<?php
$clientId = getenv("MY_APP_CLIENT_ID");
$clientSecret = getenv("MY_APP_CLIENT_SECRET");
$token = "eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwi...";
$provider = KeycloakProvider::create();
$user = $provider->introspectToken($token, $clientId, $clientSecret);
$user->personId(); // 837034
$user->username(); // mgunters
$user->email(); // mario.simao@cern.ch
$user->fullName(); // Mario Gunter Simao
$user->firstName(); // Mario
$user->lastName(); // Gunter Simao
$user->roles(); // ["admin", "test_role"]