mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 13:46:13 +08:00 
			
		
		
		
	- I unified where in file the name of `NotificationProvider.name` is placed - I made sure that all the providers adhere to the signature of `NotificationProvider.send()` - I made sure that all the providers use `okMsg` if returning success messages directly from the function. Here a discussion should be had: Should this be refactored into a constant of `NotificationProvider`? I could imagine that `NotificationProvider.SENDING_SUCCESSFULL` could be a suitable alternative. - I made sure all providers have the URL they `POST`/`GET` to be extraced into a variable. => refactored this way due to Nelsons suggestion
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const NotificationProvider = require("./notification-provider");
 | 
						|
const axios = require("axios");
 | 
						|
const { setting } = require("../util-server");
 | 
						|
const { getMonitorRelativeURL, UP, DOWN } = require("../../src/util");
 | 
						|
 | 
						|
class AlertNow extends NotificationProvider {
 | 
						|
    name = "AlertNow";
 | 
						|
 | 
						|
    /**
 | 
						|
     * @inheritdoc
 | 
						|
     */
 | 
						|
    async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
 | 
						|
        const okMsg = "Sent Successfully.";
 | 
						|
 | 
						|
        try {
 | 
						|
            let textMsg = "";
 | 
						|
            let status = "open";
 | 
						|
            let eventType = "ERROR";
 | 
						|
            let eventId = new Date().toISOString().slice(0, 10).replace(/-/g, "");
 | 
						|
 | 
						|
            if (heartbeatJSON && heartbeatJSON.status === UP) {
 | 
						|
                textMsg = `[${heartbeatJSON.name}] ✅ Application is back online`;
 | 
						|
                status = "close";
 | 
						|
                eventType = "INFO";
 | 
						|
                eventId += `_${heartbeatJSON.name.replace(/\s/g, "")}`;
 | 
						|
            } else if (heartbeatJSON && heartbeatJSON.status === DOWN) {
 | 
						|
                textMsg = `[${heartbeatJSON.name}] 🔴 Application went down`;
 | 
						|
            }
 | 
						|
 | 
						|
            textMsg += ` - ${msg}`;
 | 
						|
 | 
						|
            const baseURL = await setting("primaryBaseURL");
 | 
						|
            if (baseURL && monitorJSON) {
 | 
						|
                textMsg += ` >> ${baseURL + getMonitorRelativeURL(monitorJSON.id)}`;
 | 
						|
            }
 | 
						|
 | 
						|
            const data = {
 | 
						|
                "summary": textMsg,
 | 
						|
                "status": status,
 | 
						|
                "event_type": eventType,
 | 
						|
                "event_id": eventId,
 | 
						|
            };
 | 
						|
 | 
						|
            await axios.post(notification.alertNowWebhookURL, data);
 | 
						|
            return okMsg;
 | 
						|
        } catch (error) {
 | 
						|
            this.throwGeneralAxiosError(error);
 | 
						|
        }
 | 
						|
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
module.exports = AlertNow;
 |