ExpressMiddleware{#ExpressMiddleware}
ServiceAuthorizationMiddleware{#ServiceAuthorizationMiddleware}
ServiceAuthorizationMiddleware
new ServiceAuthorizationMiddleware(options)
options.serviceTokenSignSecret
Required - Secret to validate token signature against
authorize(authParams)
Extract and authorize token using the provided auth params
FullAuthorizationParameters | AuthorizationMode
Required - Authorization parameters to pass to
errorHandler([err], req, res, next)
Error handler for errors thrown by ServiceAuthorizationMiddleware
Will handle telling IMSG to redirect unauthorized requests, but will pass on any other errors to next()
The type definition of the full auhtorization object with all parameters.
Passed to the authorize function.
Properties
Function to run before authorize is called
string | function | Boolean
Required - Organiztion to authorize against
Optional access rules to authorize against
If true, do not redirect failed authorization to login
The type definition of the access rule.
Passed to the authorize function within the object as a list of access rules.
All properties are optional, but at least one must exist
Properties
Unit that should match token
Permission that should match token
Subject that should match token
Type defintion of the authorization mode.
SERVICE_ADMIN_ENDPOINT - Authorization validates if you are a service admin and have a valid token. Either accessed or thrown out.
OPEN_ENDPOINT - Authorization validates if you have a valid token and lets you through to the open endpoint. Either accessed or thrown out.
Either SERVICE_ADMIN_ENDPOINT or OPEN_ENDPOINT