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
		
			
				
	
	
		
			79 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const NotificationProvider = require("./notification-provider");
 | 
						|
const axios = require("axios");
 | 
						|
const { DOWN } = require("../../src/util");
 | 
						|
 | 
						|
class Squadcast extends NotificationProvider {
 | 
						|
    name = "squadcast";
 | 
						|
 | 
						|
    /**
 | 
						|
     * @inheritdoc
 | 
						|
     */
 | 
						|
    async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
 | 
						|
        const okMsg = "Sent Successfully.";
 | 
						|
 | 
						|
        try {
 | 
						|
 | 
						|
            let config = {};
 | 
						|
            let data = {
 | 
						|
                message: msg,
 | 
						|
                description: "",
 | 
						|
                tags: {},
 | 
						|
                heartbeat: heartbeatJSON,
 | 
						|
                source: "uptime-kuma"
 | 
						|
            };
 | 
						|
 | 
						|
            if (heartbeatJSON !== null) {
 | 
						|
                data.description = heartbeatJSON["msg"];
 | 
						|
                data.event_id = heartbeatJSON["monitorID"];
 | 
						|
 | 
						|
                if (heartbeatJSON["status"] === DOWN) {
 | 
						|
                    data.message = `${monitorJSON["name"]} is DOWN`;
 | 
						|
                    data.status = "trigger";
 | 
						|
                } else {
 | 
						|
                    data.message = `${monitorJSON["name"]} is UP`;
 | 
						|
                    data.status = "resolve";
 | 
						|
                }
 | 
						|
 | 
						|
                let address;
 | 
						|
                switch (monitorJSON["type"]) {
 | 
						|
                    case "ping":
 | 
						|
                        address = monitorJSON["hostname"];
 | 
						|
                        break;
 | 
						|
                    case "port":
 | 
						|
                    case "dns":
 | 
						|
                    case "steam":
 | 
						|
                        address = monitorJSON["hostname"];
 | 
						|
                        if (monitorJSON["port"]) {
 | 
						|
                            address += ":" + monitorJSON["port"];
 | 
						|
                        }
 | 
						|
                        break;
 | 
						|
                    default:
 | 
						|
                        address = monitorJSON["url"];
 | 
						|
                        break;
 | 
						|
                }
 | 
						|
 | 
						|
                data.tags["AlertAddress"] = address;
 | 
						|
 | 
						|
                monitorJSON["tags"].forEach(tag => {
 | 
						|
                    data.tags[tag["name"]] = {
 | 
						|
                        value: tag["value"]
 | 
						|
                    };
 | 
						|
                    if (tag["color"] !== null) {
 | 
						|
                        data.tags[tag["name"]]["color"] = tag["color"];
 | 
						|
                    }
 | 
						|
                });
 | 
						|
            }
 | 
						|
 | 
						|
            await axios.post(notification.squadcastWebhookURL, data, config);
 | 
						|
            return okMsg;
 | 
						|
 | 
						|
        } catch (error) {
 | 
						|
            this.throwGeneralAxiosError(error);
 | 
						|
        }
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
module.exports = Squadcast;
 |