-
Notifications
You must be signed in to change notification settings - Fork 0
/
oauth2.js
237 lines (219 loc) · 9.56 KB
/
oauth2.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
'use strict';
// Register supported grant types.
//
// OAuth 2.0 specifies a framework that allows users to grant client
// applications limited access to their protected resources. It does this
// through a process of the user granting access, and the client exchanging
// the grant for an access token.
const config = require('./config');
const db = require('./db');
const login = require('connect-ensure-login');
const oauth2orize = require('oauth2orize');
const passport = require('passport');
const utils = require('./utils');
const validate = require('./validate');
// create OAuth 2.0 server
const server = oauth2orize.createServer();
// Configured expiresIn
const expiresIn = { expires_in : config.token.expiresIn };
/**
* Grant authorization codes
*
* The callback takes the `client` requesting authorization, the `redirectURI`
* (which is used as a verifier in the subsequent exchange), the authenticated
* `user` granting access, and their response, which contains approved scope,
* duration, etc. as parsed by the application. The application issues a code,
* which is bound to these values, and will be exchanged for an access token.
*/
server.grant(oauth2orize.grant.code((client, redirectURI, user, ares, done) => {
const code = utils.createToken({ sub : user.id, exp : config.codeToken.expiresIn });
db.authorizationCodes.save(code, client.id, redirectURI, user.id, client.scope)
.then(() => done(null, code))
.catch(err => done(err));
}));
/**
* Grant implicit authorization.
*
* The callback takes the `client` requesting authorization, the authenticated
* `user` granting access, and their response, which contains approved scope,
* duration, etc. as parsed by the application. The application issues a token,
* which is bound to these values.
*/
server.grant(oauth2orize.grant.token((client, user, ares, done) => {
const token = utils.createToken({ sub : user.id, exp : config.token.expiresIn });
const expiration = config.token.calculateExpirationDate();
db.accessTokens.save(token, expiration, user.id, client.id, client.scope)
.then(() => done(null, token, expiresIn))
.catch(err => done(err));
}));
/**
* Exchange authorization codes for access tokens.
*
* The callback accepts the `client`, which is exchanging `code` and any
* `redirectURI` from the authorization request for verification. If these values
* are validated, the application issues an access token on behalf of the user who
* authorized the code.
*/
server.exchange(oauth2orize.exchange.code((client, code, redirectURI, done) => {
db.authorizationCodes.delete(code)
.then(authCode => validate.authCode(code, authCode, client, redirectURI))
.then(authCode => validate.generateTokens(authCode))
.then((tokens) => {
if (tokens.length === 1) {
return done(null, tokens[0], null, expiresIn);
}
if (tokens.length === 2) {
return done(null, tokens[0], tokens[1], expiresIn);
}
throw new Error('Error exchanging auth code for tokens');
})
.catch(() => done(null, false));
}));
/**
* Exchange user id and password for access tokens.
*
* The callback accepts the `client`, which is exchanging the user's name and password
* from the token request for verification. If these values are validated, the
* application issues an access token on behalf of the user who authorized the code.
*/
server.exchange(oauth2orize.exchange.password((client, username, password, scope, done) => {
db.users.findByUsername(username)
.then(user => validate.user(user, password))
.then(user => validate.generateTokens({ scope, userID: user.id, clientID: client.id }))
.then((tokens) => {
if (tokens === false) {
return done(null, false);
}
if (tokens.length === 1) {
return done(null, tokens[0], null, expiresIn);
}
if (tokens.length === 2) {
return done(null, tokens[0], tokens[1], expiresIn);
}
throw new Error('Error exchanging password for tokens');
})
.catch(() => done(null, false));
}));
/**
* Exchange the client id and password/secret for an access token.
*
* The callback accepts the `client`, which is exchanging the client's id and
* password/secret from the token request for verification. If these values are validated, the
* application issues an access token on behalf of the client who authorized the code.
*/
server.exchange(oauth2orize.exchange.clientCredentials((client, scope, done) => {
const token = utils.createToken({ sub : client.id, exp : config.token.expiresIn });
const expiration = config.token.calculateExpirationDate();
// Pass in a null for user id since there is no user when using this grant type
db.accessTokens.save(token, expiration, null, client.id, scope)
.then(() => done(null, token, null, expiresIn))
.catch(err => done(err));
}));
/**
* Exchange the refresh token for an access token.
*
* The callback accepts the `client`, which is exchanging the client's id from the token
* request for verification. If this value is validated, the application issues an access
* token on behalf of the client who authorized the code
*/
server.exchange(oauth2orize.exchange.refreshToken((client, refreshToken, scope, done) => {
db.refreshTokens.find(refreshToken)
.then(foundRefreshToken => validate.refreshToken(foundRefreshToken, refreshToken, client))
.then(foundRefreshToken => validate.generateToken(foundRefreshToken))
.then(token => done(null, token, null, expiresIn))
.catch(() => done(null, false));
}));
/*
* User authorization endpoint
*
* `authorization` middleware accepts a `validate` callback which is
* responsible for validating the client making the authorization request. In
* doing so, is recommended that the `redirectURI` be checked against a
* registered value, although security requirements may vary across
* implementations. Once validated, the `done` callback must be invoked with
* a `client` instance, as well as the `redirectURI` to which the user will be
* redirected after an authorization decision is obtained.
*
* This middleware simply initializes a new authorization transaction. It is
* the application's responsibility to authenticate the user and render a dialog
* to obtain their approval (displaying details about the client requesting
* authorization). We accomplish that here by routing through `ensureLoggedIn()`
* first, and rendering the `dialog` view.
*/
exports.authorization = [
login.ensureLoggedIn(),
server.authorization((clientID, redirectURI, scope, done) => {
db.clients.findByClientId(clientID)
.then((client) => {
if (client) {
client.scope = scope; // eslint-disable-line no-param-reassign
}
// WARNING: For security purposes, it is highly advisable to check that
// redirectURI provided by the client matches one registered with
// the server. For simplicity, this example does not. You have
// been warned.
return done(null, client, redirectURI);
})
.catch(err => done(err));
}), (req, res, next) => {
// Render the decision dialog if the client isn't a trusted client
// TODO: Make a mechanism so that if this isn't a trusted client, the user can record that
// they have consented but also make a mechanism so that if the user revokes access to any of
// the clients then they will have to re-consent.
db.clients.findByClientId(req.query.client_id)
.then((client) => {
if (client != null && client.trustedClient && client.trustedClient === true) {
// This is how we short call the decision like the dialog below does
server.decision({ loadTransaction: false }, (serverReq, callback) => {
callback(null, { allow: true });
})(req, res, next);
} else {
res.render('dialog', { transactionID: req.oauth2.transactionID, user: req.user, client: req.oauth2.client });
}
})
.catch(() =>
res.render('dialog', { transactionID: req.oauth2.transactionID, user: req.user, client: req.oauth2.client }));
}];
/**
* User decision endpoint
*
* `decision` middleware processes a user's decision to allow or deny access
* requested by a client application. Based on the grant type requested by the
* client, the above grant middleware configured above will be invoked to send
* a response.
*/
exports.decision = [
login.ensureLoggedIn(),
server.decision(),
];
/**
* Token endpoint
*
* `token` middleware handles client requests to exchange authorization grants
* for access tokens. Based on the grant type being exchanged, the above
* exchange middleware will be invoked to handle the request. Clients must
* authenticate when making requests to this endpoint.
*/
exports.token = [
passport.authenticate(['basic', 'oauth2-client-password'], { session: false }),
server.token(),
server.errorHandler(),
];
// Register serialialization and deserialization functions.
//
// When a client redirects a user to user authorization endpoint, an
// authorization transaction is initiated. To complete the transaction, the
// user must authenticate and approve the authorization request. Because this
// may involve multiple HTTPS request/response exchanges, the transaction is
// stored in the session.
//
// An application must supply serialization functions, which determine how the
// client object is serialized into the session. Typically this will be a
// simple matter of serializing the client's ID, and deserializing by finding
// the client by ID from the database.
server.serializeClient((client, done) => done(null, client.id));
server.deserializeClient((id, done) => {
db.clients.find(id)
.then(client => done(null, client))
.catch(err => done(err));
});