-
Notifications
You must be signed in to change notification settings - Fork 8
/
validate.js
266 lines (237 loc) · 8.95 KB
/
validate.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
'use strict';
const process = require('process');
const bcrypt = require('bcrypt');
const config = require('./config');
const db = require('./db');
const utils = require('./utils');
const Client = require('./models').Client;
const User = require('./models').User;
const saltRounds = 10;
/** Validate object to attach all functions to */
const validate = {};
/** Suppress tracing for things like unit testing */
const displayTrace = process.env.DISPLAY_TRACE === 'true';
/**
* Log the message and throw it as an Error
* @param {String} msg - Message to log and throw
* @throws {Error} The given message as an error
* @returns {undefined}
*/
validate.logAndThrow = (msg) => {
if (displayTrace) {
console.trace(msg);
}
throw new Error(msg);
};
/**
* Given a user and a password this will return the user if it exists and the password matches,
* otherwise this will throw an error
* @param {Object} user - The user profile
* @param {String} password - The user's password
* @throws {Error} If the user does not exist or the password does not match
* @returns {Object} The user if valid
*/
validate.user = (user, password) => {
validate.userExists(user);
// Load hash from your password DB.
if (!bcrypt.compareSync(password, user.password)) {
validate.logAndThrow('User password does not match');
}
return user;
};
/**
* Given a user this will return the user if it exists otherwise this will throw an error
* @param {Object} user - The user profile
* @throws {Error} If the user does not exist or the password does not match
* @returns {Object} The user if valid
*/
validate.userExists = (user) => {
if (user === null || user === undefined) {
validate.logAndThrow('User does not exist');
}
return user;
};
/**
* Given a client and a client secret this return the client if it exists and its clientSecret
* matches, otherwise this will throw an error
* @param {Object} client - The client profile
* @param {String} clientSecret - The client's secret
* @throws {Error} If the client or the client secret does not match
* @returns {Object} The client if valid
*/
validate.client = (client, clientSecret) => {
validate.clientExists(client);
if (client.clientSecret !== clientSecret) {
validate.logAndThrow('Client secret does not match');
}
return client;
};
/**
* Given a client this will return the client if it exists , otherwise this will throw an error
* @param {Object} client - The client profile
* @throws {Error} If the client does not exist
* @returns {Object} The client if valid
*/
validate.clientExists = (client) => {
if (client == null) {
validate.logAndThrow('Client does not exist');
}
return client;
};
/**
* Given a token and accessToken this will return either the user or the client associated with
* the token if valid. Otherwise this will throw.
* @param {Object} token - The token
* @param {Object} accessToken - The access token
* @throws {Error} If the token is not valid
* @returns {Promise} Resolved with the user or client associated with the token if valid
*/
validate.token = (token, accessToken) => {
utils.verifyToken(accessToken);
// token is a user token
if (token.userID != null) {
return new User({id: token.userID})
.fetch()
.then(client => validate.userExists(client))
.then((client) => { return client.serialize(); });
}
return new Client({clientId: token.clientID})
.fetch({debug: true})
.then(client => validate.clientExists(client))
.then((client) => { return client.serialize(); });
};
/**
* Given a refresh token and client this will return the refresh token if it exists and the client
* id's match otherwise this will throw an error
* throw an error
* @param {Object} token - The token record from the DB
* @param {Object} refreshToken - The raw refresh token
* @param {Object} client - The client profile
* @throws {Error} If the refresh token does not exist or the client id's don't match
* @returns {Object} The refresh token if valid
*/
validate.refreshToken = (token, refreshToken, client) => {
utils.verifyToken(refreshToken);
if (client.id !== token.clientID) {
validate.logAndThrow('RefreshToken clientID does not match client id given');
}
return refreshToken;
};
/**
* Given a auth code, client, and redirectURI this will return the auth code if it exists and is
* not 0, the client id matches it, and the redirectURI matches it, otherwise this will throw an
* error.
* @param {Object} code - The auth code record from the DB
* @param {Object} authCode - The raw auth code
* @param {Object} client - The client profile
* @param {Object} redirectURI - The redirectURI to check against
* @throws {Error} If the auth code does not exist or is zero or does not match the client or
* the redirectURI
* @returns {Object} The auth code token if valid
*/
validate.authCode = (code, authCode, client, redirectURI) => {
utils.verifyToken(code);
if (client.id !== authCode.clientID) {
validate.logAndThrow('AuthCode clientID does not match client id given');
}
// Fixme: why is this disabled?
if (redirectURI !== authCode.redirectURI) {
// validate.logAndThrow('AuthCode redirectURI does not match redirectURI given');
}
return authCode;
};
/**
* I mimic openid connect's offline scope to determine if we send a refresh token or not
* @param {Array} scope - The scope to check if is a refresh token if it has 'offline_access'
* @returns {Boolean} true If the scope is offline_access, otherwise false
*/
validate.isRefreshToken = ({ scope }) => scope != null && scope.indexOf('offline_access') === 0;
/**
* Given a userId, clientID, and scope this will generate a refresh token, save it, and return it
* @param {Object} userId - The user profile
* @throws {Object} clientID - the client profile
* @throws {Object} scope - the scope
* @returns {Promise} The resolved refresh token after saved
*/
validate.generateRefreshToken = ({ userId, clientID, scope }) => {
const refreshToken = utils.createToken({ sub : userId, exp : config.refreshToken.expiresIn });
return db.refreshTokens.save(refreshToken, userId, clientID, scope)
.then(() => refreshToken);
};
/**
* Given an auth code this will generate a access token, save that token and then return it.
* @param {userID} userID - The user profile
* @param {clientID} clientID - The client profile
* @param {scope} scope - The scope
* @returns {Promise} The resolved refresh token after saved
*/
validate.generateToken = ({ userID, clientID, scope }) => {
const token = utils.createToken({ sub : userID, exp : config.token.expiresIn });
const expiration = config.token.calculateExpirationDate();
return db.accessTokens.save(token, expiration, userID, clientID, scope)
.then(() => token);
};
/**
* Given an auth code this will generate a access and refresh token, save both of those and return
* them if the auth code indicates to return both. Otherwise only an access token will be returned.
* @param {Object} authCode - The auth code
* @throws {Error} If the auth code does not exist or is zero
* @returns {Promise} The resolved refresh and access tokens as an array
*/
validate.generateTokens = (authCode) => {
if (validate.isRefreshToken(authCode)) {
return Promise.all([
validate.generateToken(authCode),
validate.generateRefreshToken(authCode),
]);
}
return Promise.all([validate.generateToken(authCode)]);
};
/**
* Given a token this will resolve a promise with the token if it is not null and the expiration
* date has not been exceeded. Otherwise this will throw a HTTP error.
* @param {Object} token - The token to check
* @returns {Promise} Resolved with the token if it is a valid token otherwise rejected with error
*/
validate.tokenForHttp = token =>
new Promise((resolve, reject) => {
try {
utils.verifyToken(token);
} catch (err) {
const error = new Error('invalid_token');
error.status = 400;
reject(error);
}
resolve(token);
});
/**
* Given a token this will return the token if it is not null. Otherwise this will throw a
* HTTP error.
* @param {Object} token - The token to check
* @throws {Error} If the client is null
* @returns {Object} The client if it is a valid client
*/
validate.tokenExistsForHttp = (token) => {
if (token == null) {
const error = new Error('invalid_token');
error.status = 400;
throw error;
}
return token;
};
/**
* Given a client this will return the client if it is not null. Otherwise this will throw a
* HTTP error.
* @param {Object} client - The client to check
* @throws {Error} If the client is null
* @returns {Object} The client if it is a valid client
*/
validate.clientExistsForHttp = (client) => {
if (client == null) {
const error = new Error('invalid_token');
error.status = 400;
throw error;
}
return client;
};
module.exports = validate;