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.
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.
Out of the box, this Identity Provider does three things:
- Connects to a database and sets up a
users
table to store your list of users - Provides a basic UI to view, create, and edit user entries in your database
- Accepts authentication requests from Layer sample apps and responds with with an identity token
A few HTTP routes are specified:
GET /
renders the homepage, which contains basic status information about your server and links to additional resourcesGET /deployed
renders the string"ok"
and HTTP status200
as a health checkGET /users
renders a list of all the users currently in the databaseGET /users/:id
renders the fields for a particular user in the database, specified by the:id
parameterPOST /users
inserts a new entry into theusers
table containing the provided HTTP parametersGET /users/:id/edit
renders a form allowing you to edit the fields stored for a particular userPATCH /users/:id
saves changes, provided via HTTP parameters, for the specified user in the databasePOST /authenticate
generates a JWT identity token when provided with valid credentials (see below) and anonce
.
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
.
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 theLAYER_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.