Check for updates every day
This commit is contained in:
parent
efc421c0a6
commit
3f928d8742
@ -1,6 +1,7 @@
|
||||
"use strict";
|
||||
|
||||
const got = require("got");
|
||||
const colors = require("chalk");
|
||||
const log = require("../log");
|
||||
const pkg = require("../../package.json");
|
||||
|
||||
@ -9,6 +10,7 @@ const TIME_TO_LIVE = 15 * 60 * 1000; // 15 minutes, in milliseconds
|
||||
module.exports = {
|
||||
isUpdateAvailable: false,
|
||||
fetch,
|
||||
checkForUpdates,
|
||||
};
|
||||
|
||||
const versions = {
|
||||
@ -87,3 +89,22 @@ function updateVersions(response) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function checkForUpdates() {
|
||||
fetch().then((versionData) => {
|
||||
if (!module.exports.isUpdateAvailable) {
|
||||
// Check for updates every 24 hours + random jitter of <3 hours
|
||||
setTimeout(checkForUpdates, 24 * 3600 * 1000 + Math.floor(Math.random() * 10000000));
|
||||
}
|
||||
|
||||
if (!versionData.latest) {
|
||||
return;
|
||||
}
|
||||
|
||||
log.info(
|
||||
`The Lounge ${colors.green(
|
||||
versionData.latest.version
|
||||
)} is available. Read more on GitHub: ${versionData.latest.url}`
|
||||
);
|
||||
});
|
||||
}
|
||||
|
@ -241,17 +241,7 @@ module.exports = function(options = {}) {
|
||||
}
|
||||
});
|
||||
|
||||
changelog.fetch().then((versionData) => {
|
||||
if (!versionData.latest) {
|
||||
return;
|
||||
}
|
||||
|
||||
log.info(
|
||||
`The Lounge ${colors.green(
|
||||
versionData.latest.version
|
||||
)} is available. Read more on GitHub: ${versionData.latest.url}`
|
||||
);
|
||||
});
|
||||
changelog.checkForUpdates();
|
||||
|
||||
return server;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user