45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
let constants = require('./constants');
|
|
|
|
let cache = {}
|
|
|
|
|
|
function equalItems(a, b) {
|
|
if ( (typeof(a) === 'undefined') || a.isOffline || b.isOffline ) {
|
|
return false;
|
|
}
|
|
console.log("no idea how to compare this: " + JSON.stringify(a) );
|
|
console.log(" with this: " + JSON.stringify(b) );
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
function wereThereTooManyAttempts(sessionId, lineupItem) {
|
|
let obj = cache[sessionId];
|
|
let t1 = (new Date()).getTime();
|
|
if (typeof(obj) === 'undefined') {
|
|
previous = cache[sessionId] = {
|
|
t0: t1 - constants.TOO_FREQUENT * 5
|
|
};
|
|
|
|
} else {
|
|
clearTimeout(obj.timer);
|
|
}
|
|
previous.timer = setTimeout( () => {
|
|
cache[sessionId].timer = null;
|
|
delete cache[sessionId];
|
|
}, constants.TOO_FREQUENT*5 );
|
|
|
|
let result = false;
|
|
|
|
if (previous.t0 + constants.TOO_FREQUENT >= t1) {
|
|
//certainly too frequent
|
|
result = equalItems( previous.lineupItem, lineupItem );
|
|
}
|
|
cache[sessionId].t0 = t1;
|
|
cache[sessionId].lineupItem = lineupItem;
|
|
return result;
|
|
|
|
}
|
|
|
|
module.exports = wereThereTooManyAttempts; |