2015-01-28 23:41:13 +01:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2015-01-28 23:41:13 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
function generateToken(length) {
|
|
|
|
var c = "ABCDEFGHIJKLMNOPQRSTUZWXYZabcdefghijklmnopqrstuvwxyz1234567890";
|
|
|
|
var token = [];
|
|
|
|
for (var i=0;i<length;i++) {
|
|
|
|
token.push(c[Math.floor(Math.random()*c.length)]);
|
|
|
|
}
|
|
|
|
return token.join("");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-14 00:37:59 +01:00
|
|
|
var storage;
|
2015-03-30 15:14:32 +02:00
|
|
|
|
|
|
|
var sessionExpiryTime
|
|
|
|
|
2015-03-14 00:37:59 +01:00
|
|
|
var sessions = {};
|
2015-01-28 23:41:13 +01:00
|
|
|
|
2016-05-31 15:39:50 +02:00
|
|
|
var loadedSessions = null;
|
|
|
|
|
2015-03-30 15:14:32 +02:00
|
|
|
function expireSessions() {
|
|
|
|
var now = Date.now();
|
|
|
|
var modified = false;
|
|
|
|
for (var t in sessions) {
|
|
|
|
if (sessions.hasOwnProperty(t)) {
|
|
|
|
var session = sessions[t];
|
|
|
|
if (!session.hasOwnProperty("expires") || session.expires < now) {
|
|
|
|
delete sessions[t];
|
|
|
|
modified = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (modified) {
|
|
|
|
return storage.saveSessions(sessions);
|
|
|
|
} else {
|
2018-01-24 00:08:11 +01:00
|
|
|
return Promise.resolve();
|
2015-03-30 15:14:32 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-31 15:39:50 +02:00
|
|
|
function loadSessions() {
|
|
|
|
if (loadedSessions === null) {
|
|
|
|
loadedSessions = storage.getSessions().then(function(_sessions) {
|
|
|
|
sessions = _sessions||{};
|
|
|
|
return expireSessions();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return loadedSessions;
|
|
|
|
}
|
2015-03-30 15:14:32 +02:00
|
|
|
|
2015-01-28 23:41:13 +01:00
|
|
|
module.exports = {
|
2015-03-30 15:14:32 +02:00
|
|
|
init: function(adminAuthSettings, _storage) {
|
2015-03-14 00:37:59 +01:00
|
|
|
storage = _storage;
|
2015-03-30 15:14:32 +02:00
|
|
|
sessionExpiryTime = adminAuthSettings.sessionExpiryTime || 604800; // 1 week in seconds
|
2016-05-31 15:39:50 +02:00
|
|
|
// At this point, storage will not have been initialised, so defer loading
|
|
|
|
// the sessions until there's a request for them.
|
|
|
|
loadedSessions = null;
|
2018-01-24 00:08:11 +01:00
|
|
|
return Promise.resolve();
|
2015-01-28 23:41:13 +01:00
|
|
|
},
|
|
|
|
get: function(token) {
|
2016-05-31 15:39:50 +02:00
|
|
|
return loadSessions().then(function() {
|
|
|
|
if (sessions[token]) {
|
|
|
|
if (sessions[token].expires < Date.now()) {
|
|
|
|
return expireSessions().then(function() { return null });
|
|
|
|
}
|
2015-03-30 15:14:32 +02:00
|
|
|
}
|
2018-01-24 00:08:11 +01:00
|
|
|
return Promise.resolve(sessions[token]);
|
2016-05-31 15:39:50 +02:00
|
|
|
});
|
2015-01-28 23:41:13 +01:00
|
|
|
},
|
|
|
|
create: function(user,client,scope) {
|
2016-05-31 15:39:50 +02:00
|
|
|
return loadSessions().then(function() {
|
|
|
|
var accessToken = generateToken(128);
|
|
|
|
|
|
|
|
var accessTokenExpiresAt = Date.now() + (sessionExpiryTime*1000);
|
|
|
|
|
|
|
|
var session = {
|
|
|
|
user:user,
|
|
|
|
client:client,
|
|
|
|
scope:scope,
|
2015-01-28 23:41:13 +01:00
|
|
|
accessToken: accessToken,
|
2016-05-31 15:39:50 +02:00
|
|
|
expires: accessTokenExpiresAt
|
|
|
|
};
|
|
|
|
sessions[accessToken] = session;
|
|
|
|
return storage.saveSessions(sessions).then(function() {
|
|
|
|
return {
|
|
|
|
accessToken: accessToken,
|
|
|
|
expires_in: sessionExpiryTime
|
|
|
|
}
|
|
|
|
});
|
2015-01-28 23:41:13 +01:00
|
|
|
});
|
|
|
|
},
|
|
|
|
revoke: function(token) {
|
2016-05-31 15:39:50 +02:00
|
|
|
return loadSessions().then(function() {
|
|
|
|
delete sessions[token];
|
|
|
|
return storage.saveSessions(sessions);
|
|
|
|
});
|
2015-01-28 23:41:13 +01:00
|
|
|
}
|
|
|
|
}
|