2021-09-19 11:04:51 +00:00
|
|
|
const { BeanModel } = require("redbean-node/dist/bean-model");
|
|
|
|
const { R } = require("redbean-node");
|
|
|
|
|
|
|
|
class Group extends BeanModel {
|
|
|
|
|
2022-04-16 20:11:45 +00:00
|
|
|
/**
|
2022-04-22 18:10:13 +00:00
|
|
|
* Return an object that ready to parse to JSON for public
|
2022-04-16 20:11:45 +00:00
|
|
|
* Only show necessary data to public
|
2022-04-21 12:01:22 +00:00
|
|
|
* @param {boolean} [showTags=false] Should the JSON include monitor tags
|
2022-04-16 20:11:45 +00:00
|
|
|
* @returns {Object}
|
|
|
|
*/
|
2022-03-18 09:56:46 +00:00
|
|
|
async toPublicJSON(showTags = false) {
|
2021-09-19 15:24:51 +00:00
|
|
|
let monitorBeanList = await this.getMonitorList();
|
2021-09-19 11:04:51 +00:00
|
|
|
let monitorList = [];
|
|
|
|
|
|
|
|
for (let bean of monitorBeanList) {
|
2022-03-18 09:56:46 +00:00
|
|
|
monitorList.push(await bean.toPublicJSON(showTags));
|
2021-09-19 11:04:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
id: this.id,
|
|
|
|
name: this.name,
|
|
|
|
weight: this.weight,
|
|
|
|
monitorList,
|
|
|
|
};
|
|
|
|
}
|
2021-09-19 15:24:51 +00:00
|
|
|
|
2022-04-16 20:11:45 +00:00
|
|
|
/**
|
|
|
|
* Get all monitors
|
2022-04-21 19:02:18 +00:00
|
|
|
* @returns {Bean[]}
|
2022-04-16 20:11:45 +00:00
|
|
|
*/
|
2021-09-19 15:24:51 +00:00
|
|
|
async getMonitorList() {
|
|
|
|
return R.convertToBeans("monitor", await R.getAll(`
|
2022-06-11 16:23:12 +00:00
|
|
|
SELECT monitor.*, monitor_group.send_url FROM monitor, monitor_group
|
2021-09-19 15:24:51 +00:00
|
|
|
WHERE monitor.id = monitor_group.monitor_id
|
|
|
|
AND group_id = ?
|
2021-09-22 07:23:58 +00:00
|
|
|
ORDER BY monitor_group.weight
|
2021-09-19 15:24:51 +00:00
|
|
|
`, [
|
|
|
|
this.id,
|
|
|
|
]));
|
|
|
|
}
|
2021-09-19 11:04:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Group;
|