-
Notifications
You must be signed in to change notification settings - Fork 3
/
token.js
135 lines (121 loc) · 4.06 KB
/
token.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
/*!
* Copyright 2014 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Construct a token.
*
* Based on a JSON Web Token string, construct a token object. Optionally
* if a `clientId` is provided, the token may be tested for roles with
* `hasRole()`.
*
* @constructor
*
* @param {String} token The JSON Web Token formatted token string.
* @param {String} clientId Optional clientId if this is an `access_token`.
*/
function Token(token, clientId) {
this.token = token;
this.clientId = clientId;
if ( token ) {
try {
var parts = token.split('.');
this.header = JSON.parse( new Buffer( parts[0], 'base64' ).toString() );
this.content = JSON.parse( new Buffer( parts[1], 'base64' ).toString() );
this.signature = new Buffer( parts[2], 'base64' );
this.signed = parts[0] + '.' + parts[1];
} catch (err) {
this.content = {
expiresAt: 0
};
}
}
}
/**
* Determine if this token is expired.
*
* @return {boolean} `true` if it is expired, otherwise `false`.
*/
Token.prototype.isExpired = function() {
if ( ( this.content.exp * 1000 ) < Date.now() ) {
return true;
}
};
/**
* Determine if this token has an associated role.
*
* This method is only functional if the token is constructed
* with a `clientId` parameter.
*
* The parameter matches a role specification using the following rules:
*
* - If the name contains no colons, then the name is taken as the entire
* name of a role within the current application, as specified via
* `clientId`.
* - If the name starts with the literal `realm:`, the subsequent portion
* is taken as the name of a _realm-level_ role.
* - Otherwise, the name is split at the colon, with the first portion being
* taken as the name of an arbitrary application, and the subsequent portion
* as the name of a role with that app.
*
* @param {String} name The role name specifier.
*
* @return {boolean} `true` if this token has the specified role, otherwise `false`.
*/
Token.prototype.hasRole = function(name) {
if ( ! this.clientId ) {
return false;
}
var parts = name.split(':');
if ( parts.length == 1 ) {
return this.hasApplicationRole( this.clientId, parts[0] );
}
if ( parts[0] == 'realm' ) {
return this.hasRealmRole( parts[1] );
}
return this.hasApplicationRole( parts[0], parts[1] );
};
/**
* Determine if this token has an associated specific application role.
*
* Even if `clientId` is not set, this method may be used to explicitly test
* roles for any given application.
*
* @param {String} appName The identifier of the application to test.
* @param {String} roleName The name of the role within that application to test.
*
* @return {boolean} `true` if this token has the specified role, otherwise `false`.
*/
Token.prototype.hasApplicationRole = function(appName, roleName) {
var appRoles = this.content.resource_access[appName];
if ( ! appRoles ) {
return false;
}
return ( appRoles.roles.indexOf( roleName ) >= 0 );
};
/**
* Determine if this token has an associated specific realm-level role.
*
* Even if `clientId` is not set, this method may be used to explicitly test
* roles for the realm.
*
* @param {String} appName The identifier of the application to test.
* @param {String} roleName The name of the role within that application to test.
*
* @return {boolean} `true` if this token has the specified role, otherwise `false`.
*/
Token.prototype.hasRealmRole = function(roleName) {
return ( this.content.realm_access.roles.indexOf( roleName ) >= 0 );
};
module.exports = Token;