mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 05:36:13 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const NotificationProvider = require("./notification-provider");
 | 
						|
const axios = require("axios");
 | 
						|
 | 
						|
class Pushover extends NotificationProvider {
 | 
						|
 | 
						|
    name = "pushover";
 | 
						|
 | 
						|
    async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
 | 
						|
        let okMsg = "Sent Successfully.";
 | 
						|
        let pushoverlink = "https://api.pushover.net/1/messages.json";
 | 
						|
 | 
						|
        let data = {
 | 
						|
            "message": msg,
 | 
						|
            "user": notification.pushoveruserkey,
 | 
						|
            "token": notification.pushoverapptoken,
 | 
						|
            "sound": notification.pushoversounds,
 | 
						|
            "priority": notification.pushoverpriority,
 | 
						|
            "title": notification.pushovertitle,
 | 
						|
            "retry": "30",
 | 
						|
            "expire": "3600",
 | 
						|
            "html": 1,
 | 
						|
        };
 | 
						|
 | 
						|
        if (notification.pushoverdevice) {
 | 
						|
            data.device = notification.pushoverdevice;
 | 
						|
        }
 | 
						|
        if (notification.pushoverttl) {
 | 
						|
            data.ttl = notification.pushoverttl;
 | 
						|
        }
 | 
						|
 | 
						|
        try {
 | 
						|
            if (heartbeatJSON == null) {
 | 
						|
                await axios.post(pushoverlink, data);
 | 
						|
                return okMsg;
 | 
						|
            } else {
 | 
						|
                data.message += `\n<b>Time (${heartbeatJSON["timezone"]})</b>:${heartbeatJSON["localDateTime"]}`;
 | 
						|
                await axios.post(pushoverlink, data);
 | 
						|
                return okMsg;
 | 
						|
            }
 | 
						|
        } catch (error) {
 | 
						|
            this.throwGeneralAxiosError(error);
 | 
						|
        }
 | 
						|
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
module.exports = Pushover;
 |