-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtokens.js
99 lines (86 loc) · 3.25 KB
/
tokens.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
/**
* Tokens are used to send back a generic key that indicates that you have been logged in in the past. Having a valid
* token means that once you log in, through the application you will not have to do it again unless the tokens have
* been revoked or expired. This is handy when you have to do many operations at once. You would just log in, get a token
* and send the token around to ensure that you have access to the system.
*/
var tokens = function(token) {
'use strict';
var coordinator = require('./coordinator'),
middleware = require('../middleware'),
roles = require('../security/roles'),
_ = require('lodash'),
Kontx = require('../utils/kontx'),
Strings = require('../strings'),
strings = new Strings(),
createError = require('../utils/error');
function selfOrRole(role){
function userHasRights(userPrivLevel){
if(!_.isNumber(userPrivLevel)){
userPrivLevel = roles[userPrivLevel.toUpperCase()];
}
return (userPrivLevel <= parseInt(role, 10));
}
return function selfOrRole(kontx, next){
var userKontx = _.extend({}, kontx.user),
userPrivLevel = userKontx.role,
isValid = userHasRights(userPrivLevel),
err = createError(strings.group('codes').forbidden, strings.group('errors').user_privileges_exceeded);
//If user doesn't have rights verify that they are performing operation on their own token.
if (!isValid){
isValid = (kontx.args[0] === kontx.token);
}
next((isValid) ? null : err);
};
}
coordinator.use('tokens.impersonate', [
middleware.identity,
middleware.role(roles.ADMIN),
middleware.event('parse'),
middleware.event('validate'),
middleware.tokens.impersonate,
middleware.event('out')
]);
coordinator.use('tokens.getNew', [
middleware.identity,
middleware.event('parse'),
middleware.event('validate'),
middleware.tokens.getNew,
middleware.event('out')
]);
coordinator.use('tokens.deleteById', [
middleware.identity,
selfOrRole(roles.ADMIN),
middleware.event('parse'),
middleware.event('validate'),
middleware.tokens.deleteById,
middleware.event('out'),
middleware.event('delete')
]);
coordinator.use('tokens.logout', [
middleware.identity,
middleware.event('parse'),
middleware.event('validate'),
function(kontx, next){
kontx.args[0] = kontx.token;
next();
},
middleware.tokens.deleteById,
middleware.event('out')
]);
return {
deleteById: function(id){
return coordinator.handle('tokens.deleteById', [id], Kontx(token));
},
logout: function(){
return coordinator.handle('tokens.logout', [], Kontx(token));
},
getNew: function(type){
return coordinator.handle('tokens.getNew', [type], Kontx(token));
},
impersonate: function(userId){
return coordinator.handle('tokens.impersonate', [userId], Kontx(token));
}
};
};
module.exports = tokens;