2022-12-21 20:23:42 -05:00
<!DOCTYPE html>
< html >
2022-12-21 21:29:12 -05:00
<!-- Hello! You have found my TV Controller. The API provided in this source is behind a firewall and will be of no use to you. Move along! -->
2022-12-22 02:25:16 -05:00
< head >
< div id = "view2" > < / div >
< / head >
2022-12-21 20:32:54 -05:00
< title > Samsung TVController< / title >
2022-12-21 20:30:06 -05:00
2022-12-22 00:03:10 -05:00
< style >
body {
background-color: #101010;
color: #ffffff;
}
h1 {
color: #ffffff;
}
nav a {
color: #ffffff;
}
footer {
color: #ffffff;
}
< / style >
2022-12-22 02:25:16 -05:00
< link href = "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel = "stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
< script src = "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous">< / script >
2022-12-22 00:03:10 -05:00
< script >
let rootURL = "https://grwh.work:3031"
2022-12-22 01:15:51 -05:00
var timer;
// Youtube Shorts Timer -
function startTimer() {
console.log("Shorts timer started!")
2022-12-22 02:25:16 -05:00
showSuccessAlert("Started Shorts 60 Second Timer")
2022-12-22 01:15:51 -05:00
timer = setInterval(function () {
console.log("60 seconds are up, going to next short");
fetch(rootURL + "/down")
.then(function (response) {
return response.json();
})
.then(function (data) {
if (data == 1) return console.log("Command: DOWN - SENT!")
})
2022-12-22 02:25:16 -05:00
}, 60000);
2022-12-22 01:15:51 -05:00
}
function stopTimer() {
2022-12-22 02:25:16 -05:00
showSuccessAlert("Shorts Timer Disabled!")
2022-12-22 01:15:51 -05:00
clearInterval(timer);
}
2022-12-22 02:25:16 -05:00
function showSuccessAlert(message) {
document.getElementById("view2").innerHTML = "< div class = \"alert alert-success \ " role = \"alert\" > < CENTER > " + message + "< / CENTER > < / div > ";
setInterval(function () {
console.log("60 seconds are up, going to next short");
document.getElementById("view2").innerHTML = "";
}, 10000);
}
function showFailAlert(message) {
document.getElementById("view2").innerHTML = "< div class = \"alert alert-danger \ " role = \"alert\" > < CENTER > " + message + "< / CENTER > < / div > ";
setInterval(function () {
console.log("60 seconds are up, going to next short");
document.getElementById("view2").innerHTML = "";
}, 10000);
}
showSuccessAlert("You have logged in successfully!")
2022-12-22 00:03:10 -05:00
let pass = prompt("Enter the password!", "");
2022-12-22 01:18:25 -05:00
let text;
2022-12-22 02:25:16 -05:00
2022-12-22 00:03:10 -05:00
fetch(rootURL + "/checkPass?pass=" + pass)
.then(function (response) {
return response.json();
})
.then(function (data) {
if (data == "1") {
if (pass == null || pass == "") {
document.getElementById("view").innerHTML = "WOO"
} else {
2022-12-22 01:15:51 -05:00
2022-12-22 02:25:16 -05:00
document.getElementById("view").innerHTML = "< a href = \"javascript:window.open('help.html','Click for Key ShortCuts ! ' , ' width = 600,height=400')\" > Click for Key ShortCuts!< / a > < BR > < BR > < a href = \"javascript:window.open('input.html','Click to Send Text Imput ! ' , ' width = 600,height=400')\" > < button > Open Text Input< / button > < / a > < BR > < BR > < button onclick = \"startTimer()\" > Enable AutoScroll< / button > / < button onclick = \"stopTimer()\" > Disable< / button > < BR > < BR > Commands Not Working? Issue a new Token using: R";
2022-12-22 00:03:10 -05:00
function addEvent(element, eventName, callback) {
if (element.addEventListener) {
element.addEventListener(eventName, callback, false);
} else if (element.attachEvent) {
element.attachEvent("on" + eventName, callback);
} else {
element["on" + eventName] = callback;
}
}
2022-12-21 20:30:06 -05:00
2022-12-22 00:03:10 -05:00
addEvent(document, "keypress", function (e) {
console.log(e)
2022-12-21 20:30:06 -05:00
2022-12-22 00:03:10 -05:00
e = e || window.event;
2022-12-21 20:30:06 -05:00
2022-12-22 00:03:10 -05:00
if (e.key == "w" || e.code == "Numpad8") {
fetch(rootURL + "/up")
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("UP Sent Successfully!")
return console.log("Command: UP - SENT!")
} else {
showSuccessAlert("UP FAILED!")
return console.log("Command: UP FAILED!")
}
2022-12-22 00:03:10 -05:00
})
2022-12-21 20:30:06 -05:00
}
2022-12-22 00:03:10 -05:00
if (e.key == "a" || e.code == "Numpad4") {
fetch(rootURL + "/left")
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("LEFT Sent Successfully!")
return console.log("Command: LEFT - SENT!")
} else {
showSuccessAlert("LEFT FAILED!")
return console.log("Command: LEFT FAILED!")
}
2022-12-22 00:03:10 -05:00
})
}
if (e.key == "s" || e.key == "2") {
fetch(rootURL + "/down")
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("DOWN Sent Successfully!")
return console.log("Command: DOWN - SENT!")
} else {
showSuccessAlert("DOWN FAILED!")
return console.log("Command: DOWN FAILED!")
}
2022-12-22 00:03:10 -05:00
})
}
if (e.key == "d" || e.code == "Numpad6") {
fetch(rootURL + "/right")
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("RIGHT Sent Successfully!")
return console.log("Command: RIGHT - SENT!")
} else {
showSuccessAlert("UP FAILED!")
return console.log("Command: RIGHT FAILED!")
}
2022-12-22 00:03:10 -05:00
})
}
2022-12-22 01:15:51 -05:00
if (e.key == "Enter" || e.code == "Numpad5") {
fetch(rootURL + "/enter")
2022-12-22 00:03:10 -05:00
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("ENTER Sent Successfully!")
return console.log("Command: ENTER - SENT!")
} else {
showSuccessAlert("ENTER FAILED!")
return console.log("Command: ENTEr FAILED!")
}
2022-12-22 00:03:10 -05:00
})
}
if (e.key == "x" || e.code == "NumpadDecimal") {
fetch(rootURL + "/back")
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("BACK Sent Successfully!")
return console.log("Command: BACK - SENT!")
} else {
showSuccessAlert("BACK FAILED!")
return console.log("Command: BACK FAILED!")
}
2022-12-22 00:03:10 -05:00
})
}
if (e.key == "p" || e.code == "NumpadAdd") {
fetch(rootURL + "/volumeUp")
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("VOLUME UP Sent Successfully!")
return console.log("Command: VOLUME UP - SENT!")
} else {
showSuccessAlert("VOLUME UP FAILED!")
return console.log("Command: VOLUME UP FAILED!")
}
2022-12-22 00:03:10 -05:00
})
}
if (e.key == "o" || e.code == "NumpadSubtract") {
fetch(rootURL + "/volumeDown")
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("VOLUME DOWN Sent Successfully!")
return console.log("Command: VOLUME DOWN - SENT!")
} else {
showSuccessAlert("VOLUME DOWN FAILED!")
return console.log("Command: VOLUME DOWN FAILED!")
}
2022-12-22 00:03:10 -05:00
})
}
if (e.key == "r") {
fetch(rootURL + "/newToken")
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("New Token Request Sent Successfully!")
return console.log("Command: New Token Request - SENT!")
} else {
showSuccessAlert("New Token Request FAILED!")
return console.log("Command: New Token Request FAILED!")
}
2022-12-22 00:03:10 -05:00
})
}
if (e.key == "m" || e.code == "Numpad0") {
fetch(rootURL + "/mute")
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("Mute Sent Successfully!")
return console.log("Command: BACK - SENT!")
} else {
showSuccessAlert("Mute FAILED!")
return console.log("Command: Mute FAILED!")
}
2022-12-22 00:03:10 -05:00
})
}
if (e.key == "l") {
fetch(rootURL + "/pmode")
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("Picture Mode Sent Successfully!")
return console.log("Command: Picutr Mode - SENT!")
} else {
showSuccessAlert("Picture Mode FAILED!")
return console.log("Command: Picture Mode FAILED!")
}
2022-12-22 00:03:10 -05:00
})
}
2022-12-22 01:15:51 -05:00
if (e.key == "h") {
2022-12-22 00:03:10 -05:00
fetch(rootURL + "/home")
.then(function (response) {
return response.json();
})
.then(function (data) {
2022-12-22 02:25:16 -05:00
if (data == 1) {
showSuccessAlert("HOME Sent Successfully!")
return console.log("Command: HOME - SENT!")
} else {
showSuccessAlert("HOME FAILED!")
return console.log("Command: HOME FAILED!")
}
2022-12-22 00:03:10 -05:00
})
}
2022-12-22 01:15:51 -05:00
2022-12-22 00:03:10 -05:00
});
}
} else {
document.getElementById("view").innerHTML = "< meta http-equiv = \"refresh\" content = 3; > < CENTER > THE PASSWORD PROVIDED WAS INCORRECT!"
}
})
< / script >
< / head >
< body >
< center >
2022-12-22 02:25:16 -05:00
2022-12-22 00:03:10 -05:00
< div id = "view" > < / div >
2022-12-22 02:25:16 -05:00
2022-12-22 00:03:10 -05:00
< center >
< / body >
2022-12-21 20:23:42 -05:00
< / html >