There will be times you want to modify some flows or you want to apply some logic for some actions. PlusAuth provides hooks for you to be able to modify the flow and use your own logic.
Create Hook
Go to Dashboard > Hooks. Here you will see a graph with flows located in top. After selecting your flow, click to Add Hook button from which step you would like to create the hook. You will be prompted with a dialog to enter your code and hook's name.
Your hooks characteristics are as following:
- The code must be a valid JavaScript
- The code must be in ESM format, meaning, you must use
import
,export
etc. - The code must export a function named
handle
handle
function receives adata
argument and a callback function as last argument, but it also can be anasync
function.- Hooks have
10 seconds
lifetime. After 10 seconds the hook will throw a TimeoutError and will result of failing that hook. - You can use any npm package with the prefix of
npm:
. For example,npm:axios
. Details at Modules Support - System level operations are not supported. For example, reading/writing files, executing system commands etc.
First argument the handle function receives contains hook context. See Hook Context for detailed information.
Have a look at below for more concrete example:
Alternatively, you can use promise-like interface like this:
Change Order of Hooks
You can create hooks with the same type and their execution order could be somehow important for you. In those cases all you need to do is change the order for those hooks. Go to Dashboard > Hooks, drag and drop the hooks in the same container to change their order.
Modules Support
PlusAuth hooks supports usage of npm modules. You can use any npm modules from npm registry as long as it works on serverless environment.
A simple usage example:
Testing Hook
You can test your hook with the Run button located on the right sidebar of content editor. It will use a test context which contains will be in the same structure as the real usage, but it's content will be filled with dummy data.
After you click the Run button from the right side of the editor you will see console output and resulting context from the console window.
Hook Context
key | description |
---|---|
client | Client object that initiated the flow. |
user | PlusAuth user object. |
context.externalUser | External user object retrieved from external connection such as LDAP |
context.connection | Current connection name |
context.request.query | Query parameters for initiated request |
context.request.body | Request body for initiated request |
context.request.headers | Request headers for initiated request |
context.request.userAgent | UserAgent for initiated request |
context.request.ip | IP of incoming request |
context.response.body | Response body object |
context.response.headers | Headers which will be sent |
context.authParams | Authorization related params. |
context.accessToken | Generated access token. |
context.idToken | Generated id token. |
context.mfa | MFA related actions. |