[ develop | DONE | CHANGED] Cache: update isAllowed Method, correct https check, decode urls before check

This commit is contained in:
argirok 2024-02-12 11:13:38 +02:00
parent c20002c9e9
commit 3b058ee74d
1 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ let cache = () => {
const end = histogram.startTimer({scheme: scheme, target: target, cache: 'miss'});
res.sendResponse = res.send;
res.send = (body) => {
if(isAllowedToBeCached(scheme, target)) {
if(isAllowedToBeCached(decodeURI(scheme), decodeURI(target))) {
let alreadyCached = lruCache.has(key);
entries.set(lruCache.size);
if (!alreadyCached) {
@ -85,9 +85,9 @@ let cache = () => {
};
function isAllowedToBeCached(scheme, target){
if(environment != "development"){
return scheme.indexOf("https%3A%2F%2F")!=-1 && ( target.indexOf(".openaire.eu%2F") !=-1 || target.indexOf(".zenodo.org%2Fapi%2F") !=-1 || target.indexOf("lab.idiap.ch%2Fenermaps" != -1))
return scheme.indexOf("https")!=-1 && ( target.indexOf(".openaire.eu/") !=-1 || target.indexOf(".zenodo.org/api/") !=-1 || target.indexOf("lab.idiap.ch/enermaps" != -1))
} else if(environment == "development"){
return target.indexOf(".openaire.eu%2F") !=-1 || target.indexOf(".di.uoa.gr") !=-1 || target.indexOf("dev-openaire.d4science.org") !=-1 || target.indexOf("lab.idiap.ch%2Fenermaps") != -1
return target.indexOf(".openaire.eu/") !=-1 || target.indexOf(".di.uoa.gr") !=-1 || target.indexOf("dev-openaire.d4science.org") !=-1 || target.indexOf("lab.idiap.ch/enermaps") != -1
}
return true;
}