Express NYMag User
Volunteering user information for internal use. This is not authentication; It just looks for a plain-text, unsigned
cookie that contains a username and LDAP groups.
NOTE: Use with care. It's the same as user's volunteering their own username, and is not auth. Temporary until OAuth.
Usage
const express = require('express'),
app = express(),
expressNYMagAuth = require('@nymdev/express-nymag-auth'),
authServer = 'http://auth.nymag.com:5000/login?redirect_to=';
app.use(expressNYMagAuth({
blockDomains: ['nymag.com'],
redirectTo: function (originalUrl) {
return authServer + encodeURIComponent(originalUrl);
},
isProtected: function (req) {
return !!req.query.edit;
}
}));
Installation
npm install --save @nymdev/express-nymag-auth