mirror of https://github.com/louislam/uptime-kuma
				
				
				
			zoho cliq code style
							parent
							
								
									68bc7ac421
								
							
						
					
					
						commit
						851a04b082
					
				| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
const NotificationProvider = require("./notification-provider");
 | 
					const NotificationProvider = require("./notification-provider");
 | 
				
			||||||
const axios = require("axios");
 | 
					const axios = require("axios");
 | 
				
			||||||
const {DOWN, UP} = require("../../src/util");
 | 
					const { DOWN, UP } = require("../../src/util");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ZohoCliq extends NotificationProvider {
 | 
					class ZohoCliq extends NotificationProvider {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -44,7 +44,8 @@ class ZohoCliq extends NotificationProvider {
 | 
				
			||||||
       monitorName,
 | 
					       monitorName,
 | 
				
			||||||
       monitorUrl,
 | 
					       monitorUrl,
 | 
				
			||||||
    }) => {
 | 
					    }) => {
 | 
				
			||||||
        const payload = ["### Uptime Kuma\n"];
 | 
					        const payload = [];
 | 
				
			||||||
 | 
					        payload.push("### Uptime Kuma\n");
 | 
				
			||||||
        payload.push(this._statusMessageFactory(status, monitorName));
 | 
					        payload.push(this._statusMessageFactory(status, monitorName));
 | 
				
			||||||
        payload.push(`*Description:* ${monitorMessage}`);
 | 
					        payload.push(`*Description:* ${monitorMessage}`);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -83,7 +84,7 @@ class ZohoCliq extends NotificationProvider {
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            let url;
 | 
					            let url;
 | 
				
			||||||
            switch(monitorJSON["type"]) {
 | 
					            switch (monitorJSON["type"]) {
 | 
				
			||||||
                case "http":
 | 
					                case "http":
 | 
				
			||||||
                case "keywork":
 | 
					                case "keywork":
 | 
				
			||||||
                    url = monitorJSON["url"];
 | 
					                    url = monitorJSON["url"];
 | 
				
			||||||
| 
						 | 
					@ -100,7 +101,7 @@ class ZohoCliq extends NotificationProvider {
 | 
				
			||||||
                monitorMessage: heartbeatJSON.msg,
 | 
					                monitorMessage: heartbeatJSON.msg,
 | 
				
			||||||
                monitorName: monitorJSON.name,
 | 
					                monitorName: monitorJSON.name,
 | 
				
			||||||
                monitorUrl: url,
 | 
					                monitorUrl: url,
 | 
				
			||||||
                status: heartbeatJSON.status,
 | 
					                status: heartbeatJSON.status
 | 
				
			||||||
            });
 | 
					            });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            await this._sendNotification(notification.webhookUrl, payload);
 | 
					            await this._sendNotification(notification.webhookUrl, payload);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue