Improve update check (#5945)

* Send etherpad version in update check request
* Cache etherpad informations for one hour
* Change format of User-Agent
* Improve exception handling
pull/5946/head
Stefan 2023-09-25 11:05:33 +00:00 committed by GitHub
parent f2faa3fa84
commit f9a3a6aaae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 29 additions and 18 deletions

View File

@ -2,28 +2,39 @@
const semver = require('semver');
const settings = require('./Settings');
const axios = require('axios');
let infos;
const headers = {
'User-Agent': 'Etherpad/' + settings.getEpVersion(),
}
const loadEtherpadInformations = () =>
axios.get('https://static.etherpad.org/info.json')
.then(async resp => {
try {
infos = await resp.data;
if (infos === undefined || infos === null) {
await Promise.reject("Could not retrieve current version")
return
}
return await Promise.resolve(infos);
}
catch (err) {
return await Promise.reject(err);
}
})
const updateInterval = 60 * 60 * 1000; // 1 hour
let infos;
let lastLoadingTime = null;
const loadEtherpadInformations = () => {
if (lastLoadingTime !== null && Date.now() - lastLoadingTime < updateInterval) {
return Promise.resolve(infos);
}
return axios.get('https://static.etherpad.org/info.json', {headers: headers})
.then(async resp => {
infos = await resp.data;
if (infos === undefined || infos === null) {
await Promise.reject("Could not retrieve current version")
return
}
lastLoadingTime = Date.now();
return await Promise.resolve(infos);
})
.catch(async err => {
return await Promise.reject(err);
});
}
exports.getLatestVersion = () => {
exports.needsUpdate();
return infos.latestVersion;
exports.needsUpdate().catch();
return infos?.latestVersion;
};
exports.needsUpdate = async (cb) => {