Skip to content

Mozilla Persona authentication strategy for Passport and Node.js.

License

Notifications You must be signed in to change notification settings

Morgul/passport-persona

 
 

Repository files navigation


This is a fork of the Passport Persona Strategy. I made it because of lack of maintenence in the original project. Feel free to submit pull requests, etc and I will publish them.


Passport-Persona

Build Status

Passport strategy for authenticating with Mozilla Persona.

This module lets you authenticate using Mozilla Persona in your Node.js applications. By plugging into Passport, Persona authentication can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.

Persona is a fallback Identity Provider for the BrowserID protocol, a distributed login system from Mozilla. This strategy verifies assertions using Mozilla's Remote Verification API. Applications wishing to verify assertions locally should use passport-browserid.

Install

$ npm install persona-pass

Usage

Configure Strategy

The Persona authentication strategy authenticates users using an assertion of email address ownership, obtained via the navigator.id JavaScript API. The strategy requires a verify callback, which accepts an email address and calls done providing a user.

passport.use(new PersonaStrategy({
    audience: 'http://www.example.com'
  },
  function(email, done) {
    User.findByEmail({ email: email }, function (err, user) {
      return done(err, user);
    });
  }
));

Authenticate Requests

Use passport.authenticate(), specifying the 'persona' strategy, to authenticate requests.

For example, as route middleware in an Express application:

app.post('/auth/browserid', 
  passport.authenticate('persona', { failureRedirect: '/login' }),
  function(req, res) {
    // Successful authentication, redirect home.
    res.redirect('/');
  });

Examples

For a complete, working example, refer to the signin example.

Tests

$ npm install
$ make test

Credits

License

The MIT License

Copyright (c) 2011-2013 Jared Hanson <http://jaredhanson.net/>

About

Mozilla Persona authentication strategy for Passport and Node.js.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.3%
  • Makefile 1.7%