OAuth1 Authentication

GitHub stars
@feathersjs/authentication-oauth1"">npm version
Changelog

  1. $ npm install @feathersjs/authentication-oauth1 --save

@feathersjs/authentication-oauth1 is a server side module that allows you to use any Passport OAuth1 authentication strategy within your Feathers application, most notably Twitter.

This module contains 2 core pieces:

  1. The main initialization function
  2. The Verifier class

Configuration

In most cases initializing the module is as simple as doing this:

  1. const feathers = require('@feathersjs/feathers');
  2. const authentication = require('@feathersjs/authentication');
  3. const jwt = require('@feathersjs/authentication-jwt');
  4. const oauth1 = require('@feathersjs/authentication-oauth1');
  5. const session = require('express-session');
  6. const TwitterStrategy = require('passport-twitter').Strategy;
  7. const app = feathers();
  8. // Setup in memory session
  9. app.use(session({
  10. secret: 'super secret',
  11. resave: true,
  12. saveUninitialized: true
  13. }));
  14. // Setup authentication
  15. app.configure(authentication(settings));
  16. app.configure(jwt());
  17. app.configure(oauth1({
  18. name: 'twitter',
  19. Strategy: TwitterStrategy,
  20. consumerKey: '<your consumer key>',
  21. consumerSecret: '<your consumer secret>'
  22. }));
  23. // Setup a hook to only allow valid JWTs to authenticate
  24. // and get new JWT access tokens
  25. app.service('authentication').hooks({
  26. before: {
  27. create: [
  28. authentication.hooks.authenticate(['jwt'])
  29. ]
  30. }
  31. });

This will pull from your global authentication object in your config file. It will also mix in the following defaults, which can be customized.

Registering the OAuth1 plugin will automatically set up routes to handle the OAuth redirects and authorization.

Options

  1. {
  2. idField: '<provider>Id', // The field to look up the entity by when logging in with the provider. Defaults to '<provider>Id' (ie. 'twitterId').
  3. path: '/auth/<provider>', // The route to register the middleware
  4. callbackURL: 'http(s)://hostame[:port]/auth/<provider>/callback', // The callback url. Will automatically take into account your host and port and whether you are in production based on your app environment to construct the url. (ie. in development http://localhost:3030/auth/twitter/callback)
  5. entity: 'user', // the entity that you are looking up
  6. service: 'users', // the service to look up the entity
  7. passReqToCallback: true, // whether the request object should be passed to `verify`
  8. session: true, // whether to use sessions,
  9. handler: function, // Express middleware for handling the oauth callback. Defaults to the built in middleware.
  10. formatter: function, // The response formatter. Defaults the the built in feathers-rest formatter, which returns JSON.
  11. Verifier: Verifier // A Verifier class. Defaults to the built-in one but can be a custom one. See below for details.
  12. }

Additional passport strategy options can be provided based on the OAuth1 strategy you are configuring.

Verifier

This is the verification class that handles the OAuth1 verification by looking up the entity (normally a user) on a given service and either creates or updates the entity and returns them. It has the following methods that can all be overridden. All methods return a promise except verify, which has the exact same signature as passport-oauth1.

  1. {
  2. constructor(app, options) // the class constructor
  3. _updateEntity(entity) // updates an existing entity
  4. _createEntity(entity) // creates an entity if they didn't exist already
  5. _normalizeResult(result) // normalizes result from service to account for pagination
  6. verify(req, accessToken, refreshToken, profile, done) // queries the service and calls the other internal functions.
  7. }

The Verifier class can be extended so that you customize it’s behavior without having to rewrite and test a totally custom local Passport implementation. Although that is always an option if you don’t want use this plugin.

An example of customizing the Verifier:

  1. import oauth1, { Verifier } from '@feathersjs/authentication-oauth1';
  2. class CustomVerifier extends Verifier {
  3. // The verify function has the exact same inputs and
  4. // return values as a vanilla passport strategy
  5. verify(req, accessToken, refreshToken, profile, done) {
  6. // do your custom stuff. You can call internal Verifier methods
  7. // and reference this.app and this.options. This method must be implemented.
  8. // the 'user' variable can be any truthy value
  9. // the 'payload' is the payload for the JWT access token that is generated after successful authentication
  10. done(null, user, payload);
  11. }
  12. }
  13. app.configure(oauth1({
  14. name: 'twitter'
  15. Strategy: TwitterStrategy,
  16. consumerKey: '<your consumer key>',
  17. consumerSecret: '<your consumer secret>',
  18. Verifier: CustomVerifier
  19. }));

Customizing The OAuth Response

Whenever you authenticate with an OAuth1 provider such as Twitter, the provider sends back an accessToken, refreshToken, and a profile that contains the authenticated entity’s information based on the OAuth1 scopes you have requested and been granted.

By default the Verifier takes everything returned by the provider and attaches it to the entity (ie. the user object) under the provider name. You will likely want to customize the data that is returned. This can be done by adding a before hook to both the update and create service methods on your entity‘s service.

  1. app.configure(oauth1({
  2. name: 'twitter',
  3. entity: 'user',
  4. service: 'users',
  5. Strategy,
  6. consumerKey: '<your consumer key>',
  7. consumerSecret: '<your consumer secret>'
  8. }));
  9. function customizeTwitterProfile() {
  10. return function(context) {
  11. console.log('Customizing Twitter Profile');
  12. // If there is a twitter field they signed up or
  13. // signed in with twitter so let's pull the email. If
  14. if (context.data.twitter) {
  15. context.data.email = context.data.twitter.email;
  16. }
  17. // If you want to do something whenever any OAuth
  18. // provider authentication occurs you can do this.
  19. if (context.params.oauth) {
  20. // do something for all OAuth providers
  21. }
  22. if (context.params.oauth.provider === 'twitter') {
  23. // do something specific to the twitter provider
  24. }
  25. return Promise.resolve(context);
  26. };
  27. }
  28. app.service('users').hooks({
  29. before: {
  30. create: [customizeTwitterProfile()],
  31. update: [customizeTwitterProfile()]
  32. }
  33. });

Client Usage

When this module is registered server side, whether you are using feathers-authentication-client or not the user has to navigate to the authentication strategy url. This could be by setting window.location or through a link in your app.

For example you might have a login button for Twitter:

  1. <a href="/auth/twitter" class="button">Login With Twitter</a>