mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
61 lines
1.4 KiB
JavaScript
61 lines
1.4 KiB
JavaScript
const { BeanModel } = require("redbean-node/dist/bean-model");
|
|
const { R } = require("redbean-node");
|
|
|
|
class StatusPage extends BeanModel {
|
|
|
|
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;
|
|
}
|
|
|
|
async toJSON() {
|
|
return {
|
|
id: this.id,
|
|
slug: this.slug,
|
|
title: this.title,
|
|
description: this.description,
|
|
icon: this.getIcon(),
|
|
theme: this.theme,
|
|
published: !!this.published,
|
|
showTags: !!this.show_tags,
|
|
};
|
|
}
|
|
|
|
async toPublicJSON() {
|
|
return {
|
|
slug: this.slug,
|
|
title: this.title,
|
|
description: this.description,
|
|
icon: this.getIcon(),
|
|
theme: this.theme,
|
|
published: !!this.published,
|
|
showTags: !!this.show_tags,
|
|
};
|
|
}
|
|
|
|
static async slugToID(slug) {
|
|
return await R.getCell("SELECT id FROM status_page WHERE slug = ? ", [
|
|
slug
|
|
]);
|
|
}
|
|
|
|
getIcon() {
|
|
if (!this.icon) {
|
|
return "/icon.svg";
|
|
} else {
|
|
return this.icon;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = StatusPage;
|