mirror of https://github.com/louislam/uptime-kuma
				
				
				
			
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			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._monitorId,
 | 
						|
            status: this._status,
 | 
						|
            time: this._time,
 | 
						|
            msg: this._msg,
 | 
						|
            ping: this._ping,
 | 
						|
            important: this._important,
 | 
						|
            duration: this._duration,
 | 
						|
            retries: this._retries,
 | 
						|
        };
 | 
						|
    }
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
module.exports = Heartbeat;
 |