README
Identity and Access Management - IAM
Contains the implementation of the IAM contracts interfaces.
Purpose
The AtlasEngine uses IAM for performing authorization related requests.
The contracts found in @atlas-engine/iam_contracts provide a template for this.
Two services are available:
IamService
Used for interaction with the authority.
ensureHasClaimallows to check if a given identity has a given claim.IdentityService
A service that knows how to transform a given token (e.g. JWT) to an identity that the authority can understand.
Usage Example:
The easiest way to get familiar with the idea is to look at an example; this will illustrate the use of and the interaction between the IamService and the IdentityService:
const identityService = new IdentityService();
const iamService = new IAMService();
// Get the identity for a given JWT token.
const token = 'Place JWT Token here';
const identity = identityService.getIdentity(token);
// Will result in:
//
// 1. An UnauthorizedError HTTP Status code, if the identity is not logged in at the authority.
// 2. A ForbiddenError HTTP Status code, if the identity does not have the given claim.
// 3. Nothing, if the identity has the given claim.
iamService.ensureHasClaim(identity, 'allowd_to_read_data');
// Place protected code here.
(...)
Usage
Using IAM is simple. You can use ensureHasClaim to verify any claim for any identity.
You'll get one of the following results:
Get an Unauthorized Error
A 401 will be thrown, if the identity is not known to the authority or the token is invalid/expired/etc.
Get a Forbidden Error
A 403 will be thrown, if the given identity does not have the given claim.
Get Nothing, if the identity has the given claim.
A 204, which indicates that the identity has the given claim.
Configuration
The IamService needs some configurations:
baseUrl: The base address at which the authority can be reachedclaimUrl: The url to use for claim checksallowAnonymousRootAccess: Iftrue: Allow usage of the dummy token. Defaults tofalse.cache: A set of configurations for the claim check cacheenabled: If true, the result of each unique claim check for each token will be cachedcacheLifetimeInSeconds: The time that a claim check result should be cached. Set to 0 to store results indefinetlycleanupIntervalInSeconds: The interval in which the cache should clean intself up. Use 0 to disable this behaviour.
Disabling Claim Checks
You can disable claim checks altogether, by starting the Atlas Engine with the DISABLE_CLAIM_CHECKS environment parameter.
Example: DISABLE_CLAIM_CHECKS=true atlas-engine.
Be advised: Disabling claim checks entirely will allow any and all users to do whatever they want! You should only use this for testing- or debugging- purposes!