Scripts
PingGateway uses Groovy 4 for scripting. For more information, refer to the Groovy Language Documentation.
Groovy scripts used in the PingGateway configuration are restricted to the UTF-8 character set.
Use Groovy scripts with the following object types:
-
ScriptableFilter to customize the flow of requests and responses.
-
ScriptableHandler to customize response creation.
-
ScriptableThrottlingPolicy to customize throttling rates.
-
ScriptableAccessTokenResolver to customize resolution and validation of OAuth 2.0 access tokens.
-
ScriptableResourceAccess
in OAuth2ResourceServerFilter to customize the list of OAuth 2.0 scopes required in an OAuth 2.0 access token. -
ScriptableIdentityAssertionPlugin with an IdentityAssertionHandler for local processing.
-
ScriptableIdentityAssertionPluginTechPreview with an IdentityAssertionHandlerTechPreview for local authentication or authorization.
When PingGateway accesses a script, it compiles and then caches the script. PingGateway uses the cached version until the script is changed.
After you update a script used in a route, wait at least one second before processing a request. The Groovy interpreter needs time to detect and take the update into account.
When writing scripts or Java extensions that use the Promise API, avoid the
blocking methods Instead, consider using
|
Usage
{
"name": string,
"type": scriptable object type,
"config": {
"type": string,
"file": configuration expression<string>, // Use either "file"
"source": [ string, ... ], // or "source", but not both.
"args": map or configuration expression<map>,
"clientHandler": Handler reference
}
}
Properties
"type"
: string, required-
The Internet media type (formerly MIME type) of the script, "application/x-groovy" for Groovy
"file"
: configuration expression<string>, required ifsource
is not used-
Path to the file containing the script; mutually exclusive with
source
. Specifyfile
as follows:- For Groovy files from default packages
-
-
Place Groovy files in the base script directory,
$HOME/.openig/scripts/groovy
(on Windows,%appdata%\OpenIG\scripts\groovy
). For example, placemyScript.groovy
from the default package in$HOME/.openig/scripts/groovy
. -
Specify
file
with the filename of the Groovy file. For the previous example, specify:"config": { "type": "application/x-groovy", "file": "myScript.groovy" }
-
- For Groovy files from non-default packages
-
-
Place Groovy files in a subdirectory of the base script directory that corresponds to the package name. For example, place
myScript.groovy
from the packagecom.example.groovy
in$HOME/.openig/scripts/groovy/com/example/groovy
. -
Specify
file
with the relative path from the base script directory and the filename. For the previous example, specify:"config": { "type": "application/x-groovy", "file": "com/example/groovy/myScript.groovy" }
-
PingGateway runs scripts from an absolute path, or from a path relative to the base script directory. Routes that refer to scripts otherwise, such as through a URL, fail to deploy.
Do one of the following to prevent errors:
-
Move scripts to the base script directory or the correct subdirectory of the base script directory.
-
Refer to scripts through an absolute path.
"source"
: array of <strings>, required iffile
is not used-
The script as one or more strings; mutually exclusive with
file
.The following example shows the source of a script as an array of strings:
"source": [ "Response response = new Response(Status.OK)", "response.entity = 'foo'", "return response" ]
"args"
: map or configuration expression<map>, optional-
A map of one or more data pairs with the format
Map<String, String>
, where:-
The key is the name of a configuration parameter in a script
-
The value is a string to use in the script, or a configuration expression that evaluates to the string
The following formats are allowed:
{ "args": { "string": "configuration expression<string>", ... } }
{ "args": "configuration expression<map>" }
In the following example, the property is a map whose values are scalars, arrays, and objects:
{ "args": { "title": "Coffee time", "status": 418, "reason": [ "Not Acceptable", "I'm a teapot", "Acceptable" ], "names": { "1": "koffie", "2": "kafe", "3": "cafe", "4": "kafo" } } }
-
A script can access the
args
parameters in the same way as other global objects. The following example sets the response status toI’m a teapot
:response.status = Status.valueOf(418, reason[1])
For information about the 418 status coderefer to RFC 7168: 418 I’m a Teapot.
-
The following example configures arguments as strings and numbers for a ScriptableThrottlingPolicy:
"args": { "status": "gold", "rate": 6, "duration": "10 seconds" }
The following lines set the throttling rate to 6 requests each 10 seconds when the response status is
gold
:if (attributes.rate.status == status) { return new ThrottlingRate(rate, duration) }
-
The following example configures arguments that reference a SampleFilter defined in the heap:
{ "heap": [ { "name": "SampleFilter", "type": "SampleFilter", "config": { "name": "X-Greeting", "value": "Hello world" } } ] }
In the following example, the property is a map whose value is an expression to pass SampleFilter to the script:
{ "args": { "filter": "${heap['SampleFilter']}" } }
The script can then reference SampleFilter as
filter
.
-
"clientHandler"
: ClientHandler reference, optional-
A Handler for making outbound HTTP requests to third-party services. In a script,
clientHandler
is wrapped within the global objecthttp
.Default: The default ClientHandler.
Available objects
The following global objects are available to scripts:
- Any parameters passed as args
-
You can use the configuration to pass parameters to the script by specifying an args object.
The args object is a map whose values can be scalars, arrays, and objects. The args object can reference objects defined in the heap by using expressions, for example,
"${heap['ObjectName']}"
.The values for script arguments can be defined as configuration expressions, and evaluated at configuration time.
Script arguments cannot refer to
context
andrequest
, butcontext
andrequest
variables can be accessed directly within scripts.Take care when naming keys in the args object. If you reuse the name of another global object, cause the script to fail and PingGateway to return a response with HTTP status code 500 Internal Server Error.
- All heap objects
-
The heap object configuration, described in Heap objects.
openig
-
An implicit object that provides access to the environment when expressions are evaluated.
attributes
-
The attributes object provides access to a context map of arbitrary attributes, which is a mechanism for transferring transient state between components when processing a single request.
Use
session
for maintaining state between successive requests from the same logical client.
builder
-
For ScriptableJwtValidatorCustomizer only.
Used by the ScriptableJwtValidatorCustomizer and JwtValidationFilter to create constraints to test JWT claims and sub-claims. The purpose of the ScriptableJwtValidatorCustomizer is to enrich the
builder
object.For information about methods to enrich the
builder
instance, refer to JwtValidator.Builder.
constraints
-
The constraints object, all its static methods,
constant(String)
, andclaim(String)
.Use this object for JWT validation with the
customizer
property of JwtValidationFilter.claim(String)
must be followed by one of the following methods:asString()
,asInteger()
,asLong()
,asDouble()
,asBoolean()
,as(yourCustomJsonValueTransformer)
context
-
The processing context.
This context is the leaf of a chain of contexts. It provides access to other Context types, such as SessionContext, AttributesContext, and ClientContext, through the
context.asContext(ContextClass.class)
method.
contexts
-
a map<string, context> object. For information, refer to Contexts.
request
-
The HTTP request.
The
request.form
method, used in scripts to read or set query and form parameters, is deprecated. Use the following replacement settings:-
Request.getQueryParams()
to read query parameters -
Entity.getForm()
to read form parameters -
Entity.setForm()
to set form parameters
For more information, refer to the Deprecated section of the Release Notes.
-
globals
-
This object is a Map that holds variables that persist across successive invocations.
http
-
An embedded client for making outbound HTTP requests, which is an org.forgerock.http.Client.
If a
"clientHandler"
is set in the configuration, then that Handler is used. Otherwise, the default ClientHandler configuration is used.For information, refer to Handlers.
logger
-
The logger object provides access to a unique SLF4J logger instance for scripts, where the logger instance is named with the script name.
For information about logging for scripts, refer to Logging in scripts.
next
-
The object named
next
refers to the next element in the chain, which can be the following filter or the terminal handler. If the next object in the chain is a filter, PingGateway wraps it in a handler.
session
-
The session object provides access to the session context, which is a mechanism for maintaining state when processing a successive requests from the same logical client or end user.
Use
attributes
for transferring transient state between components when processing a single request.
Imported classes
The following classes are imported automatically for Groovy scripts:
-
org.forgerock.http.protocol.*
-
org.forgerock.json.JsonValue, and all its static methods, including
json(Object)
,array(Object…)
,object(fields…)
, andfield(String, Object)
-
org.forgerock.openig.util.JsonValues and all its static methods.
-
org.forgerock.openig.tools.jwt.validation.Constraints and all its static methods.
More information
-
ScriptableFilter, org.forgerock.openig.filter.ScriptableFilter, and org.forgerock.http.Filter
-
ScriptableHandler, org.forgerock.openig.handler.ScriptableHandler, and org.forgerock.http.Handler
-
ScriptableThrottlingPolicy, org.forgerock.openig.filter.throttling.ScriptableThrottlingPolicy.Heaplet, and org.forgerock.openig.filter.throttling.ThrottlingPolicy
-
ScriptableResourceAccess
in OAuth2ResourceServerFilter, org.forgerock.openig.filter.oauth2.ScriptableResourceAccess, and org.forgerock.http.oauth2.ResourceAccess -
ScriptableAccessTokenResolver
in OAuth2ResourceServerFilter, org.forgerock.openig.filter.oauth2.ScriptableAccessTokenResolver, and org.forgerock.http.oauth2.AccessTokenResolver -
ScriptableJwtValidatorCustomizer
in JwtValidationFilter and org.forgerock.openig.filter.jwt.ScriptableJwtValidatorCustomizer