mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 05:36:13 +08:00 
			
		
		
		
	# Conflicts: # server/notification-providers/ntfy.js # src/components/notifications/Ntfy.vue # src/languages/en.js
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const NotificationProvider = require("./notification-provider");
 | 
						|
const axios = require("axios");
 | 
						|
 | 
						|
class Ntfy extends NotificationProvider {
 | 
						|
 | 
						|
    name = "ntfy";
 | 
						|
 | 
						|
    async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
 | 
						|
        let okMsg = "Sent Successfully.";
 | 
						|
        try {
 | 
						|
            let headers = {};
 | 
						|
            if (notification.ntfyusername) {
 | 
						|
                headers = {
 | 
						|
                    "Authorization": "Basic " + Buffer.from(notification.ntfyusername + ":" + notification.ntfypassword).toString("base64"),
 | 
						|
                };
 | 
						|
            }
 | 
						|
            let data = {
 | 
						|
                "topic": notification.ntfytopic,
 | 
						|
                "message": msg,
 | 
						|
                "priority": notification.ntfyPriority || 4,
 | 
						|
                "title": "Uptime-Kuma",
 | 
						|
            };
 | 
						|
 | 
						|
            if (notification.ntfyIcon) {
 | 
						|
                data.icon = notification.ntfyIcon;
 | 
						|
            }
 | 
						|
 | 
						|
            await axios.post(`${notification.ntfyserverurl}`, data, { headers: headers });
 | 
						|
 | 
						|
            return okMsg;
 | 
						|
 | 
						|
        } catch (error) {
 | 
						|
            this.throwGeneralAxiosError(error);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
module.exports = Ntfy;
 |