mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-15 01:54:10 -08:00
eca90a2b00
Some checks are pending
Auto Test / auto-test (18, ARM64) (push) Blocked by required conditions
Auto Test / auto-test (18, macos-latest) (push) Blocked by required conditions
Auto Test / auto-test (18, ubuntu-latest) (push) Blocked by required conditions
Auto Test / auto-test (18, windows-latest) (push) Blocked by required conditions
Auto Test / auto-test (20, ARM64) (push) Blocked by required conditions
Auto Test / auto-test (20, macos-latest) (push) Blocked by required conditions
Auto Test / auto-test (20, ubuntu-latest) (push) Blocked by required conditions
Auto Test / auto-test (20, windows-latest) (push) Blocked by required conditions
Auto Test / armv7-simple-test (18, ARMv7) (push) Waiting to run
Auto Test / armv7-simple-test (20, ARMv7) (push) Waiting to run
Auto Test / check-linters (push) Waiting to run
Auto Test / e2e-test (push) Waiting to run
CodeQL / Analyze (go) (push) Waiting to run
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
Merge Conflict Labeler / Labeling (push) Waiting to run
json-yaml-validate / json-yaml-validate (push) Waiting to run
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;
|