passpack
Version:
Multi-tenancy (read: virtual hosts) for Passport.JS
242 lines (173 loc) • 5.82 kB
Markdown
Passpack
========
Multi-tenancy (read: virtual hosts) for Passport.JS
Overview
--------
Passpack makes things easier if you're running a multi-tenanted application with
[Passport.JS](http://passportjs.org/) by abstracting away some of the book
keeping involved with instantiating multiple passport instances and choosing
which to use for a given request.
Installation
------------
Available via [npm](http://npmjs.org/):
> $ npm install passpack
Or via git:
> $ npm install git://github.com/deoxxa/passpack.git
Usage
-----
Passpack provides a framework for applications to define their own passport.js
multi-tenanting implementations. It requires you to provide two functions:
`_getConfig` and `_createInstance`. These functions are called when necessary to
do exactly what they sound like they do, allowing you to completely control the
configuration and instantiation of the passport objects managed by passpack.
You can see an example of how this all fits together below, in the "example"
section.
**_getConfig**
The `_getConfig` function is used to work out what the configuration parameters
are for passport for a given request. It's provided with the request object from
express, and is expected to call the callback function when it's done with an
error (or null), an ID, and optionally some configuration parameters for
`_createInstance` to use in instantiating the passport object.
```javascript
passpack._getConfig = function _getConfig(req, cb) {
cb(null, req.host, {
realm: "Please log in to " + req.host,
});
};
```
**_createInstance**
The `createInstance` function is used to actually instantiate a passport object.
It's only called when a cached object isn't already available, providing a means
of lazy instantiation. It's given some configuration parameters (from
`_getConfig`) and is expected to call the callback function with an error (or
null) and the resultant passport instance.
```javascript
passpack._createInstance = function _createInstance(options, cb) {
var instance = new Passport();
instance.use("basic", new BasicStrategy(options, function(name, password, done) {
return done(null, {name: name});
}));
instance.serializeUser(function(user, cb) {
user.realm = options.realm;
cb(null, JSON.stringify(user));
});
instance.deserializeUser(function(id, cb) {
cb(null, JSON.parse(id));
});
cb(null, instance);
};
```
API
---
**constructor**
Constructs a new Passpack object, optionally providing the `_getConfig` and
`_createInstance` functions in an object.
```javascript
new Passpack([options]);
```
```javascript
// basic instantiation
var passpack = new Passpack();
// instantiation with functions
var passpack = new Passpack({
getConfig: myGetConfig,
createInstance: myCreateInstance,
});
```
Arguments
* _options_ - an object specifying values for `_getConfig` and `_createInstance`
**attach**
Returns an express/connect-compatible middleware function that attaches the
correct passport object to a request. You probably want this as the first
passpack-related piece of middleware in your application.
```javascript
passpack.attach();
```
```javascript
app.use(passpack.attach());
```
**middleware**
Wraps a passport middleware function so that it'll be called using the correct
passport instance, optionally passing some arguments to it.
```javascript
passpack.middleware(name, [arg1, [arg2, ...]]);
```
```javascript
app.use(passpack.middleware("authenticate", "basic"));
```
Arguments
* _name_ - name of the passport middleware function.
* _argN_ - arguments to be passed to the middleware.
**#added**
`added` is an event that's fired with the id of a passport object after it's
created and added to the passpack collection.
```javascript
passpack.on("added", onAdded);
```
```javascript
passpack.on("added", function onAdded(id, instance) {
console.log(id);
});
```
Parameters
* _id_ - id of the passport instance.
* _instance_ - the passport instance itself.
Example
-------
Also see [example.js](https://github.com/deoxxa/passpack/blob/master/example.js).
```javascript
// $ npm install express passpack passport passport-http
var express = require("express"),
Passpack = require("passpack"),
Passport = require("passport").Passport,
BasicStrategy = require("passport-http").BasicStrategy;
var passpack = new Passpack();
passpack._getConfig = function _getConfig(req, cb) {
return cb(null, req.host, {
realm: req.host,
});
};
passpack._createInstance = function _createInstance(options, cb) {
var instance = new Passport();
instance.use("basic", new BasicStrategy(options, function(name, password, done) {
return done(null, {name: name});
}));
instance.serializeUser(function(user, cb) {
user.realm = options.realm;
cb(null, JSON.stringify(user));
});
instance.deserializeUser(function(id, cb) {
cb(null, JSON.parse(id));
});
cb(null, instance);
};
var app = express();
app.use(express.logger());
app.use(express.cookieParser());
app.use(express.session({secret: "keyboard cat"}));
app.use(passpack.attach());
app.use(passpack.middleware("initialize"));
app.use(passpack.middleware("session"));
app.use(app.router);
app.get("/login", passpack.middleware("authenticate", "basic", {
successRedirect: "/",
}));
app.get("/", function(req, res, next) {
if (!req.user) {
return res.redirect("/login");
}
return res.send("hello, " + JSON.stringify(req.user));
});
app.listen(3000, function() {
console.log("listening");
});
```
License
-------
3-clause BSD. A copy is included with the source.
Contact
-------
* GitHub ([deoxxa](http://github.com/deoxxa))
* Twitter ([@deoxxa](http://twitter.com/deoxxa))
* ADN ([@deoxxa](https://alpha.app.net/deoxxa))
* Email ([deoxxa@fknsrs.biz](mailto:deoxxa@fknsrs.biz))