2022-07-13 21:32:00 +01:00
|
|
|
let isIOS = navigator.userAgent.toLowerCase().match("iphone os");
|
|
|
|
let switchers = {
|
|
|
|
"theme": ["auto", "light", "dark"],
|
|
|
|
"youtubeFormat": ["mp4", "webm", "audio"],
|
|
|
|
"quality": ["max", "hig", "mid", "low"]
|
|
|
|
}
|
|
|
|
|
2022-07-08 19:17:56 +01:00
|
|
|
function eid(id) {
|
|
|
|
return document.getElementById(id)
|
|
|
|
}
|
|
|
|
function enable(id) {
|
|
|
|
eid(id).dataset.enabled = "true";
|
|
|
|
}
|
|
|
|
function disable(id) {
|
|
|
|
eid(id).dataset.enabled = "false";
|
|
|
|
}
|
|
|
|
function vis(state) {
|
|
|
|
return (state === 1) ? "visible" : "hidden";
|
|
|
|
}
|
|
|
|
function changeDownloadButton(action, text) {
|
|
|
|
switch (action) {
|
|
|
|
case 0:
|
|
|
|
eid("download-button").disabled = true
|
|
|
|
if (localStorage.getItem("alwaysVisibleButton") == "true") {
|
|
|
|
eid("download-button").value = text
|
|
|
|
eid("download-button").style.padding = '0 1rem'
|
|
|
|
} else {
|
|
|
|
eid("download-button").value = ''
|
|
|
|
eid("download-button").style.padding = '0'
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
eid("download-button").disabled = false
|
|
|
|
eid("download-button").value = text
|
|
|
|
eid("download-button").style.padding = '0 1rem'
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
eid("download-button").disabled = true
|
|
|
|
eid("download-button").value = text
|
|
|
|
eid("download-button").style.padding = '0 1rem'
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2022-08-04 12:22:40 +01:00
|
|
|
document.addEventListener("keydown", function (event) {
|
2022-07-08 19:17:56 +01:00
|
|
|
if (event.key == "Tab") {
|
|
|
|
eid("download-button").value = '>>'
|
|
|
|
eid("download-button").style.padding = '0 1rem'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
function button() {
|
|
|
|
let regex = /https:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()!@:%_\+.~#?&\/\/=]*)/.test(eid("url-input-area").value);
|
|
|
|
regex ? changeDownloadButton(1, '>>') : changeDownloadButton(0, '>>');
|
|
|
|
}
|
2022-07-13 21:32:00 +01:00
|
|
|
function copy(id, data) {
|
2022-07-08 19:17:56 +01:00
|
|
|
let e = document.getElementById(id);
|
|
|
|
e.classList.add("text-backdrop");
|
2022-07-13 21:32:00 +01:00
|
|
|
data ? navigator.clipboard.writeText(data) : navigator.clipboard.writeText(e.innerText);
|
2022-07-08 19:17:56 +01:00
|
|
|
setTimeout(() => { e.classList.remove("text-backdrop") }, 600);
|
|
|
|
}
|
|
|
|
function detectColorScheme() {
|
|
|
|
let theme = "auto";
|
|
|
|
let localTheme = localStorage.getItem("theme");
|
|
|
|
if (localTheme) {
|
|
|
|
theme = localTheme;
|
|
|
|
} else if (!window.matchMedia) {
|
|
|
|
theme = "dark"
|
|
|
|
}
|
|
|
|
document.documentElement.setAttribute("data-theme", theme);
|
|
|
|
}
|
|
|
|
function popup(type, action, text) {
|
|
|
|
eid("popup-backdrop").style.visibility = vis(action);
|
|
|
|
switch (type) {
|
|
|
|
case "about":
|
|
|
|
eid("popup-about").style.visibility = vis(action);
|
2022-07-13 21:32:00 +01:00
|
|
|
if (!localStorage.getItem("seenAbout")) localStorage.setItem("seenAbout", "true");
|
2022-07-08 19:17:56 +01:00
|
|
|
break;
|
|
|
|
case "error":
|
|
|
|
eid("desc-error").innerHTML = text;
|
|
|
|
eid("popup-error").style.visibility = vis(action);
|
|
|
|
break;
|
2022-07-13 21:32:00 +01:00
|
|
|
case "download":
|
|
|
|
if (action == 1) {
|
|
|
|
eid("pd-download").href = text;
|
2022-08-04 12:22:40 +01:00
|
|
|
eid("pd-copy").setAttribute("onClick", `copy('pd-copy', '${text}')`);
|
2022-07-13 21:32:00 +01:00
|
|
|
}
|
|
|
|
eid("popup-download").style.visibility = vis(action);
|
2022-07-08 19:17:56 +01:00
|
|
|
break;
|
2022-07-13 21:32:00 +01:00
|
|
|
default:
|
|
|
|
eid(`popup-${type}`).style.visibility = vis(action);
|
2022-07-08 19:17:56 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function changeSwitcher(li, b, u) {
|
2022-07-13 21:32:00 +01:00
|
|
|
if (u) localStorage.setItem(li, b);
|
2022-07-08 19:17:56 +01:00
|
|
|
if (b) {
|
2022-07-13 21:32:00 +01:00
|
|
|
for (i in switchers[li]) {
|
|
|
|
(switchers[li][i] == b) ? enable(`${li}-${b}`) : disable(`${li}-${switchers[li][i]}`)
|
2022-07-08 19:17:56 +01:00
|
|
|
}
|
2022-07-13 21:32:00 +01:00
|
|
|
if (li == "theme") detectColorScheme();
|
2022-07-08 19:17:56 +01:00
|
|
|
} else {
|
2022-07-13 21:32:00 +01:00
|
|
|
localStorage.setItem(li, switchers[li][0]);
|
|
|
|
for (i in switchers[li]) {
|
|
|
|
(switchers[li][i] == switchers[li][0]) ? enable(`${li}-${switchers[li][0]}`) : disable(`${li}-${switchers[li][i]}`)
|
2022-07-08 19:17:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function internetError() {
|
|
|
|
eid("url-input-area").disabled = false
|
|
|
|
changeDownloadButton(2, '!!')
|
|
|
|
popup("error", 1, loc.noInternet);
|
|
|
|
}
|
|
|
|
function checkbox(action) {
|
2022-07-13 21:32:00 +01:00
|
|
|
if (eid(action).checked) {
|
|
|
|
localStorage.setItem(action, "true");
|
|
|
|
if (action == "alwaysVisibleButton") button();
|
|
|
|
} else {
|
|
|
|
localStorage.setItem(action, "false");
|
|
|
|
if (action == "alwaysVisibleButton") button();
|
2022-07-08 19:17:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
function loadSettings() {
|
|
|
|
if (localStorage.getItem("alwaysVisibleButton") == "true") {
|
2022-07-13 21:32:00 +01:00
|
|
|
eid("alwaysVisibleButton").checked = true;
|
2022-07-08 19:17:56 +01:00
|
|
|
eid("download-button").value = '>>'
|
|
|
|
eid("download-button").style.padding = '0 1rem';
|
|
|
|
}
|
2022-07-13 21:32:00 +01:00
|
|
|
if (localStorage.getItem("downloadPopup") == "true" && !isIOS) {
|
|
|
|
eid("downloadPopup").checked = true;
|
|
|
|
}
|
2022-07-08 19:17:56 +01:00
|
|
|
changeSwitcher("theme", localStorage.getItem("theme"))
|
|
|
|
changeSwitcher("youtubeFormat", localStorage.getItem("youtubeFormat"))
|
|
|
|
changeSwitcher("quality", localStorage.getItem("quality"))
|
|
|
|
}
|
|
|
|
async function download(url) {
|
|
|
|
changeDownloadButton(2, '...');
|
|
|
|
eid("url-input-area").disabled = true;
|
|
|
|
let format = '';
|
2022-07-10 14:30:42 +01:00
|
|
|
if (url.includes("youtube.com/") || url.includes("/youtu.be/")) {
|
2022-07-08 19:17:56 +01:00
|
|
|
format = `&format=${localStorage.getItem("youtubeFormat")}`
|
|
|
|
}
|
|
|
|
fetch(`/api/json?quality=${localStorage.getItem("quality")}${format}&url=${encodeURIComponent(url)}`).then(async (response) => {
|
|
|
|
let j = await response.json();
|
|
|
|
if (j.status != "error" && j.status != "rate-limit") {
|
2022-07-22 09:05:36 +01:00
|
|
|
if (j.url) {
|
|
|
|
switch (j.status) {
|
|
|
|
case "redirect":
|
|
|
|
changeDownloadButton(2, '>>>')
|
|
|
|
setTimeout(() => {
|
|
|
|
changeDownloadButton(1, '>>')
|
2022-07-08 19:17:56 +01:00
|
|
|
eid("url-input-area").disabled = false
|
2022-07-22 09:05:36 +01:00
|
|
|
}, 3000)
|
|
|
|
if (localStorage.getItem("downloadPopup") == "true") {
|
|
|
|
popup('download', 1, j.url)
|
|
|
|
} else {
|
|
|
|
window.open(j.url, '_blank');
|
2022-07-08 19:17:56 +01:00
|
|
|
}
|
2022-07-22 09:05:36 +01:00
|
|
|
break;
|
|
|
|
case "stream":
|
|
|
|
changeDownloadButton(2, '?..')
|
|
|
|
fetch(`${j.url}&p=1&origin=front`).then(async (response) => {
|
|
|
|
let jp = await response.json();
|
|
|
|
if (jp.status == "continue") {
|
|
|
|
changeDownloadButton(2, '>>>')
|
|
|
|
window.location.href = j.url
|
|
|
|
setTimeout(() => {
|
|
|
|
changeDownloadButton(1, '>>')
|
|
|
|
eid("url-input-area").disabled = false
|
|
|
|
}, 5000)
|
|
|
|
} else {
|
|
|
|
eid("url-input-area").disabled = false
|
|
|
|
changeDownloadButton(2, '!!')
|
|
|
|
popup("error", 1, jp.text);
|
|
|
|
}
|
|
|
|
}).catch((error) => internetError());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
eid("url-input-area").disabled = false
|
|
|
|
changeDownloadButton(2, '!!')
|
|
|
|
popup("error", 1, loc.noURLReturned);
|
2022-07-08 19:17:56 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
eid("url-input-area").disabled = false
|
|
|
|
changeDownloadButton(2, '!!')
|
|
|
|
popup("error", 1, j.text);
|
|
|
|
}
|
2022-07-13 21:32:00 +01:00
|
|
|
}).catch((error) => internetError());
|
2022-07-08 19:17:56 +01:00
|
|
|
}
|
|
|
|
window.onload = function () {
|
|
|
|
loadSettings();
|
|
|
|
detectColorScheme();
|
|
|
|
changeDownloadButton(0, '>>');
|
|
|
|
eid("cobalt-main-box").style.visibility = 'visible';
|
|
|
|
eid("footer").style.visibility = 'visible';
|
|
|
|
eid("url-input-area").value = "";
|
2022-07-13 21:32:00 +01:00
|
|
|
if (!localStorage.getItem("seenAbout")) popup('about', 1);
|
|
|
|
if (isIOS) localStorage.setItem("downloadPopup", "true");
|
2022-07-08 19:17:56 +01:00
|
|
|
}
|
|
|
|
eid("url-input-area").addEventListener("keyup", (event) => {
|
|
|
|
if (event.key === 'Enter') {
|
|
|
|
eid("download-button").click();
|
|
|
|
}
|
2022-08-04 19:09:41 +01:00
|
|
|
})
|