mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
bd5496d267
* fix: update checker - fixed bug where it would make the request to uptime.kuma.pet regardless of the `checkUpdate` config; - defined constants in the top of the document for easier configuration/documentation; - removed unnecessary compareVersions: we were comparing the same var on both sides res.data.beta, so it will always be equal. * improvement: better logging and added doc * improved UPDATE_CHECKER_INTERVAL_MS const --------- Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
70 lines
1.8 KiB
JavaScript
70 lines
1.8 KiB
JavaScript
const { setSetting, setting } = require("./util-server");
|
|
const axios = require("axios");
|
|
const compareVersions = require("compare-versions");
|
|
const { log } = require("../src/util");
|
|
|
|
exports.version = require("../package.json").version;
|
|
exports.latestVersion = null;
|
|
|
|
// How much time in ms to wait between update checks
|
|
const UPDATE_CHECKER_INTERVAL_MS = 1000 * 60 * 60 * 48;
|
|
const UPDATE_CHECKER_LATEST_VERSION_URL = "https://uptime.kuma.pet/version";
|
|
|
|
let interval;
|
|
|
|
exports.startInterval = () => {
|
|
let check = async () => {
|
|
if (await setting("checkUpdate") === false) {
|
|
return;
|
|
}
|
|
|
|
log.debug("update-checker", "Retrieving latest versions");
|
|
|
|
try {
|
|
const res = await axios.get(UPDATE_CHECKER_LATEST_VERSION_URL);
|
|
|
|
// For debug
|
|
if (process.env.TEST_CHECK_VERSION === "1") {
|
|
res.data.slow = "1000.0.0";
|
|
}
|
|
|
|
let checkBeta = await setting("checkBeta");
|
|
|
|
if (checkBeta && res.data.beta) {
|
|
if (compareVersions.compare(res.data.beta, res.data.slow, ">")) {
|
|
exports.latestVersion = res.data.beta;
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (res.data.slow) {
|
|
exports.latestVersion = res.data.slow;
|
|
}
|
|
|
|
} catch (_) {
|
|
log.info("update-checker", "Failed to check for new versions");
|
|
}
|
|
|
|
};
|
|
|
|
check();
|
|
interval = setInterval(check, UPDATE_CHECKER_INTERVAL_MS);
|
|
};
|
|
|
|
/**
|
|
* Enable the check update feature
|
|
* @param {boolean} value Should the check update feature be enabled?
|
|
* @returns {Promise<void>}
|
|
*/
|
|
exports.enableCheckUpdate = async (value) => {
|
|
await setSetting("checkUpdate", value);
|
|
|
|
clearInterval(interval);
|
|
|
|
if (value) {
|
|
exports.startInterval();
|
|
}
|
|
};
|
|
|
|
exports.socket = null;
|