2022-04-27 20:32:35 -04:00
|
|
|
const FILE_CHUNK_SIZE = 16384;
|
2022-04-28 00:27:22 -04:00
|
|
|
const MAX_FILES = 256;
|
2022-05-23 19:59:05 -04:00
|
|
|
const SAMPLE_WINDOW = 100;
|
2022-05-23 20:44:22 -04:00
|
|
|
const STALL_THRESHOLD = 1000;
|
2022-04-27 20:32:35 -04:00
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
let files = [];
|
|
|
|
|
|
|
|
let socket;
|
|
|
|
let fileIndex = 0;
|
|
|
|
let byteIndex = 0;
|
|
|
|
let bytesSent = 0;
|
|
|
|
let totalBytes = 0;
|
2022-05-23 19:59:05 -04:00
|
|
|
let timestamps = [];
|
2022-04-27 23:52:45 -04:00
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
let maxSize = null;
|
|
|
|
|
2022-05-03 16:28:43 -04:00
|
|
|
let uploadPassword;
|
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
let messageBox;
|
|
|
|
let fileInput;
|
|
|
|
let fileList;
|
|
|
|
let uploadButton;
|
|
|
|
let lifetimeInput;
|
2022-05-01 05:11:23 -04:00
|
|
|
let downloadCode;
|
2022-05-23 20:44:22 -04:00
|
|
|
|
|
|
|
let progressPercentage;
|
|
|
|
let progressSize;
|
|
|
|
let progressRate;
|
|
|
|
let progressEta;
|
2022-05-01 02:32:56 -04:00
|
|
|
let progressBar;
|
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2022-05-03 19:21:42 -04:00
|
|
|
document.body.className = 'landing';
|
2022-05-03 16:28:43 -04:00
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
messageBox = document.getElementById('message');
|
|
|
|
fileInput = document.getElementById('file_input');
|
|
|
|
fileList = document.getElementById('file_list');
|
2022-05-03 16:28:43 -04:00
|
|
|
uploadButton = document.getElementById('upload_button');
|
2022-05-01 02:32:56 -04:00
|
|
|
lifetimeInput = document.getElementById('lifetime');
|
2022-05-01 05:11:23 -04:00
|
|
|
downloadCode = document.getElementById('download_code');
|
2022-05-23 20:44:22 -04:00
|
|
|
progressPercentage = document.getElementById('progress_percentage');
|
|
|
|
progressSize = document.getElementById('progress_size');
|
|
|
|
progressRate = document.getElementById('progress_rate');
|
|
|
|
progressEta = document.getElementById('progress_eta');
|
2022-05-01 02:32:56 -04:00
|
|
|
progressBar = document.getElementById('progress_bar');
|
|
|
|
|
2022-05-03 19:21:42 -04:00
|
|
|
fetch('/upload/limits.json')
|
|
|
|
.then((res) => res.json())
|
|
|
|
.then((limits) => {
|
|
|
|
if (limits.open === false) {
|
|
|
|
document.body.className = 'uploads_closed landing';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
maxSize = limits.max_size;
|
|
|
|
updateMaxLifetime(limits.max_lifetime);
|
|
|
|
});
|
|
|
|
|
2022-05-03 16:28:43 -04:00
|
|
|
const uploadPasswordInput = document.getElementById('upload_password');
|
|
|
|
const uploadPasswordForm = document.getElementById('upload_password_form');
|
|
|
|
uploadPasswordForm.addEventListener('submit', (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
uploadPassword = uploadPasswordInput.value;
|
|
|
|
fetch('/upload/check_password', {
|
|
|
|
method: 'POST',
|
|
|
|
headers: { 'Content-Type': 'application/json' },
|
|
|
|
body: JSON.stringify({ password: uploadPassword }),
|
|
|
|
}).then((res) => {
|
|
|
|
if (res.ok) {
|
|
|
|
updateFiles();
|
|
|
|
} else {
|
|
|
|
messageBox.textContent = (res.status === 403) ? 'Incorrect password' : 'An error occurred';
|
|
|
|
uploadPasswordInput.value = '';
|
|
|
|
document.body.className = 'error landing';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
fileInput.addEventListener('input', () => {
|
|
|
|
for (const file of fileInput.files) { addFile(file); }
|
|
|
|
updateFiles();
|
|
|
|
fileInput.value = '';
|
|
|
|
});
|
2022-04-27 23:52:45 -04:00
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
uploadButton.addEventListener('click', beginUpload);
|
|
|
|
|
2022-05-01 05:11:23 -04:00
|
|
|
const downloadCodeContainer = document.getElementById('download_code_container');
|
|
|
|
downloadCodeContainer.addEventListener('click', () => {
|
|
|
|
const downloadUrl = new URL(`download?code=${downloadCode.textContent}`, window.location);
|
|
|
|
navigator.clipboard.writeText(downloadUrl.href);
|
|
|
|
downloadCodeContainer.className = 'copied';
|
2022-05-01 02:32:56 -04:00
|
|
|
});
|
2022-05-01 05:11:23 -04:00
|
|
|
downloadCodeContainer.addEventListener('mouseleave', () => {
|
|
|
|
downloadCodeContainer.className = '';
|
|
|
|
});
|
2022-05-01 02:32:56 -04:00
|
|
|
});
|
2022-04-27 23:52:45 -04:00
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
function updateFiles() {
|
|
|
|
const fileInputMessage = document.getElementById('file_input_message');
|
2022-04-27 23:52:45 -04:00
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
totalBytes = files.reduce((acc, file) => acc + file.size, 0);
|
2022-04-27 23:52:45 -04:00
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
fileInput.disabled = (files.length >= MAX_FILES || (maxSize !== null && totalBytes >= maxSize));
|
2022-04-26 23:54:29 -04:00
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
let extraClasses = '';
|
|
|
|
if (maxSize !== null && totalBytes > maxSize) {
|
|
|
|
uploadButton.disabled = true;
|
|
|
|
displayError(`The maximum size for uploads is ${displaySize(maxSize)}`);
|
|
|
|
extraClasses = ' error';
|
|
|
|
} else {
|
|
|
|
uploadButton.disabled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (files.length === 0) {
|
|
|
|
fileInputMessage.textContent = 'Select files to upload...';
|
|
|
|
document.body.className = 'no_files selecting' + extraClasses;
|
|
|
|
} else {
|
|
|
|
fileInputMessage.textContent = 'Select more files to upload...';
|
|
|
|
uploadButton.textContent = `Upload ${files.length} file${files.length > 1 ? 's' : ''} (${displaySize(totalBytes)})`;
|
|
|
|
document.body.className = 'selecting' + extraClasses;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function addFile(newFile) {
|
|
|
|
if (files.length >= MAX_FILES) { return; }
|
|
|
|
if (files.some((oldFile) => newFile.name === oldFile.name)) { return; }
|
|
|
|
|
|
|
|
files.push(newFile);
|
|
|
|
|
|
|
|
addListEntry(newFile);
|
|
|
|
}
|
2022-04-26 23:54:29 -04:00
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
function addListEntry(file) {
|
|
|
|
const listEntry = document.createElement('tr');
|
|
|
|
|
|
|
|
const deleteButtonCell = document.createElement('td');
|
|
|
|
deleteButtonCell.className = 'delete_button';
|
|
|
|
deleteButtonCell.addEventListener('click', () => {
|
|
|
|
removeFile(file.name);
|
|
|
|
listEntry.remove();
|
|
|
|
updateFiles();
|
|
|
|
});
|
|
|
|
|
|
|
|
const sizeCell = document.createElement('td');
|
|
|
|
sizeCell.className = 'file_size';
|
|
|
|
sizeCell.textContent = displaySize(file.size);
|
|
|
|
|
|
|
|
const nameCell = document.createElement('td');
|
|
|
|
nameCell.className = 'file_name';
|
|
|
|
nameCell.textContent = file.name;
|
|
|
|
|
|
|
|
listEntry.appendChild(deleteButtonCell);
|
|
|
|
listEntry.appendChild(sizeCell);
|
|
|
|
listEntry.appendChild(nameCell);
|
|
|
|
|
|
|
|
fileList.appendChild(listEntry);
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeFile(name) {
|
|
|
|
files = files.filter((file) => file.name !== name);
|
|
|
|
}
|
|
|
|
|
|
|
|
function beginUpload() {
|
|
|
|
if (files.length === 0 || files.length > MAX_FILES) { return; }
|
2022-05-03 19:39:42 -04:00
|
|
|
if (socket && socket.readyState !== 3) { return; }
|
2022-05-01 02:32:56 -04:00
|
|
|
|
|
|
|
fileIndex = 0;
|
|
|
|
byteIndex = 0;
|
|
|
|
bytesSent = 0;
|
2022-05-23 19:59:05 -04:00
|
|
|
timestamps = [];
|
2022-05-01 02:32:56 -04:00
|
|
|
|
2022-05-01 05:11:23 -04:00
|
|
|
let websocketUrl = new URL('upload', window.location);
|
|
|
|
websocketUrl.protocol = (window.location.protocol === 'http:') ? 'ws:' : 'wss:';
|
|
|
|
socket = new WebSocket(websocketUrl);
|
2022-05-01 02:32:56 -04:00
|
|
|
socket.addEventListener('open', sendManifest);
|
|
|
|
socket.addEventListener('message', handleMessage);
|
|
|
|
socket.addEventListener('close', handleClose);
|
|
|
|
}
|
|
|
|
|
|
|
|
function sendManifest() {
|
|
|
|
const lifetime = parseInt(lifetimeInput.value);
|
2022-04-30 01:38:26 -04:00
|
|
|
const fileMetadata = files.map((file) => ({
|
2022-04-26 23:54:29 -04:00
|
|
|
name: file.name,
|
|
|
|
size: file.size,
|
|
|
|
modtime: file.lastModified,
|
|
|
|
}));
|
2022-05-03 16:28:43 -04:00
|
|
|
socket.send(JSON.stringify({
|
|
|
|
files: fileMetadata,
|
|
|
|
lifetime,
|
|
|
|
password: uploadPassword,
|
|
|
|
}));
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
function handleMessage(msg) {
|
|
|
|
if (bytesSent === 0) {
|
|
|
|
let reply;
|
|
|
|
try {
|
|
|
|
reply = JSON.parse(msg.data);
|
|
|
|
} catch (error) {
|
|
|
|
socket.close();
|
|
|
|
displayError('Received an invalid response from the server');
|
|
|
|
console.error(error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (reply.type === 'ready') {
|
2022-05-01 05:11:23 -04:00
|
|
|
downloadCode.textContent = reply.code;
|
2022-05-01 02:32:56 -04:00
|
|
|
updateProgress();
|
|
|
|
document.body.className = 'uploading';
|
|
|
|
sendData();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we're going to display a more useful error message
|
|
|
|
socket.removeEventListener('close', handleClose);
|
|
|
|
socket.close();
|
|
|
|
if (reply.type === 'too_big') {
|
|
|
|
maxSize = reply.max_size;
|
|
|
|
updateFiles();
|
|
|
|
} else if (reply.type === 'too_long') {
|
2022-05-03 19:21:42 -04:00
|
|
|
updateMaxLifetime(reply.max_lifetime);
|
|
|
|
displayError(`The maximum retention time for uploads is ${reply.max_lifetime} days`);
|
2022-05-03 16:28:43 -04:00
|
|
|
} else if (reply.type === 'incorrect_password') {
|
|
|
|
messageBox.textContent = ('Incorrect password');
|
|
|
|
document.body.className = 'error landing';
|
2022-05-01 02:32:56 -04:00
|
|
|
} else if (reply.type === 'error') {
|
|
|
|
displayError(reply.details);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (msg.data === 'ack') {
|
|
|
|
sendData();
|
|
|
|
} else {
|
|
|
|
console.error('Received unexpected message from server instead of ack', msg.data);
|
|
|
|
displayError();
|
|
|
|
socket.close();
|
|
|
|
}
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-03 19:21:42 -04:00
|
|
|
function updateMaxLifetime(lifetime) {
|
|
|
|
let options = Array.from(lifetimeInput.options);
|
|
|
|
options.reverse();
|
|
|
|
for (const option of options) {
|
|
|
|
if (option.value > lifetime) {
|
|
|
|
option.disabled = true;
|
|
|
|
} else {
|
|
|
|
option.selected = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-26 23:54:29 -04:00
|
|
|
function sendData() {
|
|
|
|
if (fileIndex >= files.length) {
|
|
|
|
finishSending();
|
2022-04-27 13:03:35 -04:00
|
|
|
return;
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
const currentFile = files[fileIndex];
|
|
|
|
if (byteIndex < currentFile.size) {
|
2022-04-27 20:32:35 -04:00
|
|
|
const endpoint = Math.min(byteIndex+FILE_CHUNK_SIZE, currentFile.size);
|
2022-04-26 23:54:29 -04:00
|
|
|
const data = currentFile.slice(byteIndex, endpoint);
|
|
|
|
socket.send(data);
|
|
|
|
byteIndex = endpoint;
|
2022-04-27 12:59:14 -04:00
|
|
|
bytesSent += data.size;
|
2022-05-23 19:59:05 -04:00
|
|
|
|
|
|
|
// It's ok if the monotonically increasing fields like
|
|
|
|
// percentage are updating super quickly, but it's awkward for
|
|
|
|
// rate and ETA
|
|
|
|
const now = Date.now() / 1000;
|
|
|
|
if (timestamps.length === 0 || now - timestamps.at(-1)[0] > 1) {
|
|
|
|
timestamps.push([now, bytesSent]);
|
|
|
|
if (timestamps.length > SAMPLE_WINDOW) { timestamps.shift(); }
|
|
|
|
}
|
|
|
|
|
2022-04-27 23:52:45 -04:00
|
|
|
updateProgress();
|
2022-04-26 23:54:29 -04:00
|
|
|
} else {
|
|
|
|
fileIndex += 1;
|
|
|
|
byteIndex = 0;
|
|
|
|
sendData();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-27 23:52:45 -04:00
|
|
|
function updateProgress() {
|
|
|
|
let percentage;
|
|
|
|
if (totalBytes === 0) {
|
|
|
|
percentage = "0%";
|
|
|
|
} else {
|
|
|
|
percentage = `${(bytesSent*100/totalBytes).toFixed(1)}%`;
|
|
|
|
}
|
2022-05-23 20:44:22 -04:00
|
|
|
progressPercentage.textContent = percentage;
|
|
|
|
|
|
|
|
progressSize.textContent = `${displaySize(bytesSent)}/${displaySize(totalBytes)}`;
|
|
|
|
|
2022-05-23 19:59:05 -04:00
|
|
|
if (timestamps.length >= 2) {
|
|
|
|
const start = timestamps.at(0);
|
|
|
|
const end = timestamps.at(-1);
|
2022-05-23 20:44:22 -04:00
|
|
|
const rate = (end[1] - start[1])/(end[0] - start[0]);
|
|
|
|
progressRate.textContent = `${displaySize(rate)}/s`;
|
|
|
|
|
|
|
|
if (rate > STALL_THRESHOLD) {
|
|
|
|
// Use the value from timestamps rather than bytesSent to avoid awkward UI thrashing
|
|
|
|
const remaining = (totalBytes - end[1]) / rate;
|
|
|
|
progressEta.textContent = `${displayTime(remaining)} remaining`;
|
|
|
|
} else {
|
|
|
|
progressEta.textContent = "stalled";
|
2022-05-23 19:59:05 -04:00
|
|
|
}
|
2022-05-23 20:44:22 -04:00
|
|
|
} else {
|
|
|
|
progressRate.textContent = "???B/s";
|
|
|
|
progressEta.textContent = "??? remaining";
|
2022-05-23 19:59:05 -04:00
|
|
|
}
|
2022-05-23 20:44:22 -04:00
|
|
|
|
2022-04-28 02:28:10 -04:00
|
|
|
progressBar.style.backgroundSize = percentage;
|
2022-04-28 02:19:43 -04:00
|
|
|
|
|
|
|
const fileEntries = Array.from(fileList.children);
|
|
|
|
for (entry of fileEntries.slice(0, fileIndex)) {
|
|
|
|
entry.style.backgroundSize = "100%";
|
|
|
|
}
|
|
|
|
if (fileIndex < files.length) {
|
|
|
|
const currentFile = files[fileIndex];
|
|
|
|
if (currentFile.size > 0) {
|
|
|
|
fileEntries[fileIndex].style.backgroundSize = `${(byteIndex*100/currentFile.size)}%`;
|
|
|
|
}
|
|
|
|
}
|
2022-04-27 23:52:45 -04:00
|
|
|
}
|
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
function handleClose(e) {
|
|
|
|
console.log('Websocket closed', e);
|
|
|
|
if (fileIndex >= files.length) {
|
|
|
|
displayCompletion();
|
2022-04-26 23:54:29 -04:00
|
|
|
} else {
|
2022-05-01 02:32:56 -04:00
|
|
|
let error;
|
|
|
|
if (e.code === 1011) {
|
|
|
|
if (e.reason) {
|
|
|
|
error = `Server error: ${e.reason}`;
|
|
|
|
} else {
|
|
|
|
error = "A server error has occurred."
|
|
|
|
}
|
|
|
|
} else if (e.reason) {
|
|
|
|
error = e.reason;
|
|
|
|
}
|
|
|
|
displayError(error);
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
function finishSending() {
|
|
|
|
if (socket.bufferedAmount > 0) {
|
2022-05-01 05:11:23 -04:00
|
|
|
setTimeout(finishSending, 1000);
|
2022-05-01 02:32:56 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
socket.close();
|
|
|
|
displayCompletion();
|
2022-04-27 23:52:45 -04:00
|
|
|
}
|
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
function displayCompletion() {
|
|
|
|
messageBox.textContent = 'Upload complete!';
|
|
|
|
document.body.className = 'completed';
|
|
|
|
removePerFileProgressBars(); // completed file backgrounds are handled in CSS
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
function displayError(error) {
|
|
|
|
messageBox.textContent = error || 'An error has occurred.';
|
|
|
|
document.body.className = 'selecting error';
|
|
|
|
removePerFileProgressBars();
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
|
2022-05-01 02:32:56 -04:00
|
|
|
function removePerFileProgressBars() {
|
|
|
|
const fileEntries = Array.from(fileList.children);
|
|
|
|
for (entry of fileEntries) {
|
|
|
|
entry.style.backgroundSize = "0%";
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
2022-05-01 02:32:56 -04:00
|
|
|
}
|