fix an API change that caused a typeError

This commit is contained in:
ansuz 2020-02-03 18:47:18 -05:00
parent 88be40ede3
commit 46dfa026f0
2 changed files with 15 additions and 11 deletions

View File

@ -59,14 +59,18 @@ Core.getSession = function (Sessions, key) {
return user;
};
Core.expireSession = function (Sessions, key, cb) {
Core.expireSession = function (Sessions, safeKey) {
var session = Sessions[safeKey];
if (!session) { return; }
if (session.blobstage) {
session.blobstage.close();
}
delete Sessions[safeKey];
};
Core.expireSessionAsync = function (Env, safeKey, cb) {
setTimeout(function () {
var session = Sessions[key];
if (!session) { return; }
if (session.blobstage) {
session.blobstage.close();
}
delete Sessions[key];
Core.expireSession(Sessions, safeKey);
cb(void 0, 'OK');
});
};
@ -77,10 +81,10 @@ var isTooOld = function (time, now) {
Core.expireSessions = function (Sessions) {
var now = +new Date();
Object.keys(Sessions).forEach(function (key) {
var session = Sessions[key];
Object.keys(Sessions).forEach(function (safeKey) {
var session = Sessions[safeKey];
if (session && isTooOld(session.atime, now)) {
Core.expireSession(Sessions, key);
Core.expireSession(Sessions, safeKey);
}
});
};

View File

@ -130,7 +130,7 @@ const AUTHENTICATED_USER_SCOPED = {
GET_TOTAL_SIZE: Pinning.getTotalSize,
UPDATE_LIMITS: Quota.updateLimits,
GET_LIMIT: Pinning.getLimit,
EXPIRE_SESSION: Core.expireSession,
EXPIRE_SESSION: Core.expireSessionAsync,
REMOVE_PINS: Pinning.removePins,
TRIM_PINS: Pinning.trimPins,
SET_METADATA: Metadata.setMetadata,