2021-10-24 02:25:42 -07:00
|
|
|
// Exported to main.rs
|
|
|
|
function loadFromDb() {
|
|
|
|
const dbReq = window.indexedDB.open("omegaupload", 1);
|
|
|
|
dbReq.onsuccess = (evt) => {
|
|
|
|
const db = (evt.target as IDBRequest).result;
|
|
|
|
const obj_store = db
|
2021-10-24 11:40:19 -07:00
|
|
|
.transaction("decrypted data")
|
|
|
|
.objectStore("decrypted data");
|
|
|
|
let fetchReq = obj_store.get(window.location.pathname);
|
|
|
|
fetchReq.onsuccess = (evt) => {
|
2021-10-24 02:25:42 -07:00
|
|
|
const data = (evt.target as IDBRequest).result;
|
|
|
|
switch (data.type) {
|
|
|
|
case "string":
|
|
|
|
createStringPasteUi(data);
|
|
|
|
break;
|
|
|
|
case "blob":
|
|
|
|
createBlobPasteUi(data);
|
|
|
|
break;
|
|
|
|
case "image":
|
|
|
|
createImagePasteUi(data);
|
|
|
|
break;
|
2021-10-24 11:40:19 -07:00
|
|
|
case "audio":
|
|
|
|
createAudioPasteUi(data);
|
|
|
|
break;
|
|
|
|
case "video":
|
|
|
|
createVideoPasteUi(data);
|
|
|
|
break;
|
2021-10-24 02:25:42 -07:00
|
|
|
default:
|
|
|
|
createBrokenStateUi();
|
|
|
|
break;
|
|
|
|
}
|
2021-10-24 11:40:19 -07:00
|
|
|
|
|
|
|
// IDB was only used as a temporary medium;
|
|
|
|
window.onbeforeunload = (e) => {
|
|
|
|
// See https://link.eddie.sh/NrIIq on why .commit is necessary.
|
|
|
|
const transaction = db.transaction("decrypted data", "readwrite");
|
|
|
|
transaction
|
|
|
|
.objectStore("decrypted data")
|
|
|
|
.delete(window.location.pathname);
|
|
|
|
transaction.commit();
|
|
|
|
transaction.oncomplete = () => {
|
|
|
|
console.log("Item deleted from cache");
|
|
|
|
}
|
|
|
|
};
|
2021-10-24 02:25:42 -07:00
|
|
|
};
|
|
|
|
|
2021-10-24 11:40:19 -07:00
|
|
|
fetchReq.onerror = (evt) => {
|
2021-10-24 02:25:42 -07:00
|
|
|
console.log("err");
|
|
|
|
console.log(evt);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function createStringPasteUi(data) {
|
|
|
|
let bodyEle = document.getElementsByTagName("body")[0];
|
|
|
|
bodyEle.textContent = '';
|
|
|
|
|
|
|
|
let mainEle = document.createElement("main");
|
|
|
|
let preEle = document.createElement("pre");
|
|
|
|
preEle.classList.add("paste");
|
|
|
|
|
|
|
|
let headerEle = document.createElement("header");
|
|
|
|
headerEle.classList.add("unselectable");
|
|
|
|
headerEle.textContent = data.expiration;
|
|
|
|
preEle.appendChild(headerEle);
|
|
|
|
|
|
|
|
preEle.appendChild(document.createElement("hr"));
|
|
|
|
|
|
|
|
let codeEle = document.createElement("code");
|
|
|
|
codeEle.textContent = data.data;
|
|
|
|
preEle.appendChild(codeEle);
|
|
|
|
|
|
|
|
mainEle.appendChild(preEle);
|
|
|
|
bodyEle.appendChild(mainEle);
|
|
|
|
|
|
|
|
hljs.highlightAll();
|
|
|
|
hljs.initLineNumbersOnLoad();
|
|
|
|
}
|
|
|
|
|
|
|
|
function createBlobPasteUi(data) {
|
|
|
|
let bodyEle = document.getElementsByTagName("body")[0];
|
|
|
|
bodyEle.textContent = '';
|
|
|
|
|
|
|
|
let mainEle = document.createElement("main");
|
|
|
|
mainEle.classList.add("hljs");
|
|
|
|
mainEle.classList.add("centered");
|
|
|
|
mainEle.classList.add("fullscreen");
|
|
|
|
|
|
|
|
let divEle = document.createElement("div");
|
|
|
|
divEle.classList.add("centered");
|
|
|
|
|
|
|
|
let expirationEle = document.createElement("p");
|
|
|
|
expirationEle.textContent = data.expiration;
|
|
|
|
divEle.appendChild(expirationEle);
|
|
|
|
|
|
|
|
let downloadEle = document.createElement("a");
|
|
|
|
downloadEle.href = URL.createObjectURL(data.data);
|
|
|
|
downloadEle.download = window.location.pathname;
|
|
|
|
downloadEle.classList.add("hljs-meta");
|
|
|
|
downloadEle.textContent = "Download binary file.";
|
|
|
|
divEle.appendChild(downloadEle);
|
|
|
|
|
|
|
|
|
|
|
|
mainEle.appendChild(divEle);
|
|
|
|
|
|
|
|
let displayAnywayEle = document.createElement("p");
|
|
|
|
displayAnywayEle.classList.add("display-anyways");
|
|
|
|
displayAnywayEle.classList.add("hljs-comment");
|
|
|
|
displayAnywayEle.textContent = "Display anyways?";
|
|
|
|
displayAnywayEle.onclick = () => {
|
|
|
|
data.data.text().then(text => {
|
|
|
|
data.data = text;
|
|
|
|
createStringPasteUi(data);
|
|
|
|
})
|
|
|
|
};
|
|
|
|
mainEle.appendChild(displayAnywayEle);
|
|
|
|
bodyEle.appendChild(mainEle);
|
|
|
|
}
|
|
|
|
|
2021-10-24 11:40:19 -07:00
|
|
|
function createImagePasteUi({ expiration, data, button }) {
|
|
|
|
createMultiMediaPasteUi("img", expiration, data, button);
|
|
|
|
}
|
|
|
|
|
|
|
|
function createAudioPasteUi({ expiration, data }) {
|
|
|
|
createMultiMediaPasteUi("audio", expiration, data, "Download");
|
|
|
|
}
|
|
|
|
|
|
|
|
function createVideoPasteUi({ expiration, data }) {
|
|
|
|
createMultiMediaPasteUi("video", expiration, data, "Download");
|
|
|
|
}
|
|
|
|
|
|
|
|
function createMultiMediaPasteUi(tag, expiration, data, downloadMessage) {
|
|
|
|
let bodyEle = document.getElementsByTagName("body")[0];
|
|
|
|
bodyEle.textContent = '';
|
|
|
|
|
|
|
|
let mainEle = document.createElement("main");
|
|
|
|
mainEle.classList.add("hljs");
|
|
|
|
mainEle.classList.add("centered");
|
|
|
|
mainEle.classList.add("fullscreen");
|
|
|
|
|
|
|
|
const downloadLink = URL.createObjectURL(data);
|
|
|
|
|
|
|
|
let expirationEle = document.createElement("p");
|
|
|
|
expirationEle.textContent = expiration;
|
|
|
|
mainEle.appendChild(expirationEle);
|
|
|
|
|
|
|
|
let videoEle = document.createElement(tag);
|
|
|
|
videoEle.src = downloadLink;
|
|
|
|
videoEle.controls = true;
|
|
|
|
mainEle.appendChild(videoEle);
|
|
|
|
|
|
|
|
let downloadEle = document.createElement("a");
|
|
|
|
downloadEle.href = downloadLink;
|
|
|
|
downloadEle.download = window.location.pathname;
|
|
|
|
downloadEle.classList.add("hljs-meta");
|
|
|
|
downloadEle.textContent = downloadMessage;
|
|
|
|
mainEle.appendChild(downloadEle);
|
|
|
|
|
|
|
|
bodyEle.appendChild(mainEle);
|
|
|
|
}
|
|
|
|
|
2021-10-24 02:25:42 -07:00
|
|
|
// Exported to main.rs
|
|
|
|
function createNotFoundUi() {
|
|
|
|
let body = document.getElementsByTagName("body")[0];
|
|
|
|
body.textContent = '';
|
|
|
|
body.appendChild(createGenericError("Either the paste has been burned or one never existed."));
|
|
|
|
}
|
|
|
|
|
|
|
|
function createBrokenStateUi() {
|
|
|
|
let body = document.getElementsByTagName("body")[0];
|
|
|
|
body.textContent = '';
|
|
|
|
body.appendChild(createGenericError("Something went wrong. Try clearing local data."));
|
|
|
|
}
|
|
|
|
|
|
|
|
function createGenericError(message) {
|
|
|
|
let mainEle = document.createElement("main");
|
|
|
|
mainEle.classList.add("hljs");
|
|
|
|
mainEle.classList.add("centered");
|
|
|
|
mainEle.classList.add("fullscreen");
|
|
|
|
mainEle.textContent = message;
|
|
|
|
return mainEle;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener("hashchange", () => location.reload());
|