Usually, one of the first thing you want to do when securing APIs is to only allow specifics calls to them. For example, you want to make sure that you can only read to specific URLs, or can call PUT but not POST to other ones.
OpenIG, the Open Identity Gateway, has a everything you need to do this by default using a DispatchHandler, in which you express the methods that you want to allow as a condition.
The configuration for the coming OpenIG 3.1 version, would look like this:
{ "name": "MethodFilterHandler", "type": "DispatchHandler", "config": { "bindings": [ { "handler": "ClientHandler", "condition": "${exchange.request.method == 'GET' or exchange.request.method == 'HEAD'}", "baseURI": "http://www.example.com:8089" }, { "handler": { "type": "StaticResponseHandler", "config": { "status": 405, "reason": "Method is not allowed", "headers": { "Allow": [ "GET", "HEAD" ] } } } }] } }
This is pretty straightforward, but if you want to allow another method, you need to update the both the condition and the rejection headers. And when you have multiple APIs with different methods that you want to allow or deny, you need to repeat this block of configuration or make a much complex condition expression.
But there is a simpler way, leveraging the scripting capabilities of OpenIG.
Create a file under your .openig/scripts/groovy named MethodFilter.groovy with the following content:
/** * The contents of this file are subject to the terms of the Common Development and * Distribution License 1.0 (the License). You may not use this file except in compliance with the * License. * Copyright 2014 ForgeRock AS. * Author: Ludovic Poitou */ import org.forgerock.openig.http.Response /* * Filters requests that have the allowedmethods supplied using a * configuration like the following: * * { * "name": "MethodFilter", * "type": "ScriptableFilter", * "config": { * "type": "application/x-groovy", * "file": "MethodFilter.groovy", * "args": { * "allowedmethods": [ "GET", "HEAD" ] * } * } * } */ if (allowedmethods.contains(exchange.request.method)) { // Call the next handler. This returns when the request has been handled. next.handle(exchange) } else { exchange.response = new Response() exchange.response.status = 405 exchange.response.reason = "Method not allowed: (" + exchange.request.method +")" exchange.response.headers.addAll("Allow", allowedmethods) }
And now in all the places where you need to filter specific methods for an API, just add a filter to the Chain as below:
{ "heap": [ { "name": "MethodFilterHandler", "type": "Chain", "config": { "filters": [ { "type": "ScriptableFilter", "config": { "type": "application/x-groovy", "file": "MethodFilter.groovy", "args": { "allowedmethods": [ "GET", "HEAD" ] } } } ], "handler": "ClientHandler" } } ], "handler": "MethodFilterHandler", "baseURI": "http://www.example.com:8089" }
This solution allows to filter different methods for different APIs with a simple configuration element, the “allowedmethods” field, for greater reusability.
Filed under: Identity Gateway Tagged: access control, API, ForgeRock, methods, openig, opensource, Tips
