2021-09-14 07:55:45 +01:00
|
|
|
let express = require("express");
|
2022-06-01 06:05:12 +01:00
|
|
|
const { allowDevAllOrigin, allowAllOrigin, percentageToColor, filterAndJoin, send403 } = require("../util-server");
|
2021-09-14 07:55:45 +01:00
|
|
|
const { R } = require("redbean-node");
|
2021-09-21 17:58:22 +01:00
|
|
|
const apicache = require("../modules/apicache");
|
2021-09-22 08:10:08 +01:00
|
|
|
const Monitor = require("../model/monitor");
|
2021-09-30 17:09:43 +01:00
|
|
|
const dayjs = require("dayjs");
|
2022-04-30 12:40:34 +01:00
|
|
|
const { UP, MAINTENANCE, DOWN, flipStatus, log } = require("../../src/util");
|
2022-03-16 07:38:10 +00:00
|
|
|
const StatusPage = require("../model/status_page");
|
2022-04-19 08:38:59 +01:00
|
|
|
const { UptimeKumaServer } = require("../uptime-kuma-server");
|
2022-01-03 14:48:52 +00:00
|
|
|
const { makeBadge } = require("badge-maker");
|
2022-01-04 11:21:53 +00:00
|
|
|
const { badgeConstants } = require("../config");
|
2022-04-20 09:10:14 +01:00
|
|
|
|
2021-09-14 07:55:45 +01:00
|
|
|
let router = express.Router();
|
|
|
|
|
2021-09-21 17:58:22 +01:00
|
|
|
let cache = apicache.middleware;
|
2022-04-19 08:38:59 +01:00
|
|
|
const server = UptimeKumaServer.getInstance();
|
2021-09-30 17:09:43 +01:00
|
|
|
let io = server.io;
|
2021-09-21 17:58:22 +01:00
|
|
|
|
2022-04-06 15:43:22 +01:00
|
|
|
router.get("/api/entry-page", async (request, response) => {
|
2021-09-15 13:40:26 +01:00
|
|
|
allowDevAllOrigin(response);
|
2022-04-06 15:43:22 +01:00
|
|
|
|
|
|
|
let result = { };
|
|
|
|
|
|
|
|
if (request.hostname in StatusPage.domainMappingList) {
|
|
|
|
result.type = "statusPageMatchedDomain";
|
|
|
|
result.statusPageSlug = StatusPage.domainMappingList[request.hostname];
|
|
|
|
} else {
|
|
|
|
result.type = "entryPage";
|
|
|
|
result.entryPage = server.entryPage;
|
|
|
|
}
|
|
|
|
response.json(result);
|
2021-09-15 13:40:26 +01:00
|
|
|
});
|
|
|
|
|
2021-09-30 17:09:43 +01:00
|
|
|
router.get("/api/push/:pushToken", async (request, response) => {
|
|
|
|
try {
|
2021-10-14 07:42:34 +01:00
|
|
|
|
2021-09-30 17:09:43 +01:00
|
|
|
let pushToken = request.params.pushToken;
|
|
|
|
let msg = request.query.msg || "OK";
|
2021-10-14 15:32:15 +01:00
|
|
|
let ping = request.query.ping || null;
|
2022-04-28 16:44:08 +01:00
|
|
|
let statusString = request.query.status || "up";
|
|
|
|
let status = (statusString === "up") ? UP : DOWN;
|
2021-09-30 17:09:43 +01:00
|
|
|
|
|
|
|
let monitor = await R.findOne("monitor", " push_token = ? AND active = 1 ", [
|
|
|
|
pushToken
|
|
|
|
]);
|
|
|
|
|
|
|
|
if (! monitor) {
|
|
|
|
throw new Error("Monitor not found or not active.");
|
|
|
|
}
|
|
|
|
|
2021-12-08 06:59:59 +00:00
|
|
|
const previousHeartbeat = await Monitor.getPreviousHeartbeat(monitor.id);
|
2021-10-14 07:42:34 +01:00
|
|
|
|
2021-10-14 15:32:15 +01:00
|
|
|
if (monitor.isUpsideDown()) {
|
|
|
|
status = flipStatus(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
let isFirstBeat = true;
|
|
|
|
let previousStatus = status;
|
|
|
|
let duration = 0;
|
|
|
|
|
2021-09-30 17:09:43 +01:00
|
|
|
let bean = R.dispense("heartbeat");
|
2022-03-28 22:28:50 +01:00
|
|
|
bean.time = R.isoDateTimeMillis(dayjs.utc());
|
2021-10-14 15:32:15 +01:00
|
|
|
|
|
|
|
if (previousHeartbeat) {
|
|
|
|
isFirstBeat = false;
|
|
|
|
previousStatus = previousHeartbeat.status;
|
|
|
|
duration = dayjs(bean.time).diff(dayjs(previousHeartbeat.time), "second");
|
|
|
|
}
|
|
|
|
|
2022-01-25 18:07:27 +00:00
|
|
|
if (await Monitor.isUnderMaintenance(monitor.id)) {
|
2022-01-23 14:22:00 +00:00
|
|
|
msg = "Monitor under maintenance";
|
|
|
|
status = MAINTENANCE;
|
|
|
|
}
|
|
|
|
|
2022-05-07 00:05:24 +01:00
|
|
|
log.debug("router", `/api/push/ called at ${dayjs().format("YYYY-MM-DD HH:mm:ss.SSS")}`);
|
2022-04-13 16:33:37 +01:00
|
|
|
log.debug("router", "PreviousStatus: " + previousStatus);
|
|
|
|
log.debug("router", "Current Status: " + status);
|
2021-10-14 15:32:15 +01:00
|
|
|
|
|
|
|
bean.important = Monitor.isImportantBeat(isFirstBeat, previousStatus, status);
|
|
|
|
bean.monitor_id = monitor.id;
|
|
|
|
bean.status = status;
|
2021-09-30 17:09:43 +01:00
|
|
|
bean.msg = msg;
|
2021-10-01 09:43:11 +01:00
|
|
|
bean.ping = ping;
|
2021-10-14 15:32:15 +01:00
|
|
|
bean.duration = duration;
|
2021-09-30 17:26:27 +01:00
|
|
|
|
2021-09-30 17:09:43 +01:00
|
|
|
await R.store(bean);
|
|
|
|
|
|
|
|
io.to(monitor.user_id).emit("heartbeat", bean.toJSON());
|
|
|
|
Monitor.sendStats(io, monitor.id, monitor.user_id);
|
|
|
|
|
|
|
|
response.json({
|
|
|
|
ok: true,
|
|
|
|
});
|
2021-10-14 15:32:15 +01:00
|
|
|
|
2022-01-23 14:22:00 +00:00
|
|
|
if (Monitor.isImportantForNotification(isFirstBeat, previousStatus, status)) {
|
2021-10-14 15:32:15 +01:00
|
|
|
await Monitor.sendNotification(isFirstBeat, monitor, bean);
|
|
|
|
}
|
|
|
|
|
2021-09-30 17:09:43 +01:00
|
|
|
} catch (e) {
|
2022-06-06 15:40:26 +01:00
|
|
|
response.status(404).json({
|
2021-09-30 17:09:43 +01:00
|
|
|
ok: false,
|
|
|
|
msg: e.message
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-01-04 11:21:53 +00:00
|
|
|
router.get("/api/badge/:id/status", cache("5 minutes"), async (request, response) => {
|
|
|
|
allowAllOrigin(response);
|
|
|
|
|
|
|
|
const {
|
|
|
|
label,
|
|
|
|
upLabel = "Up",
|
|
|
|
downLabel = "Down",
|
|
|
|
upColor = badgeConstants.defaultUpColor,
|
|
|
|
downColor = badgeConstants.defaultDownColor,
|
2022-01-04 15:00:21 +00:00
|
|
|
style = badgeConstants.defaultStyle,
|
|
|
|
value, // for demo purpose only
|
2022-01-04 11:21:53 +00:00
|
|
|
} = request.query;
|
|
|
|
|
|
|
|
try {
|
|
|
|
const requestedMonitorId = parseInt(request.params.id, 10);
|
|
|
|
const overrideValue = value !== undefined ? parseInt(value) : undefined;
|
|
|
|
|
|
|
|
let publicMonitor = await R.getRow(`
|
|
|
|
SELECT monitor_group.monitor_id FROM monitor_group, \`group\`
|
|
|
|
WHERE monitor_group.group_id = \`group\`.id
|
|
|
|
AND monitor_group.monitor_id = ?
|
|
|
|
AND public = 1
|
|
|
|
`,
|
2022-04-20 09:10:14 +01:00
|
|
|
[ requestedMonitorId ]
|
2022-01-04 11:21:53 +00:00
|
|
|
);
|
|
|
|
|
2022-01-04 12:40:53 +00:00
|
|
|
const badgeValues = { style };
|
2022-01-04 11:21:53 +00:00
|
|
|
|
|
|
|
if (!publicMonitor) {
|
|
|
|
// return a "N/A" badge in naColor (grey), if monitor is not public / not available / non exsitant
|
|
|
|
|
|
|
|
badgeValues.message = "N/A";
|
|
|
|
badgeValues.color = badgeConstants.naColor;
|
|
|
|
} else {
|
|
|
|
const heartbeat = await Monitor.getPreviousHeartbeat(requestedMonitorId);
|
|
|
|
const state = overrideValue !== undefined ? overrideValue : heartbeat.status === 1;
|
|
|
|
|
2022-06-08 11:05:10 +01:00
|
|
|
badgeValues.label = label ? label : "";
|
2022-01-04 11:21:53 +00:00
|
|
|
badgeValues.color = state ? upColor : downColor;
|
|
|
|
badgeValues.message = label ?? state ? upLabel : downLabel;
|
|
|
|
}
|
|
|
|
|
|
|
|
// build the svg based on given values
|
|
|
|
const svg = makeBadge(badgeValues);
|
|
|
|
|
|
|
|
response.type("image/svg+xml");
|
|
|
|
response.send(svg);
|
|
|
|
} catch (error) {
|
|
|
|
send403(response, error.message);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
router.get("/api/badge/:id/uptime/:duration?", cache("5 minutes"), async (request, response) => {
|
|
|
|
allowAllOrigin(response);
|
2022-01-03 14:48:52 +00:00
|
|
|
|
|
|
|
const {
|
|
|
|
label,
|
|
|
|
labelPrefix,
|
2022-01-04 15:00:21 +00:00
|
|
|
labelSuffix = badgeConstants.defaultUptimeLabelSuffix,
|
2022-01-03 14:48:52 +00:00
|
|
|
prefix,
|
2022-01-04 15:00:21 +00:00
|
|
|
suffix = badgeConstants.defaultUptimeValueSuffix,
|
2022-01-04 11:21:53 +00:00
|
|
|
color,
|
|
|
|
labelColor,
|
2022-01-04 15:00:21 +00:00
|
|
|
style = badgeConstants.defaultStyle,
|
|
|
|
value, // for demo purpose only
|
2022-01-03 14:48:52 +00:00
|
|
|
} = request.query;
|
|
|
|
|
|
|
|
try {
|
|
|
|
const requestedMonitorId = parseInt(request.params.id, 10);
|
2022-01-04 11:21:53 +00:00
|
|
|
// if no duration is given, set value to 24 (h)
|
|
|
|
const requestedDuration = request.params.duration !== undefined ? parseInt(request.params.duration, 10) : 24;
|
|
|
|
const overrideValue = value && parseFloat(value);
|
2022-01-03 14:48:52 +00:00
|
|
|
|
|
|
|
let publicMonitor = await R.getRow(`
|
|
|
|
SELECT monitor_group.monitor_id FROM monitor_group, \`group\`
|
|
|
|
WHERE monitor_group.group_id = \`group\`.id
|
|
|
|
AND monitor_group.monitor_id = ?
|
|
|
|
AND public = 1
|
|
|
|
`,
|
2022-04-20 09:10:14 +01:00
|
|
|
[ requestedMonitorId ]
|
2022-01-03 14:48:52 +00:00
|
|
|
);
|
|
|
|
|
2022-01-04 12:40:53 +00:00
|
|
|
const badgeValues = { style };
|
2022-01-03 14:48:52 +00:00
|
|
|
|
|
|
|
if (!publicMonitor) {
|
2022-01-04 11:21:53 +00:00
|
|
|
// return a "N/A" badge in naColor (grey), if monitor is not public / not available / non exsitant
|
2022-01-03 14:48:52 +00:00
|
|
|
badgeValues.message = "N/A";
|
2022-01-04 11:21:53 +00:00
|
|
|
badgeValues.color = badgeConstants.naColor;
|
2022-01-03 14:48:52 +00:00
|
|
|
} else {
|
2022-01-04 11:21:53 +00:00
|
|
|
const uptime = overrideValue ?? await Monitor.calcUptime(
|
|
|
|
requestedDuration,
|
2022-01-03 14:48:52 +00:00
|
|
|
requestedMonitorId
|
|
|
|
);
|
|
|
|
|
2022-01-05 14:25:42 +00:00
|
|
|
// limit the displayed uptime percentage to four (two, when displayed as percent) decimal digits
|
2022-01-05 10:48:25 +00:00
|
|
|
const cleanUptime = parseFloat(uptime.toPrecision(4));
|
|
|
|
|
2022-01-04 15:00:21 +00:00
|
|
|
// use a given, custom color or calculate one based on the uptime value
|
2022-01-04 11:21:53 +00:00
|
|
|
badgeValues.color = color ?? percentageToColor(uptime);
|
2022-01-05 14:25:56 +00:00
|
|
|
// use a given, custom labelColor or use the default badge label color (defined by badge-maker)
|
2022-01-04 11:21:53 +00:00
|
|
|
badgeValues.labelColor = labelColor ?? "";
|
2022-01-05 14:26:07 +00:00
|
|
|
// build a lable string. If a custom label is given, override the default one (requestedDuration)
|
2022-04-20 09:10:14 +01:00
|
|
|
badgeValues.label = filterAndJoin([ labelPrefix, label ?? requestedDuration, labelSuffix ]);
|
|
|
|
badgeValues.message = filterAndJoin([ prefix, `${cleanUptime * 100}`, suffix ]);
|
2022-01-04 11:21:53 +00:00
|
|
|
}
|
2022-01-03 14:48:52 +00:00
|
|
|
|
2022-01-04 11:21:53 +00:00
|
|
|
// build the SVG based on given values
|
|
|
|
const svg = makeBadge(badgeValues);
|
|
|
|
|
|
|
|
response.type("image/svg+xml");
|
|
|
|
response.send(svg);
|
|
|
|
} catch (error) {
|
|
|
|
send403(response, error.message);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
router.get("/api/badge/:id/ping/:duration?", cache("5 minutes"), async (request, response) => {
|
|
|
|
allowAllOrigin(response);
|
|
|
|
|
|
|
|
const {
|
|
|
|
label,
|
|
|
|
labelPrefix,
|
2022-01-04 15:00:21 +00:00
|
|
|
labelSuffix = badgeConstants.defaultPingLabelSuffix,
|
2022-01-04 11:21:53 +00:00
|
|
|
prefix,
|
2022-01-04 15:00:21 +00:00
|
|
|
suffix = badgeConstants.defaultPingValueSuffix,
|
2022-01-04 11:21:53 +00:00
|
|
|
color = badgeConstants.defaultPingColor,
|
|
|
|
labelColor,
|
2022-01-04 15:00:21 +00:00
|
|
|
style = badgeConstants.defaultStyle,
|
|
|
|
value, // for demo purpose only
|
2022-01-04 11:21:53 +00:00
|
|
|
} = request.query;
|
|
|
|
|
|
|
|
try {
|
|
|
|
const requestedMonitorId = parseInt(request.params.id, 10);
|
|
|
|
|
|
|
|
// Default duration is 24 (h) if not defined in queryParam, limited to 720h (30d)
|
|
|
|
const requestedDuration = Math.min(request.params.duration ? parseInt(request.params.duration, 10) : 24, 720);
|
|
|
|
const overrideValue = value && parseFloat(value);
|
|
|
|
|
|
|
|
const publicAvgPing = parseInt(await R.getCell(`
|
|
|
|
SELECT AVG(ping) FROM monitor_group, \`group\`, heartbeat
|
|
|
|
WHERE monitor_group.group_id = \`group\`.id
|
|
|
|
AND heartbeat.time > DATETIME('now', ? || ' hours')
|
|
|
|
AND heartbeat.ping IS NOT NULL
|
|
|
|
AND public = 1
|
|
|
|
AND heartbeat.monitor_id = ?
|
|
|
|
`,
|
2022-04-20 09:10:14 +01:00
|
|
|
[ -requestedDuration, requestedMonitorId ]
|
2022-01-04 11:21:53 +00:00
|
|
|
));
|
|
|
|
|
2022-01-04 12:40:53 +00:00
|
|
|
const badgeValues = { style };
|
2022-01-04 11:21:53 +00:00
|
|
|
|
|
|
|
if (!publicAvgPing) {
|
|
|
|
// return a "N/A" badge in naColor (grey), if monitor is not public / not available / non exsitant
|
|
|
|
|
|
|
|
badgeValues.message = "N/A";
|
|
|
|
badgeValues.color = badgeConstants.naColor;
|
|
|
|
} else {
|
|
|
|
const avgPing = parseInt(overrideValue ?? publicAvgPing);
|
|
|
|
|
|
|
|
badgeValues.color = color;
|
2022-01-05 14:26:23 +00:00
|
|
|
// use a given, custom labelColor or use the default badge label color (defined by badge-maker)
|
2022-01-04 11:21:53 +00:00
|
|
|
badgeValues.labelColor = labelColor ?? "";
|
2022-01-05 14:26:29 +00:00
|
|
|
// build a lable string. If a custom label is given, override the default one (requestedDuration)
|
2022-04-20 09:10:14 +01:00
|
|
|
badgeValues.label = filterAndJoin([ labelPrefix, label ?? requestedDuration, labelSuffix ]);
|
|
|
|
badgeValues.message = filterAndJoin([ prefix, avgPing, suffix ]);
|
2022-01-03 14:48:52 +00:00
|
|
|
}
|
|
|
|
|
2022-01-04 11:23:16 +00:00
|
|
|
// build the SVG based on given values
|
2022-01-03 14:48:52 +00:00
|
|
|
const svg = makeBadge(badgeValues);
|
|
|
|
|
|
|
|
response.type("image/svg+xml");
|
|
|
|
response.send(svg);
|
|
|
|
} catch (error) {
|
|
|
|
send403(response, error.message);
|
|
|
|
}
|
2022-01-04 11:21:53 +00:00
|
|
|
});
|
2022-01-03 14:48:52 +00:00
|
|
|
|
2021-09-14 07:55:45 +01:00
|
|
|
module.exports = router;
|