JSPM

  • Created
  • Published
  • Downloads 137906
  • Score
    100M100P100Q161721F

SAML 2.0 node helpers

Package Exports

  • saml2-js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (saml2-js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

SAML2 Library

Description

Takes care of the complexities of the SAML protocol and provides an easy interface for using it. Specifically, creating metadata.xml files, creating AuthnRequests and parsing and validating AuthnResponses.

This is exposed as both a series of functions that implement each step of the SAML protocol, and an Express middleware that creates the necessary endpoints for the metadata, the login and the assertion.

Installation

  npm install saml2-js

Expected Usage

Include the SAML library.

  saml_lib = require('saml')

To use the saml library, we think in terms of service providers (e.g. Clever) and identity providers (e.g. partners that use ADFS).

  sp = saml_lib.service_provider
    private_key : 'saml.pem'
    certificate : 'saml.crt'

  idp = saml_lib.identity_provider
    sso_login_url : 'https://www.example.com/login'
    sso_logout_url : 'https://www.example.com/logout'
    certificate : 'adfs.crt'

Upon creating at least one service provider and one identity provider, you can then create SAML requests between them.

  # -- REQUIRED --
  # Returns a redirect URL, at which a user can login
  sp.create_login_url(idp, cb)

  # Returns user object, if the login attempt was valid.
  sp.assert(idp, request_body, cb)

  # -- OPTIONAL --
  # Returns a redirect URL, at which a user is logged out.
  sp.create_logout_url(idp, cb)

  # Returns XML containing service-provider parameters.
  # For use during initial SAML configuration
  sp.create_metadata(idp, cb)

Helper Methods

We will break each of the service_provider methods into minimal, testable methods.

  ... TODO ...
  parse_xml
  parse_assert
  createAuthRequest

Example: Express implementation using saml-lib

Library users will need to implement the URL endpoints. For example, express endpoints might look like the following:

  app.get "/metadata.xml", (request, response) ->
    sp.get_metadata idp, (err, metadata) ->
      return response.send 500, err if err?
      response.send 200, metadata

  app.get "/login", (request, response) ->
    sp.create_login_url idp, (err, login_url) ->
      return response.send 500, err if err?
      response.location login_url
      response.send 302, "Redirecting..."

  app.get "/logout", (request, response) ->
    sp.create_logout_url idp, (err, login_url) ->
      return response.send 500, err if err?
      response.location login_url
      response.send 302, "Redirecting..."

  app.post "/assert", (request, response) ->
    sp.assert idp, response.body, (err, user) ->
      response.send 500, err if err?
      response.send 200, "Hello #{user.email}!"