jotify/index.js
2021-02-06 15:10:01 +02:00

29 lines
808 B
JavaScript

fetch = require("node-fetch")
gotify = {
url: "",
token: "",
priority: 5,
send: (title,message, priority) => {
if (gotify.url == ""){
throw "gotify url value empty, please use: gotify.url == 'https://gotify.mydomain.tld'"
} else if(gotify.token == "") {
throw "gotify url value empty, please use: gotify.token == 'xyzxyz'"
}
if (!priority){
priority = gotify.priority
}
fetch(gotify.url+'/message?token='+gotify.token, {
method: 'POST',
body: 'title='+title+"&message="+message+"&priority="+priority ,
headers: { 'Content-Type': 'application/x-www-form-urlencoded' }})
.then(res => res.text())
.then(body => console.log(body))
}
}
module.exports = gotify