- Overview
- Types of Interception scripts in Jans server
- An example
- Implementation language - Jython
- Mandatory methods in any Custom script
- Configurable properties of a custom script
- Operations on custom scripts using jans-cli
- Client specific implementations
- FAQs and troubleshooting
Interception scripts (or custom scripts) allow you to define custom business logic for various features offered by Janssen's authorization server (or OpenID Provider) . Examples of customizations are - implementing a 2FA authentication method, consent gathering, client registration, adding business specific claims to ID token or Access token etc. Scripts can easily be upgraded and doesn't require forking the Jans Server code or re-building it.
Listed below, are custom scripts classified into various types, each of which represents a feature of the Jans server that can be extended as per the business need. Each script type is described by a java interface whose methods should be overridden to implement your business case.
- Person Authentication : Allows the definition of multi-step authentication workflows, including adaptive authentication - where the number of steps varies depending on the context.
- Consent Gathering : Allows exact customization of the authorization (or consent) process. By default, the OP will request authorization for each scope, and display the respective scope description.
- User Registration
- Update User
- Client Registration
- Dynamic scopes : Enables admin to generate scopes on the fly, for example by calling external APIs
- ID Generator
- Cache Refresh
- Session Management
- SCIM
- Inrospection
- Resource Owner Password Credentials
- UMA 2 RPT Authorization Policies
- UMA 2 Claims-Gathering
The example below is only meant to convey the concept, we will cover the details in later parts of the documentation.
Suppose, we are implementing an Openbanking Identity platform and we have to add business specific claims say openbanking_intent_id
to the ID token. The custom script which will help us accomplish our goal is of the type UpdateTokenType
where the modifyIdToken
method has to be implemented. A sample custom script with this business logic will be as stated below :
class UpdateToken(UpdateTokenType):
def __init__(self, currentTimeMillis):
self.currentTimeMillis = currentTimeMillis
def init(self, customScript, configurationAttributes):
< initialization code comes here >
return True
def destroy(self, configurationAttributes):
< clean up code comes here>
return True
def getApiVersion(self):
return <version number>
def modifyIdToken(self, jsonWebResponse, context):
# Step1: <get openbanking_intent_id from session >
sessionId = context.getSession()
openbanking_intent_id = sessionId.getSessionAttributes().get("openbanking_intent_id ")
# Step2: <add custom claims to ID token here>
jsonWebResponse.getClaims().setClaim("openbanking_intent_id ", openbanking_intent_id )
Interception scripts are written in Jython or in Java, enabling Java or Python libraries to be imported. While the syntax of the script requires Python for Jython, most of the functionality can be written in Java.
Under script in this case means java source file (e.g. Discovery.java
) which is compiled by AS and executed at runtime.
Notes:
- there not package set in pure java scripts
- name of the class must match to the name set in CustomScriptType source code (e.g. for discovery script it is "Discovery")
- scripts must implement predefined interface which can be found in CustomScriptType source code
- all libraries available at runtime to server are available also to pure java script
- to log to
jans-auth_script.log
usescriptLogger
- normal log will log in to
jans-auth.log
Example pure java script
import io.jans.model.SimpleCustomProperty;
import io.jans.model.custom.script.model.CustomScript;
import io.jans.model.custom.script.type.discovery.DiscoveryType;
import io.jans.service.custom.script.CustomScriptManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.json.JSONObject;
import java.util.Map;
/**
* @author Yuriy Zabrovarnyy
*/
public class Discovery implements DiscoveryType {
private static final Logger log = LoggerFactory.getLogger(Discovery.class);
private static final Logger scriptLogger = LoggerFactory.getLogger(CustomScriptManager.class);
@Override
public boolean init(Map<String, SimpleCustomProperty> configurationAttributes) {
log.info("Init of Discovery Java custom script");
return true;
}
@Override
public boolean init(CustomScript customScript, Map<String, SimpleCustomProperty> configurationAttributes) {
log.info("Init of Discovery Java custom script");
return true;
}
@Override
public boolean destroy(Map<String, SimpleCustomProperty> configurationAttributes) {
log.info("Destroy of Discovery Java custom script");
return true;
}
@Override
public int getApiVersion() {
log.info("getApiVersion Discovery Java custom script: 11");
return 11;
}
@Override
public boolean modifyResponse(Object responseAsJsonObject, Object context) {
scriptLogger.info("write to script logger");
JSONObject response = (JSONObject) responseAsJsonObject;
response.accumulate("key_from_java", "value_from_script_on_java");
return true;
}
}
-
You can only use libraries (packages and modules) that are written in Pure Python. Importing a Python class which is a wrapper around a library written in C is not supported by the Jans server. As an example, the psycopg2 library used to connect to PostgreSQL from Python. Since it is a C wrapper around libpq, it won't work with Jython.
-
Python 3 packages / modules are not supported.
-
Pure Python libraries should be added to
/opt/jans/python/libs
-
Using pip to install additional Python packages:
- Find out about your Jython version first. cd into the /opt directory in your Jans Server container and run ls. A directory named jython- should be listed too where will correspond to the Jython version. Note the version.
- Open the file
/etc/jans/conf/jans.properties
and look for the line starting withpythonModulesDir=
. Append the value/opt/jython-<version>/Lib/site-packages
to any existing value. Each value is separater by a colon (:). It should look something like thispythonModulesDir=/opt/jans/python/libs:/opt/jython-2.7.2a/Lib/site-packages
Run the following command/opt/jython-<version>/bin/jython -m ensurepip
Install your library with/opt/jython-<version>/bin/pip install <library_name>
where <library_name> is the name of the library to install. - Restart the jans-auth service :
systemctl restart jans-auth
- Add library jars to
/opt/jans/jetty/jans-auth/custom/libs/
- Edit /opt/jans/jetty/jans-auth/webapps/jans-auth.xml and add the following line replacing the word
library-name
with the actual name of the library:
<Set name="extraClasspath">/opt/jans/jetty/jans-auth/custom/libs/library-name.jar</Set>
- Restart jans-auth service
systemctl restart jans-auth
-
init(self, customScript, configurationAttributes)
: This method is only called once during the script initialization (or jans-auth service restarts). It can be used for global script initialization, initiate objects etc -
destroy(self, configurationAttributes)
: This method is called when a custom script fails to initialize or upon jans-auth service restarts. It can be used to free resource and objects created in the init() method -
getApiVersion(self, configurationAttributes, customScript)
: The getApiVersion method allows API changes in order to do transparent migration from an old script to a new API. Only include the customScript variable if the value for getApiVersion is greater than 10
Name | unique identifier for the custom script e.g. update_user |
Description | Description text |
Programming Languages | Python |
Level | Used in Person Authentication script type, the strength of the credential is a numerical value assigned to the custom script that is tied to the authentication method. The higher the value, the stronger it is considered. Thus, if a user has several credentials enrolled, he will be asked to present the one of them having the highest strength associated. |
Location type |
|
Interactive |
|
Custom properties | Key - value pairs for configurable parameters like Third Party API keys, location of configuration files etc |
Jans-cli supports the following six operations on custom scripts:
get-config-scripts
, gets a list of custom scripts.post-config-scripts
, adds a new custom script.put-config-scripts
, updates a custom script.get-config-scripts-by-type
, requires an argument--url-suffix TYPE: ______
. You can specify the following types: PERSON_AUTHENTICATION, INTROSPECTION, RESOURCE_OWNER_PASSWORD_CREDENTIALS, APPLICATION_SESSION, CACHE_REFRESH, UPDATE_USER, USER_REGISTRATION, CLIENT_REGISTRATION, ID_GENERATOR, UMA_RPT_POLICY, UMA_RPT_CLAIMS, UMA_CLAIMS_GATHERING, CONSENT_GATHERING, DYNAMIC_SCOPE, SPONTANEOUS_SCOPE, END_SESSION, POST_AUTHN, SCIM, CIBA_END_USER_NOTIFICATION, PERSISTENCE_EXTENSION, IDP, or UPDATE_TOKEN.get-config-scripts-by-inum
, requires an argument--url-suffix inum: _____
delete-config-scripts-by-inum
, requires an argument--url-suffix inum: _____
The post-config-scripts and put-config-scripts require various details about the scripts. The following command gives the basic schema of the custom scripts to pass to these operations.
Command:
/opt/jans/jans-cli/config-cli.py --schema /components/schemas/CustomScript
Output:
{
"dn": null,
"inum": null,
"name": "string",
"aliases": [],
"description": null,
"script": "string",
"scriptType": "IDP",
"programmingLanguage": "PYTHON",
"moduleProperties": {
"value1": null,
"value2": null,
"description": null
},
"configurationProperties": {
"value1": null,
"value2": null,
"description": null,
"hide": true
},
"level": "integer",
"revision": 0,
"enabled": false,
"scriptError": {
"raisedAt": null,
"stackTrace": null
},
"modified": false,
"internal": false
}
To add or modify a script first, we need to create the script's python file (e.g. /tmp/sample.py) and then create a JSON file by following the above schema and update the fields as :
/tmp/sample.json
{
"name": "mySampleScript",
"aliases": null,
"description": "This is a sample script",
"script": "_file /tmp/sample.py",
"scriptType": "PERSON_AUTHENTICATION",
"programmingLanguage": "PYTHON",
"moduleProperties": [
{
"value1": "mayvalue1",
"value2": "myvalues2",
"description": "description for property"
}
],
"configurationProperties": null,
"level": 1,
"revision": 0,
"enabled": false,
"scriptError": null,
"modified": false,
"internal": false
}
The following command will add a new script with details given in /tmp/sample.json file. The jans-cli will generate a unique inum of this new script if we skip inum in the json file.
/opt/jans/jans-cli/config-cli.py --operation-id post-config-scripts --data /tmp/sampleadd.json
The following command will modify/update the existing script with details given in /tmp/samplemodify.json file. Remember to set inum field in samplemodify.json to the inum of the script to update.
/opt/jans/jans-cli/config-cli.py --operation-id put-config-scripts --data /tmp/samplemodify.json
To delete a custom script by its inum, use the following command:
/opt/jans/jans-cli/config-cli.py --operation-id delete-config-scripts-by-inum --url-suffix inum:SAMPLE-TEST-INUM
These commands to print the details are important, as using them we can get the inum of these scripts which is required to perform update or delete operation.
- The following command will display the details of all the existing custom scripts. This will be helpful to get the inum of scripts to perform the update and delete operation.
/opt/jans/jans-cli/config-cli.py --operation-id get-config-scripts
- Following command displays the details of selected custom script (by inum).
/opt/jans/jans-cli/config-cli.py --operation-id get-config-scripts-by-inum --url-suffix inum:_____
- Use the following command to display the details of existing custom scripts of a given type (for example: INTROSPECTION).
/opt/jans/jans-cli/config-cli.py --operation-id get-config-scripts-by-type --url-suffix type:INTROSPECTION
📝 Note: Incase the AS's Access token is bound to the client's MTLS certificate, you need to add the certificate and key files to the above commands. E.g:
/opt/jans/jans-cli/config-cli.py --operation-id post-config-scripts --data /tmp/sampleadd.json -cert-file sampleCert.pem -key-file sampleKey.key