mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 13:46:13 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const NotificationProvider = require("./notification-provider");
 | 
						|
const axios = require("axios");
 | 
						|
const { DOWN, UP } = require("../../src/util");
 | 
						|
 | 
						|
class WeCom extends NotificationProvider {
 | 
						|
 | 
						|
    name = "WeCom";
 | 
						|
 | 
						|
    async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
 | 
						|
        let okMsg = "Sent Successfully.";
 | 
						|
 | 
						|
        try {
 | 
						|
            let WeComUrl = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=" + notification.weComBotKey;
 | 
						|
            let config = {
 | 
						|
                headers: {
 | 
						|
                    "Content-Type": "application/json"
 | 
						|
                }
 | 
						|
            };
 | 
						|
            let body = this.composeMessage(heartbeatJSON, msg);
 | 
						|
            await axios.post(WeComUrl, body, config);
 | 
						|
            return okMsg;
 | 
						|
        } catch (error) {
 | 
						|
            this.throwGeneralAxiosError(error);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Generate the message to send
 | 
						|
     * @param {Object} heartbeatJSON Heartbeat details (For Up/Down only)
 | 
						|
     * @param {string} msg General message
 | 
						|
     * @returns {Object}
 | 
						|
     */
 | 
						|
    composeMessage(heartbeatJSON, msg) {
 | 
						|
        let title;
 | 
						|
        if (msg != null && heartbeatJSON != null && heartbeatJSON["status"] === UP) {
 | 
						|
            title = "UptimeKuma Monitor Up";
 | 
						|
        }
 | 
						|
        if (msg != null && heartbeatJSON != null && heartbeatJSON["status"] === DOWN) {
 | 
						|
            title = "UptimeKuma Monitor Down";
 | 
						|
        }
 | 
						|
        if (msg != null) {
 | 
						|
            title = "UptimeKuma Message";
 | 
						|
        }
 | 
						|
        return {
 | 
						|
            msgtype: "text",
 | 
						|
            text: {
 | 
						|
                content: title + msg
 | 
						|
            }
 | 
						|
        };
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
module.exports = WeCom;
 |