mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 13:46:13 +08:00 
			
		
		
		
	Co-authored-by: Frank Elsinga <frank@elsinga.de> Co-authored-by: Matthew Nickson <mnickson@sidingsmedia.com>
		
			
				
	
	
		
			32 lines
		
	
	
		
			927 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			927 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const NotificationProvider = require("./notification-provider");
 | 
						|
const axios = require("axios");
 | 
						|
const { UP } = require("../../src/util");
 | 
						|
 | 
						|
class Bitrix24 extends NotificationProvider {
 | 
						|
    name = "Bitrix24";
 | 
						|
 | 
						|
    /**
 | 
						|
     * @inheritdoc
 | 
						|
     */
 | 
						|
    async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
 | 
						|
        const okMsg = "Sent Successfully.";
 | 
						|
 | 
						|
        try {
 | 
						|
            const params = {
 | 
						|
                user_id: notification.bitrix24UserID,
 | 
						|
                message: "[B]Uptime Kuma[/B]",
 | 
						|
                "ATTACH[COLOR]": (heartbeatJSON ?? {})["status"] === UP ? "#b73419" : "#67b518",
 | 
						|
                "ATTACH[BLOCKS][0][MESSAGE]": msg
 | 
						|
            };
 | 
						|
 | 
						|
            await axios.get(`${notification.bitrix24WebhookURL}/im.notify.system.add.json`, { params });
 | 
						|
            return okMsg;
 | 
						|
 | 
						|
        } catch (error) {
 | 
						|
            this.throwGeneralAxiosError(error);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
module.exports = Bitrix24;
 |