scimmyjs / scimmy-routers

SCIMMY Express Routers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SCIMMY Express Routers

Provides a set of express routers that implement the application-level HTTP-based SCIM 2.0 protocol (RFC7644), which is designed to simplify resource provisioning and identity management in cloud-based applications and services.
The routers leverage work done in the SCIMMY package, which provides a set of tools that can be used to parse incoming, and format outgoing data according to the SCIM 2.0 protocol.

Requirements

Installation and Usage

Through NPM:

$ npm install scimmy-routers

In your code:

import express from "express";
import SCIMMYRouters, {SCIMMY} from "scimmy-routers";

// Create a new express app
let app = express();

// Declare resource types to SCIMMY package (see SCIMMY documentation for more details)
SCIMMY.Resources.declare(SCIMMY.Resources.User, {/* Your handlers for user resource type */});
SCIMMY.Resources.declare(SCIMMY.Resources.Group, {/* Your handlers for group resource type */});

// Instantiate SCIMMYRouters as new middleware for express
app.use("/scim", new SCIMMYRouters({
    type: "bearer",
    docUri: "http://example.com/help/oauth.html",
    // Your handler for verifying authentication status of a request
    handler: (request) => {
        if (!request.header("Authorization")?.startsWith("Bearer ")) {
            throw new Error("Authorization not detected!");
        } else {
            // Do nothing, request is authenticated
        }
    }
}));

API

SCIMMY Express Routers provides a constructable middleware class which extends the Express Router class.
It can be used at any level of an Express app, as with any other middleware, however it is recommended that you include the path /scim somewhere in your mountpath.

The SCIMMYRouters constructor accepts a single configuration object argument which defines how authentication will be handled in the middleware. The properties of that object are:

  • type - required string specifying SCIM service provider authentication scheme type.

    • Currently supported values are "oauth", "bearer", "basic", and "digest", which respectively map to authenticationScheme types of "oauth2", "oauthbearertoken", "httpbasic", and "httpdigest".
  • handler - required function specifying the method to invoke to authenticate SCIM requests to this middleware.

    • If a request is not authenticated, the function should throw a new Error with a brief message to be passed back by the response.
    • If a specific user is authenticated, the function should return the ID string of the authenticated user.
  • docUri - optional string specifying the URL to use as the documentation URI for the service provider authentication scheme.

About

SCIMMY Express Routers

License:MIT License


Languages

Language:JavaScript 100.0%