mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-10-31 19:39:20 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const NotificationProvider = require("./notification-provider");
 | |
| const axios = require("axios");
 | |
| const { DOWN, UP } = require("../../src/util");
 | |
| 
 | |
| class LunaSea extends NotificationProvider {
 | |
| 
 | |
|     name = "lunasea";
 | |
| 
 | |
|     async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
 | |
|         let okMsg = "Sent Successfully.";
 | |
|         let lunaseadevice = "https://notify.lunasea.app/v1/custom/device/" + notification.lunaseaDevice
 | |
| 
 | |
|         try {
 | |
|             if (heartbeatJSON == null) {
 | |
|                 let testdata = {
 | |
|                     "title": "Uptime Kuma Alert",
 | |
|                     "body": "Testing Successful.",
 | |
|                 }
 | |
|                 await axios.post(lunaseadevice, testdata)
 | |
|                 return okMsg;
 | |
|             }
 | |
| 
 | |
|             if (heartbeatJSON["status"] == DOWN) {
 | |
|                 let downdata = {
 | |
|                     "title": "UptimeKuma Alert: " + monitorJSON["name"],
 | |
|                     "body": "[🔴 Down] " + heartbeatJSON["msg"] + "\nTime (UTC): " + heartbeatJSON["time"],
 | |
|                 }
 | |
|                 await axios.post(lunaseadevice, downdata)
 | |
|                 return okMsg;
 | |
|             }
 | |
| 
 | |
|             if (heartbeatJSON["status"] == UP) {
 | |
|                 let updata = {
 | |
|                     "title": "UptimeKuma Alert: " + monitorJSON["name"],
 | |
|                     "body": "[✅ Up] " + heartbeatJSON["msg"] + "\nTime (UTC): " + heartbeatJSON["time"],
 | |
|                 }
 | |
|                 await axios.post(lunaseadevice, updata)
 | |
|                 return okMsg;
 | |
|             }
 | |
| 
 | |
|         } catch (error) {
 | |
|             this.throwGeneralAxiosError(error)
 | |
|         }
 | |
| 
 | |
|     }
 | |
| }
 | |
| 
 | |
| module.exports = LunaSea;
 |