mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
8a92054c2b
* Added JSDoc to eslint rules Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Fixed JSDoc eslint errors Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Update the check-linters workflow to Node.js 20 --------- Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
45 lines
988 B
JavaScript
45 lines
988 B
JavaScript
const { BeanModel } = require("redbean-node/dist/bean-model");
|
|
|
|
/**
|
|
* status:
|
|
* 0 = DOWN
|
|
* 1 = UP
|
|
* 2 = PENDING
|
|
* 3 = MAINTENANCE
|
|
*/
|
|
class Heartbeat extends BeanModel {
|
|
|
|
/**
|
|
* Return an object that ready to parse to JSON for public
|
|
* Only show necessary data to public
|
|
* @returns {object} Object ready to parse
|
|
*/
|
|
toPublicJSON() {
|
|
return {
|
|
status: this.status,
|
|
time: this.time,
|
|
msg: "", // Hide for public
|
|
ping: this.ping,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Return an object that ready to parse to JSON
|
|
* @returns {object} Object ready to parse
|
|
*/
|
|
toJSON() {
|
|
return {
|
|
monitorID: this.monitor_id,
|
|
status: this.status,
|
|
time: this.time,
|
|
msg: this.msg,
|
|
ping: this.ping,
|
|
important: this.important,
|
|
duration: this.duration,
|
|
};
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Heartbeat;
|