https://github.com/C9Glax/tranga/issues/73 Website untested
This commit is contained in:
parent
26ca5b078d
commit
eaac09a3d1
@ -183,6 +183,11 @@ function UpdateLunaSea(lunaseaWebhook){
|
|||||||
PostData(uri);
|
PostData(uri);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function UpdateNtfy(ntfyEndpoint, ntfyAuth){
|
||||||
|
var uri = `${apiUri}/NotificationConnectors/Update?notificationConnector=Ntfy&ntfyUrl=${ntfyEndpoint}&ntfyAuth=${ntfyAuth}`;
|
||||||
|
PostData(uri);
|
||||||
|
}
|
||||||
|
|
||||||
function RemoveJob(jobId){
|
function RemoveJob(jobId){
|
||||||
var uri = `${apiUri}/Jobs?jobId=${jobId}`;
|
var uri = `${apiUri}/Jobs?jobId=${jobId}`;
|
||||||
DeleteData(uri);
|
DeleteData(uri);
|
||||||
|
@ -91,6 +91,12 @@
|
|||||||
<div>Configured: <span id="lunaseaConfigured">✅❌</span></div>
|
<div>Configured: <span id="lunaseaConfigured">✅❌</span></div>
|
||||||
<label for="lunaseaWebhook"></label><input placeholder="device/:id or user/:id" id="lunaseaWebhook" type="text">
|
<label for="lunaseaWebhook"></label><input placeholder="device/:id or user/:id" id="lunaseaWebhook" type="text">
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<span class="title">Ntfy</span>
|
||||||
|
<div>Configured: <span id="ntfyConfigured">✅❌</span></div>
|
||||||
|
<label for="ntfyEndpoint"></label><input placeholder="URL" id="ntfyEndpoint" type="text">
|
||||||
|
<label for="ntfyAuth"></label><input placeholder="Auth" id="ntfyAuth" type="text">
|
||||||
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<input type="submit" value="Update" onclick="UpdateSettings()">
|
<input type="submit" value="Update" onclick="UpdateSettings()">
|
||||||
</div>
|
</div>
|
||||||
|
@ -32,10 +32,13 @@ const settingKavitaPass = document.querySelector("#kavitaPassword");
|
|||||||
const settingGotifyUrl = document.querySelector("#gotifyUrl");
|
const settingGotifyUrl = document.querySelector("#gotifyUrl");
|
||||||
const settingGotifyAppToken = document.querySelector("#gotifyAppToken");
|
const settingGotifyAppToken = document.querySelector("#gotifyAppToken");
|
||||||
const settingLunaseaWebhook = document.querySelector("#lunaseaWebhook");
|
const settingLunaseaWebhook = document.querySelector("#lunaseaWebhook");
|
||||||
|
const settingNtfyEndpoint = document.querySelector("#ntfyEndpoint");
|
||||||
|
const settingNtfyAuth = document.querySelector("#ntfyAuth");
|
||||||
const settingKomgaConfigured = document.querySelector("#komgaConfigured");
|
const settingKomgaConfigured = document.querySelector("#komgaConfigured");
|
||||||
const settingKavitaConfigured = document.querySelector("#kavitaConfigured");
|
const settingKavitaConfigured = document.querySelector("#kavitaConfigured");
|
||||||
const settingGotifyConfigured = document.querySelector("#gotifyConfigured");
|
const settingGotifyConfigured = document.querySelector("#gotifyConfigured");
|
||||||
const settingLunaseaConfigured = document.querySelector("#lunaseaConfigured");
|
const settingLunaseaConfigured = document.querySelector("#lunaseaConfigured");
|
||||||
|
const settingNtfyConfigured = document.querySelector("#ntfyConfigured");
|
||||||
const settingApiUri = document.querySelector("#settingApiUri");
|
const settingApiUri = document.querySelector("#settingApiUri");
|
||||||
const newMangaPopup = document.querySelector("#newMangaPopup");
|
const newMangaPopup = document.querySelector("#newMangaPopup");
|
||||||
const newMangaConnector = document.querySelector("#newMangaConnector");
|
const newMangaConnector = document.querySelector("#newMangaConnector");
|
||||||
@ -254,11 +257,14 @@ settingKavitaPass.addEventListener("keypress", (event) => { if(event.key === "En
|
|||||||
settingGotifyUrl.addEventListener("keypress", (event) => { if(event.key === "Enter") UpdateSettings(); });
|
settingGotifyUrl.addEventListener("keypress", (event) => { if(event.key === "Enter") UpdateSettings(); });
|
||||||
settingGotifyAppToken.addEventListener("keypress", (event) => { if(event.key === "Enter") UpdateSettings(); });
|
settingGotifyAppToken.addEventListener("keypress", (event) => { if(event.key === "Enter") UpdateSettings(); });
|
||||||
settingLunaseaWebhook.addEventListener("keypress", (event) => { if(event.key === "Enter") UpdateSettings(); });
|
settingLunaseaWebhook.addEventListener("keypress", (event) => { if(event.key === "Enter") UpdateSettings(); });
|
||||||
|
settingNtfyEndpoint.addEventListener("keypress", (event) => { if(event.key === "Enter") UpdateSettings(); });
|
||||||
|
settingNtfyAuth.addEventListener("keypress", (event) => { if(event.key === "Enter") UpdateSettings(); });
|
||||||
settingApiUri.addEventListener("keypress", (event) => { if(event.key === "Enter") UpdateSettings(); });
|
settingApiUri.addEventListener("keypress", (event) => { if(event.key === "Enter") UpdateSettings(); });
|
||||||
|
|
||||||
function OpenSettings(){
|
function OpenSettings(){
|
||||||
settingGotifyConfigured.innerText = "❌";
|
settingGotifyConfigured.innerText = "❌";
|
||||||
settingLunaseaConfigured.innerText = "❌";
|
settingLunaseaConfigured.innerText = "❌";
|
||||||
|
settingNtfyConfiguredConfigured.innerText = "❌";
|
||||||
settingKavitaConfigured.innerText = "❌";
|
settingKavitaConfigured.innerText = "❌";
|
||||||
settingKomgaConfigured.innerText = "❌";
|
settingKomgaConfigured.innerText = "❌";
|
||||||
settingKomgaUrl.value = "";
|
settingKomgaUrl.value = "";
|
||||||
@ -270,6 +276,8 @@ function OpenSettings(){
|
|||||||
settingGotifyUrl.value = "";
|
settingGotifyUrl.value = "";
|
||||||
settingGotifyAppToken.value = "";
|
settingGotifyAppToken.value = "";
|
||||||
settingLunaseaWebhook.value = "";
|
settingLunaseaWebhook.value = "";
|
||||||
|
settingNtfyAuth.value = "";
|
||||||
|
settingNtfyEndpoint.value = "";
|
||||||
settingApiUri.value = "";
|
settingApiUri.value = "";
|
||||||
|
|
||||||
GetSettings().then((json) => {
|
GetSettings().then((json) => {
|
||||||
@ -313,6 +321,11 @@ function OpenSettings(){
|
|||||||
settingLunaseaConfigured.innerText = "✅";
|
settingLunaseaConfigured.innerText = "✅";
|
||||||
settingLunaseaWebhook.placeholder = connector.id;
|
settingLunaseaWebhook.placeholder = connector.id;
|
||||||
break;
|
break;
|
||||||
|
case "Ntfy":
|
||||||
|
settingNtfyConfigured.innerText = "✅";
|
||||||
|
settingNtfyEndpoint.placeholder = connector.endpoint;
|
||||||
|
settingNtfyAuth.placeholder = "***";
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
console.log("Unknown type");
|
console.log("Unknown type");
|
||||||
console.log(connector);
|
console.log(connector);
|
||||||
@ -350,6 +363,11 @@ function UpdateSettings(){
|
|||||||
UpdateLunaSea(settingLunaseaWebhook.value);
|
UpdateLunaSea(settingLunaseaWebhook.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(settingNtfyEndpoint.value != "" &&
|
||||||
|
settingNtfyAuth.value != ""){
|
||||||
|
UpdateNtfy(settingNtfyEndpoint.value, settingNtfyAuth.value);
|
||||||
|
}
|
||||||
|
|
||||||
OpenSettings();
|
OpenSettings();
|
||||||
Setup();
|
Setup();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user