Level: Beginner Technologies: SpringBoot Summary: SpringBoot REST Service Protected Using Keycloak Authorization Services Target Product: Keycloak Source: https://github.com/keycloak/Keycloak-quickstarts
The app-authz-rest-springboot quickstart demonstrates how to protect a SpringBoot REST service using Keycloak Authorization Services.
This quickstart tries to focus on the authorization features provided by Keycloak Authorization Services, where resources are protected by a set of permissions and policies defined in Keycloak and access to these resources are enforced by a policy enforcer(PEP) that intercepts every single request sent to the application to check whether or not access should be granted.
In this application, there are three paths protected by specific permissions in Keycloak:
-
/api/{resource}, where access to this resource is based on the evaluation of permissions associated with a resource Default Resource in Keycloak. Basically, any user with a role user is allowed to access this resource. Examples of resource that match this path pattern are: "/api/resourcea" and "/api/resourceb".
-
/api/premium, where access to this resource is based on the evaluation of permissions associated with a resource Premium Resource in Keycloak. Basically, only users with a role user-premium is allowed to access this resource.
-
/api/admin, where access to this path is based on the evaluation of permissions associated with a resource Admin Resource in Keycloak. Basically, any user can access this resource as long as a specific request parameter is set.
You can use two distinct users to access this application:
| Username | Password | Roles |
|---|---|---|
| alice | alice | user |
| jdoe | jdoe | user, user-premium |
All you need to build this project is Java 8.0 (Java SDK 1.8) or later and Maven 3.1.1 or later.
Prior to running the quickstart you need to create a realm in Keycloak with all the necessary configuration to deploy and run the quickstart.
The following steps show how to create the realm required for this quickstart:
- Open the Keycloak Admin Console
- In the top left corner dropdown menu that is titled
Master, clickAdd Realm. If you are logged in to the master realm this dropdown menu lists all the realms created. - For this quickstart we are not going to manually create the realm, but import all configuration from a JSON file. Click on
Select Fileand import the config/quickstart-realm. - Click
Create
The steps above will result on a new spring-boot-quickstart realm.
Make sure your Keycloak server is running on http://localhost:8180/. For that, you can start the server using the command below:
cd {KEYCLOAK_HOME}/bin
./standalone.sh -Djboss.socket.binding.port-offset=100
If your server is up and running, perform the following steps to start the application:
-
Open a terminal and navigate to the root directory of this quickstart.
-
The following shows the command to run the application:
mvn spring-boot:run
First thing, your client needs to obtain an OAuth2 access token from a Keycloak server for user alice. You can use the same command to obtain tokens
on behalf of user jdoe, just make sure to change both username and password request parameters.
export access_token=$(\
curl -X POST http://localhost:8180/auth/realms/spring-boot-quickstart/protocol/openid-connect/token \
-H 'Authorization: Basic YXBwLWF1dGh6LXJlc3Qtc3ByaW5nYm9vdDpzZWNyZXQ=' \
-H 'content-type: application/x-www-form-urlencoded' \
-d 'username=alice&password=alice&grant_type=password' | jq --raw-output '.access_token' \
)The most simple way to invoke resources protected by a policy enforcer is sending an OAuth2 Access Token. If you successfully obtained an OAuth2 Access Token in the previous section, you can access resources in this application as follows:
curl -v -X GET \
http://localhost:8080/api/resourcea \
-H "Authorization: Bearer "$access_tokenUser alice should be able to access /api/resourcea and /api/resourceb and you should get Access Granted as a response.
When using a regular access token to access protected resources, the policy enforcer will query the Keycloak server to check whether or not the request is allowed to access a resource.
Another approach to access resources protected by a policy enforcer is using a RPT as a bearer token, instead of a regular access token. The RPT is an access token with all permissions granted by the server, basically, an access token containing all permissions granted by the server.
To obtain an RPT, you must first exchange an OAuth2 Access Token for a RPT by invoking the token endpoint at the Keycloak server:
curl -v -X POST \
http://localhost:8180/auth/realms/spring-boot-quickstart/protocol/openid-connect/token \
-H "Authorization: Bearer "$access_token \
--data "grant_type=urn:ietf:params:oauth:grant-type:uma-ticket" \
--data "audience=app-authz-rest-springboot" \
--data "permission=Default Resource"The command above is trying to obtain permissions from the server in the format of a RPT. Note that the request is specifying the resource we want
to obtain permissions, in this case, Default Resource.
As an alternative, you can also obtain permissions for any resource protected by your application. For that, execute the command below:
curl -v -X POST \
http://localhost:8180/auth/realms/spring-boot-quickstart/protocol/openid-connect/token \
-H "Authorization: Bearer "$access_token \
--data "grant_type=urn:ietf:params:oauth:grant-type:uma-ticket" \
--data "audience=app-authz-rest-springboot"After executing any of the commands above, you should get a response similar to the following:
{
"access_token": "${rpt}",
}To finally invoke the resource protected by the application, replace the ${rpt} variable below with the value of the access_token claim from the response above and execute the following command:
curl -X GET \
http://localhost:8080/api/resourcea \
-H "Authorization: Bearer ${rpt}"User alice should be able to access /api/resourcea and you should get Access Granted as a response.
When trying to access the path /api/admin from this application, you need to set a specific parameter in the request as follows:
curl -v -X GET \
http://localhost:8080/api/admin?parameter-a=claim-value \
-H "Authorization: Bearer "$access_tokenIf you don't set the request parameter parameter-a with that value the request will be denied. The reason for that is that this particular path
is defined as follows in src/main/resources/application.properties:
keycloak.policy-enforcer-config.paths[0].path=/api/admin
keycloak.policy-enforcer-config.paths[0].claimInformationPointConfig.claims[some-claim]={request.parameter['parameter-a']}As you can see, we are using a claim-information-point definition to set which claims we want to send to Keycloak in order to evaluate permissions
for this particular path. On the Keycloak side there is a specific JavaScript Policy called Claim-Based Policy that checks whether or not the some-claim is set
in the evaluation context.
- You can try to access
/api/premiumas useralice. The server should deny the request becausealiceis not granted with the required role. - You can follow the same steps to check behavior when accessing the same resources with user
jdoe. This user should be allowed to access/api/premium. - Try changing the permissions and policies to check how they affect access to the protected resources.
- Try playing with the
Claim-Based Policyor create new JavaScript policies to understand how to use thePolicy Evaluation API.
- Make sure you have an Keycloak server running with an admin user in the
masterrealm or use the provided docker image - Be sure to set the
TestHelper.keycloakBaseUrlin thecreateArchivemethod (default URL is localhost:8180/auth). - Set accordingly the correct url for the
keycloak.auth-server-urlin the test application.properties. - Run
mvn test -Pspring-boot