Socket
Socket
Sign inDemoInstall

authentication-backend

Package Overview
Dependencies
3
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    authentication-backend

minimal API for integration with external authentication providers


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
648 kB
Created
Weekly downloads
 

Readme

Source

Authentication Backend

Provides minimal backend functionality for integrating with external authentication providers.

Currently supports Google, GitHub and GitLab.

Install dependency

npm install --save authentication-backend

Usage

import express from 'express';
import { buildAuthenticationBackend } from 'authentication-backend';

const config = {
  google: {
    clientId: 'my-google-client-id',
    authUrl: 'https://accounts.google.com/o/oauth2/auth',
    tokenInfoUrl: 'https://oauth2.googleapis.com/tokeninfo',
  },
  github: {
    clientId: 'my-github-client-id',
    clientSecret: 'my-github-client-secret',
    authUrl: 'https://github.com/login/oauth/authorize',
    accessTokenUrl: 'https://github.com/login/oauth/access_token',
    userUrl: 'https://api.github.com/user',
  },
  gitlab: {
    clientId: 'my-gitlab-client-id',
    authUrl: 'https://gitlab.com/oauth/authorize',
    tokenInfoUrl: 'https://gitlab.com/oauth/token/info',
  },
};

function tokenGranter(userId, service, externalId) {
  // database-based example:
  const myUserSessionToken = uuidv4();
  myDatabase.recordUserSession(myUserSessionToken, userId);
  return myUserSessionToken;
}

const auth = buildAuthenticationBackend(config, tokenGranter);
express()
  .use('/my-prefix', auth.router)
  .listen(8080);

You will need to do some work for each service on the client-side too. See the source in /example/static for a reference implementation.

Mock SSO server

This package also contains a mock SSO server, which can be run alongside your app (this is useful for local development and testing):

import express from 'express';
import { buildAuthenticationBackend, buildMockSsoApp } from 'authentication-backend';

buildMockSsoApp().listen(9000);

const config =
  google: {
    clientId: 'my-google-client-id',
    authUrl: 'http://localhost:9000/auth',
    tokenInfoUrl: 'http://localhost:9000/tokeninfo',
  },
};

// ...

const auth = buildAuthenticationBackend(config, tokenGranter);
express()
  .use('/my-prefix', auth.router)
  .listen(8080);

Authentication Providers

Google sign in

You will need a Google client ID:

  1. Go to https://console.developers.google.com/apis
  2. Create a new project (if necessary)
  3. In the "Credentials" screen, find the auto-generated OAuth client entry (if it was not created automatically, create one manually with "Create credentials" → "OAuth client ID")
  4. Record the client ID (you will not need the client secret)
  5. Update the authorised JavaScript origins to match your deployment. e.g. for local testing, this could be http://localhost:8080
  6. Update the authorised redirect URIs to the same value, with /<my-prefix>/google appended to the end.
  7. You may want to change the "Support email" listed under "OAuth consent screen", as this will be visible to users of your deployed app.

You can now configure the client ID in your app:

const config =
  google: {
    clientId: 'something.apps.googleusercontent.com', // <-- replace
    authUrl: 'https://accounts.google.com/o/oauth2/auth',
    tokenInfoUrl: 'https://oauth2.googleapis.com/tokeninfo',
  },
};

GitHub sign in

You will need a GitHub client ID:

  1. Go to https://github.com/settings/applications/new
  2. Set the "Homepage URL" to match your deployment. e.g. for local testing, this could be http://localhost:8080
  3. Set the "Authorization callback URL" to the same value, with /<my-prefix>/github appended to the end.
  4. Record the client ID and client secret.

You can now configure the client ID and secret in your app:

const config =
  github: {
    clientId: 'my-github-client-id',         // <-- replace
    clientSecret: 'my-github-client-secret', // <-- replace
    authUrl: 'https://github.com/login/oauth/authorize',
    accessTokenUrl: 'https://github.com/login/oauth/access_token',
    userUrl: 'https://api.github.com/user',
  },
};

GitLab sign in

You will need a GitLab client ID:

  1. Go to https://gitlab.com/profile/applications
  2. Set the "Redirect URI" to match your deployment with /<my-prefix>/gitlab appended to the end. e.g. for local testing, this could be http://localhost:8080/<my-prefix>/gitlab
  3. Untick the "confidential" option. You do not need to enable any scopes.
  4. Record the application ID (you will not need the secret).

You can now configure the application ID in your app:

const config =
  gitlab: {
    clientId: 'my-gitlab-application-id', // <-- replace
    authUrl: 'https://gitlab.com/oauth/authorize',
    tokenInfoUrl: 'https://gitlab.com/oauth/token/info',
  },
};

API

This expects you to create a frontend which handles the user interaction and propagates returned data to the API.

GET /

This will return the public parts of your config (i.e. clientId and authUrl for each service).

Example:

{
  "google": {
    "clientId": "my-google-client-id",
    "authUrl": "https://accounts.google.com/o/oauth2/auth"
  },
  "github": {
    "clientId": "my-github-client-id",
    "authUrl": "https://github.com/login/oauth/authorize"
  },
  "gitlab": {
    "clientId": "my-gitlab-client-id",
    "authUrl": "https://gitlab.com/oauth/authorize"
  }
}

Any services which have not been configured will be omitted from the response.

POST /<service-name>

Where <service-name> is google, github or gitlab.

This expects to receive JSON-encoded data:

{
  "externalToken": "token-returned-by-service"
}

It will check the token with the service, and if successful, will invoke the configured tokenGranter function with a user ID, service name, and service user ID. The string returned by tokenGranter will be sent to the user in a JSON response:

{
  "userToken": "returned-token-granter-value"
}

If the check fails, an error will be returned instead, with a status code of 4xx or 5xx:

{
  "error": "an error message"
}

Keywords

FAQs

Last updated on 25 Sep 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc