-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.js
177 lines (159 loc) · 5.52 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
'use strict';
var assert = require('assert');
var querystring = require('querystring');
var util = require('util');
var crypto = require('crypto');
var fs = require('fs');
var debug = require('debug')('raven');
var passport = require('passport');
var RAVEN_URL_DEBUG = 'https://demo.raven.cam.ac.uk/auth/authenticate.html';
var RAVEN_URL_PRODUCTION = 'https://raven.cam.ac.uk/auth/authenticate.html';
var KEYS = {
production: fs.readFileSync(__dirname + '/pubkey2.crt'),
debug: fs.readFileSync(__dirname + '/pubkey901.crt')
};
var RESPONSE_PARTS = [
'ver',
'status',
'msg',
'issue',
'id',
'url',
'principal',
'ptags',
'auth',
'sso',
'life',
'params',
'kid',
'sig'
];
var ERROR_CODES = {
410: 'Raven authentication was cancelled by the user.',
510: 'No mutually acceptable authentication types available.',
520: 'Unsupported Raven WAA2WLS protocol version.',
530: 'Raven authentication failed due to error in request.',
540: 'Interaction would be required.',
560: 'WAA not authorised to authenticate with Raven.',
570: 'Raven authentication was declined on this occassion.'
};
exports = module.exports = Strategy;
exports.Strategy = Strategy;
function Strategy(options, verify) {
if (typeof options.audience !== 'string') throw new Error('You must provide an audience option.');
if (typeof verify !== 'function') throw new Error('You must provide a verify function.');
this.name = 'raven';
this._verify = verify;
this._opts = options;
this.clockOffset = options.clockOffset || 0;
this.clockMargin = options.clockMargin || 60000;
this.debug = options.debug || false;
}
util.inherits(Strategy, passport.Strategy);
/**
* Authenticate request
*
* @param {Object} req
* @api protected
*/
Strategy.prototype.authenticate = function(req) {
if (req.query['WLS-Response']) {
return this.processResponse(req);
} else {
return this.redirectToAuthenticate(req);
}
};
Strategy.prototype.redirectToAuthenticate = function (req) {
var params = querystring.stringify({
ver: 3,
url: this._opts.audience + req.url,
desc: this._opts.desc,
msg: this._opts.msg,
iact: this._opts.iact === true ? 'yes' : this._opts.iact === false ? 'no' : null
});
this.redirect((this.debug ? RAVEN_URL_DEBUG : RAVEN_URL_PRODUCTION) + '?' + params);
};
Strategy.prototype.processResponse = function (req) {
var self = this;
var response = decodeResponse(req);
if (response.status !== '200') {
var message = ERROR_CODES[response.status] ||
('Raven authentication failed with unknown status ' + response.status + '.');
debug(message);
if (response.status === '410') return this.fail();
else return this.error(new Error(message));
} else if (response.status === '200') {
var interval = (now() + this.clockOffset) - parseDate(response.issue);
if (interval < 0) interval = -interval;
if (interval < this.clockMargin) {
debug('Checking certificate.');
//data = parameters - (sig + kid)
var data = req.query['WLS-Response'].split('!').slice(0, -2).join('!');
assert(response.kid === '2' || response.kid === '901');
if (checkSignature(data, response.sig, this.debug ? KEYS.debug : KEYS.production)) {
debug('Raven response signature check passed.');
response.isCurrent = response.ptags === 'current';
if (self._opts['passReqToCallback']) {
return self._verify(req, response.principal, response, function (err, user, info) {
if (err) { return self.error(err); }
if (!user) { return self.fail(info); }
self.success(user, info);
});
} else {
return self._verify(response.principal, response, function (err, user, info) {
if (err) { return self.error(err); }
if (!user) { return self.fail(info); }
self.success(user, info);
});
}
} else {
debug('Raven response signature check failed.');
return this.error(new Error('Raven response signature check failed.'));
}
} else {
debug('Timestamp out of date.');
return this.error(new Error('Timestamp out of date.'));
}
}
};
function decodeResponse(req) {
var values = req.query['WLS-Response'].split('!');
if (values.length >= 1 && ['1', '2'].indexOf(values[RESPONSE_PARTS.indexOf('ver')]) !== -1) {
// The response could have any version up to the one we specified in the request
// In versions 1 and 2 of the protocol, there is no ptags response parameter, so we add an empty value to avoid any index issues
values.splice(RESPONSE_PARTS.indexOf('ptags'), 0, '');
}
if (values.length !== RESPONSE_PARTS.length) {
debug('Incorrect length of WLS-Response.');
throw new Error('Incorrect length of WLS-Response.');
}
var response = {};
values.forEach(function (item, i) {
response[RESPONSE_PARTS[i]] = item;
});
return response;
}
function checkSignature(data, sig, key) {
data = decodeURI(data);
sig = wlsDecode(decodeURI(sig));
var verifier = crypto.createVerify('SHA1');
verifier.update(data);
var res = verifier.verify(key, sig, 'base64');
if (res) {
debug('Verification passed.');
return true;
} else {
debug('Verification failed.');
return false;
}
}
function wlsDecode(str) {
return str.replace(/-/g, '+').replace(/\./g, '/').replace(/_/g, '=');
}
function parseDate(str) {
var match = /^(\d\d\d\d)(\d\d)(\d\d)T(\d\d)(\d\d)(\d\d)Z$/.exec(str);
return Date.UTC(match[1], (+match[2]) - 1, match[3], match[4], match[5], match[6]);
}
function now() {
return Date.now();
}