2022-03-10 08:34:30 -05:00
|
|
|
const { BeanModel } = require("redbean-node/dist/bean-model");
|
|
|
|
const { R } = require("redbean-node");
|
|
|
|
|
|
|
|
class StatusPage extends BeanModel {
|
|
|
|
|
2022-04-06 10:43:22 -04:00
|
|
|
static domainMappingList = { };
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return object like this: { "test-uptime.kuma.pet": "default" }
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
|
|
|
static async loadDomainMappingList() {
|
|
|
|
this.domainMappingList = await R.getAssoc(`
|
|
|
|
SELECT domain, slug
|
|
|
|
FROM status_page, status_page_cname
|
|
|
|
WHERE status_page.id = status_page_cname.status_page_id
|
|
|
|
`);
|
|
|
|
}
|
|
|
|
|
2022-03-10 08:34:30 -05:00
|
|
|
static async sendStatusPageList(io, socket) {
|
|
|
|
let result = {};
|
|
|
|
|
|
|
|
let list = await R.findAll("status_page", " ORDER BY title ");
|
|
|
|
|
|
|
|
for (let item of list) {
|
|
|
|
result[item.id] = await item.toJSON();
|
|
|
|
}
|
|
|
|
|
|
|
|
io.to(socket.userID).emit("statusPageList", result);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2022-04-06 10:43:22 -04:00
|
|
|
getDomainList() {
|
|
|
|
let domainList = [];
|
|
|
|
for (let domain in StatusPage.domainMappingList) {
|
|
|
|
let s = StatusPage.domainMappingList[domain];
|
|
|
|
|
|
|
|
if (this.slug === s) {
|
|
|
|
domainList.push(domain);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return domainList;
|
|
|
|
}
|
|
|
|
|
2022-03-10 08:34:30 -05:00
|
|
|
async toJSON() {
|
|
|
|
return {
|
|
|
|
id: this.id,
|
|
|
|
slug: this.slug,
|
|
|
|
title: this.title,
|
2022-03-16 02:14:47 -04:00
|
|
|
description: this.description,
|
2022-03-17 04:42:26 -04:00
|
|
|
icon: this.getIcon(),
|
2022-03-10 08:34:30 -05:00
|
|
|
theme: this.theme,
|
|
|
|
published: !!this.published,
|
|
|
|
showTags: !!this.show_tags,
|
2022-04-06 10:43:22 -04:00
|
|
|
domainList: this.getDomainList(),
|
2022-03-10 08:34:30 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
async toPublicJSON() {
|
|
|
|
return {
|
|
|
|
slug: this.slug,
|
|
|
|
title: this.title,
|
2022-03-16 02:14:47 -04:00
|
|
|
description: this.description,
|
2022-03-17 04:42:26 -04:00
|
|
|
icon: this.getIcon(),
|
2022-03-10 08:34:30 -05:00
|
|
|
theme: this.theme,
|
|
|
|
published: !!this.published,
|
|
|
|
showTags: !!this.show_tags,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-03-16 03:38:10 -04:00
|
|
|
static async slugToID(slug) {
|
|
|
|
return await R.getCell("SELECT id FROM status_page WHERE slug = ? ", [
|
|
|
|
slug
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2022-03-17 04:42:26 -04:00
|
|
|
getIcon() {
|
|
|
|
if (!this.icon) {
|
|
|
|
return "/icon.svg";
|
|
|
|
} else {
|
|
|
|
return this.icon;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-10 08:34:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = StatusPage;
|