Skip to content

GetJOMO/sample-layer-backend

Repository files navigation

Instastart Identity Provider

This is a Rails app that provides a ready-to-deploy, sample Identity Provider which can be used with any Layer application. This README assumes that you are familiar with the structure of Rails applications, including routes and MVC.

What is an Identity Provider?

An Identity Provider manages a user database and responds to authentication requests from Layer apps. Layer uses a federated identity system, which means that users don't register or login to Layer; instead, we ask your server to confirm if a user is allowed to login or not. This repo provides such a server, and can be extended to meet your requirements. See our Technical Overview for more information about user management and identity providers.

What does this Identity Provider provide?

Out of the box, this Identity Provider does three things:

A few HTTP routes are specified:

  • GET / renders the homepage, which contains basic status information about your server and links to additional resources
  • GET /deployed renders the string "ok" and HTTP status 200 as a health check
  • GET /users renders a list of all the users currently in the database
  • GET /users/:id renders the fields for a particular user in the database, specified by the :id parameter
  • POST /users inserts a new entry into the users table containing the provided HTTP parameters
  • GET /users/:id/edit renders a form allowing you to edit the fields stored for a particular user
  • PATCH /users/:id saves changes, provided via HTTP parameters, for the specified user in the database
  • POST /authenticate generates a JWT identity token when provided with valid credentials (see below) and a nonce.

User Authentication

The POST /authenticate endpoint expects three parameters: email, password, and nonce. This models a typical email-and-password login in an app. The email should correspond to an existing record in the users table. The password will be hashed (using bcrypt) and checked against the password_digest field of that user record. If they match, the Identity Provider will use the provided nonce to generate an identity token (the Identity Provider does not verify that the nonce is well-formed or valid).

If the email and password are valid, the response looks like {"identity_token": "<IDENTITY TOKEN AS A STRING>"}. If not, the response will be {"error": "<A DESCRIPTION OF THE ERROR>"} and HTTP status 401.

Deployment

This app can be deployed on any server which can run Ruby 2.3 and PostgreSQL. It is easiest to deploy to Heroku, which you can do for free:

  • Click this link (this is configured in app.json)
  • Fill in the ENV variables at the bottom of the page with the keys from your Layer developer dashboard. You will also need to generate an RSA keypair and paste the entire private key (including the -----BEGIN RSA PRIVATE KEY----- header and -----END RSA PRIVATE KEY----- footer) in the LAYER_PRIVATE_KEY field.
  • Click the purple "Deploy" button; Heroku will take care of the rest. When it's finished, click "View app" to make sure everything is running.

About

Ready-to-deploy, sample Identity Provider which can be used with any Layer application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published