2021-07-27 19:47:13 +02:00
|
|
|
const { BeanModel } = require("redbean-node/dist/bean-model");
|
2021-06-29 10:06:20 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* status:
|
|
|
|
* 0 = DOWN
|
|
|
|
* 1 = UP
|
2021-07-27 19:53:59 +02:00
|
|
|
* 2 = PENDING
|
2022-01-23 15:22:00 +01:00
|
|
|
* 3 = MAINTENANCE
|
2021-06-29 10:06:20 +02:00
|
|
|
*/
|
|
|
|
class Heartbeat extends BeanModel {
|
|
|
|
|
2022-04-16 22:11:45 +02:00
|
|
|
/**
|
2022-04-22 20:10:13 +02:00
|
|
|
* Return an object that ready to parse to JSON for public
|
2022-04-16 22:11:45 +02:00
|
|
|
* Only show necessary data to public
|
2023-08-11 09:46:41 +02:00
|
|
|
* @returns {object} Object ready to parse
|
2022-04-16 22:11:45 +02:00
|
|
|
*/
|
2021-09-19 17:24:51 +02:00
|
|
|
toPublicJSON() {
|
|
|
|
return {
|
|
|
|
status: this.status,
|
|
|
|
time: this.time,
|
|
|
|
msg: "", // Hide for public
|
|
|
|
ping: this.ping,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-04-16 22:11:45 +02:00
|
|
|
/**
|
2022-04-22 20:10:13 +02:00
|
|
|
* Return an object that ready to parse to JSON
|
2023-08-11 09:46:41 +02:00
|
|
|
* @returns {object} Object ready to parse
|
2022-04-16 22:11:45 +02:00
|
|
|
*/
|
2021-06-29 10:06:20 +02:00
|
|
|
toJSON() {
|
|
|
|
return {
|
|
|
|
monitorID: this.monitor_id,
|
|
|
|
status: this.status,
|
|
|
|
time: this.time,
|
|
|
|
msg: this.msg,
|
|
|
|
ping: this.ping,
|
|
|
|
important: this.important,
|
2021-06-30 20:02:54 +02:00
|
|
|
duration: this.duration,
|
2021-06-29 10:06:20 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Heartbeat;
|