/** * @typedef {object} PathItem * @property {"Dir"|"SymlinkDir"|"File"|"SymlinkFile"} path_type * @property {string} name * @property {number} mtime * @property {number} size */ /** * @typedef {object} DATA * @property {string} href * @property {string} uri_prefix * @property {"Index" | "Edit"} kind * @property {PathItem[]} paths * @property {boolean} allow_upload * @property {boolean} allow_delete * @property {boolean} allow_search * @property {boolean} allow_archive * @property {boolean} auth * @property {string} user * @property {boolean} dir_exists * @property {string} editable */ var DUFS_MAX_UPLOADINGS = 1; /** * @type {DATA} DATA */ var DATA; /** * @type {PARAMS} * @typedef {object} PARAMS * @property {string} q * @property {string} sort * @property {string} order */ const PARAMS = Object.fromEntries(new URLSearchParams(window.location.search).entries()); const IFRAME_FORMATS = [ ".pdf", ".jpg", ".jpeg", ".png", ".gif", ".bmp", ".svg", ".mp4", ".mov", ".avi", ".wmv", ".flv", ".webm", ".mp3", ".ogg", ".wav", ".m4a", ]; const dirEmptyNote = PARAMS.q ? 'No results' : DATA.dir_exists ? 'Empty folder' : 'Folder will be created when a file is uploaded'; const ICONS = { dir: ``, symlinkFile: ``, symlinkDir: ``, file: ``, download: ``, move: ``, edit: ``, delete: ``, } /** * @type Element */ let $pathsTable; /** * @type Element */ let $pathsTableHead; /** * @type Element */ let $pathsTableBody; /** * @type Element */ let $uploadersTable; /** * @type Element */ let $emptyFolder; /** * @type Element */ let $editor; /** * @type Element */ let $userBtn; /** * @type Element */ let $userName; function ready() { $pathsTable = document.querySelector(".paths-table") $pathsTableHead = document.querySelector(".paths-table thead"); $pathsTableBody = document.querySelector(".paths-table tbody"); $uploadersTable = document.querySelector(".uploaders-table"); $emptyFolder = document.querySelector(".empty-folder"); $editor = document.querySelector(".editor"); $userBtn = document.querySelector(".user-btn"); $userName = document.querySelector(".user-name"); addBreadcrumb(DATA.href, DATA.uri_prefix); if (DATA.kind == "Index") { document.title = `Index of ${DATA.href} - Dufs`; document.querySelector(".index-page").classList.remove("hidden"); setupIndexPage(); } else if (DATA.kind == "Edit") { document.title = `Edit ${DATA.href} - Dufs`; document.querySelector(".editor-page").classList.remove("hidden");; setupEditPage(); } } class Uploader { /** * * @param {File} file * @param {string[]} dirs */ constructor(file, dirs) { /** * @type Element */ this.$uploadStatus = null this.uploaded = 0; this.lastUptime = 0; this.name = [...dirs, file.name].join("/"); this.idx = Uploader.globalIdx++; this.file = file; } upload() { const { idx, name } = this; const url = newUrl(name); const encodedName = encodedStr(name); $uploadersTable.insertAdjacentHTML("beforeend", ` ${getPathSvg()} ${encodedName} `); $uploadersTable.classList.remove("hidden"); $emptyFolder.classList.add("hidden"); this.$uploadStatus = document.getElementById(`uploadStatus${idx}`); this.$uploadStatus.innerHTML = '-'; Uploader.queues.push(this); Uploader.runQueue(); } ajax() { const url = newUrl(this.name); this.lastUptime = Date.now(); const ajax = new XMLHttpRequest(); ajax.upload.addEventListener("progress", e => this.progress(e), false); ajax.addEventListener("readystatechange", () => { if (ajax.readyState === 4) { if (ajax.status >= 200 && ajax.status < 300) { this.complete(); } else { this.fail(); } } }) ajax.addEventListener("error", () => this.fail(), false); ajax.addEventListener("abort", () => this.fail(), false); ajax.open("PUT", url); ajax.send(this.file); } progress(event) { const now = Date.now(); const speed = (event.loaded - this.uploaded) / (now - this.lastUptime) * 1000; const [speedValue, speedUnit] = formatSize(speed); const speedText = `${speedValue} ${speedUnit}/s`; const progress = formatPercent((event.loaded / event.total) * 100); const duration = formatDuration((event.total - event.loaded) / speed) this.$uploadStatus.innerHTML = `${speedText}${progress} ${duration}`; this.uploaded = event.loaded; this.lastUptime = now; } complete() { this.$uploadStatus.innerHTML = `✓`; Uploader.runnings--; Uploader.runQueue(); } fail() { this.$uploadStatus.innerHTML = `✗`; Uploader.runnings--; Uploader.runQueue(); } } Uploader.globalIdx = 0; Uploader.runnings = 0; Uploader.auth = false; /** * @type Uploader[] */ Uploader.queues = []; Uploader.runQueue = async () => { if (Uploader.runnings >= DUFS_MAX_UPLOADINGS) return; if (Uploader.queues.length == 0) return; Uploader.runnings++; let uploader = Uploader.queues.shift(); if (!Uploader.auth) { Uploader.auth = true; try { await checkAuth() } catch { Uploader.auth = false; } } uploader.ajax(); } /** * Add breadcrumb * @param {string} href * @param {string} uri_prefix */ function addBreadcrumb(href, uri_prefix) { const $breadcrumb = document.querySelector(".breadcrumb"); let parts = []; if (href === "/") { parts = [""]; } else { parts = href.split("/"); } const len = parts.length; let path = uri_prefix; for (let i = 0; i < len; i++) { const name = parts[i]; if (i > 0) { if (!path.endsWith("/")) { path += "/"; } path += encodeURIComponent(name); } const encodedName = encodedStr(name); if (i === 0) { $breadcrumb.insertAdjacentHTML("beforeend", ``); } else if (i === len - 1) { $breadcrumb.insertAdjacentHTML("beforeend", `${encodedName}`); } else { $breadcrumb.insertAdjacentHTML("beforeend", `${encodedName}`); } if (i !== len - 1) { $breadcrumb.insertAdjacentHTML("beforeend", `/`); } } } function setupIndexPage() { if (DATA.allow_archive) { const $download = document.querySelector(".download"); $download.href = baseUrl() + "?zip"; $download.title = "Download folder as a .zip file"; $download.classList.remove("hidden"); } if (DATA.allow_upload) { setupDropzone(); setupUploadFile(); setupNewFolder(); setupNewFile(); } if (DATA.auth) { setupAuth(); } if (DATA.allow_search) { setupSearch() } renderPathsTableHead(); renderPathsTableBody(); } /** * Render path table thead */ function renderPathsTableHead() { const headerItems = [ { name: "name", props: `colspan="2"`, text: "Name", }, { name: "mtime", props: ``, text: "Last Modified", }, { name: "size", props: ``, text: "Size", } ]; $pathsTableHead.insertAdjacentHTML("beforeend", ` ${headerItems.map(item => { let svg = ``; let order = "desc"; if (PARAMS.sort === item.name) { if (PARAMS.order === "desc") { order = "asc"; svg = `` } else { svg = `` } } const qs = new URLSearchParams({ ...PARAMS, order, sort: item.name }).toString(); const icon = `${svg}` return `${item.text}${icon}` }).join("\n")} Actions `); } /** * Render path table tbody */ function renderPathsTableBody() { if (DATA.paths && DATA.paths.length > 0) { const len = DATA.paths.length; if (len > 0) { $pathsTable.classList.remove("hidden"); } for (let i = 0; i < len; i++) { addPath(DATA.paths[i], i); } } else { $emptyFolder.textContent = dirEmptyNote; $emptyFolder.classList.remove("hidden"); } } /** * Add pathitem * @param {PathItem} file * @param {number} index */ function addPath(file, index) { const encodedName = encodedStr(file.name); let url = newUrl(file.name) let actionDelete = ""; let actionDownload = ""; let actionMove = ""; let actionEdit = ""; let isDir = file.path_type.endsWith("Dir"); if (isDir) { url += "/"; if (DATA.allow_archive) { actionDownload = `
${ICONS.download}
`; } } else { actionDownload = `
${ICONS.download}
`; } if (DATA.allow_delete) { if (DATA.allow_upload) { actionMove = `
${ICONS.move}
`; if (!isDir) { actionEdit = `${ICONS.edit}`; } } actionDelete = `
${ICONS.delete}
`; } let actionCell = ` ${actionDownload} ${actionMove} ${actionDelete} ${actionEdit} ` $pathsTableBody.insertAdjacentHTML("beforeend", ` ${getPathSvg(file.path_type)} ${encodedName} ${formatMtime(file.mtime)} ${formatSize(file.size).join(" ")} ${actionCell} `) } function setupDropzone() { ["drag", "dragstart", "dragend", "dragover", "dragenter", "dragleave", "drop"].forEach(name => { document.addEventListener(name, e => { e.preventDefault(); e.stopPropagation(); }); }); document.addEventListener("drop", async e => { if (!e.dataTransfer.items[0].webkitGetAsEntry) { const files = e.dataTransfer.files.filter(v => v.size > 0); for (const file of files) { new Uploader(file, []).upload(); } } else { const entries = []; const len = e.dataTransfer.items.length; for (let i = 0; i < len; i++) { entries.push(e.dataTransfer.items[i].webkitGetAsEntry()); } addFileEntries(entries, []) } }); } function setupAuth() { if (DATA.user) { $userBtn.classList.remove("hidden"); $userName.textContent = DATA.user; } else { const $loginBtn = document.querySelector(".login-btn"); $loginBtn.classList.remove("hidden"); $loginBtn.addEventListener("click", async () => { try { await checkAuth() location.reload(); } catch (err) { alert(err.message); } }); } } function setupSearch() { const $searchbar = document.querySelector(".searchbar"); $searchbar.classList.remove("hidden"); $searchbar.addEventListener("submit", event => { event.preventDefault(); const formData = new FormData($searchbar); const q = formData.get("q"); let href = baseUrl(); if (q) { href += "?q=" + q; } location.href = href; }); if (PARAMS.q) { document.getElementById('search').value = PARAMS.q; } } function setupUploadFile() { document.querySelector(".upload-file").classList.remove("hidden"); document.getElementById("file").addEventListener("change", async e => { const files = e.target.files; for (let file of files) { new Uploader(file, []).upload(); } }); } function setupNewFolder() { const $newFolder = document.querySelector(".new-folder"); $newFolder.classList.remove("hidden"); $newFolder.addEventListener("click", () => { const name = prompt("Enter folder name"); if (name) createFolder(name); }); } function setupNewFile() { const $newFile = document.querySelector(".new-file"); $newFile.classList.remove("hidden"); $newFile.addEventListener("click", () => { const name = prompt("Enter file name"); if (name) createFile(name); }); } async function setupEditPage() { const url = baseUrl(); const $download = document.querySelector(".download"); $download.classList.remove("hidden"); $download.href = url; const $moveFile = document.querySelector(".move-file"); $moveFile.classList.remove("hidden"); $moveFile.addEventListener("click", async () => { const query = location.href.slice(url.length); const newFileUrl = await doMovePath(url); if (newFileUrl) { location.href = newFileUrl + query; } }); const $deleteFile = document.querySelector(".delete-file"); $deleteFile.classList.remove("hidden"); $deleteFile.addEventListener("click", async () => { const url = baseUrl(); const name = baseName(url); await doDeletePath(name, url, () => { location.href = location.href.split("/").slice(0, -1).join("/"); }); }) if (!DATA.editable) { const $notEditable = document.querySelector(".not-editable"); const url = baseUrl(); const ext = extName(baseName(url)); if (IFRAME_FORMATS.find(v => v === ext)) { $notEditable.insertAdjacentHTML("afterend", ``) } else { $notEditable.classList.remove("hidden"); $notEditable.textContent = "Cannot edit because file is too large or binary."; } return; } const $saveBtn = document.querySelector(".save-btn"); $saveBtn.classList.remove("hidden"); $saveBtn.addEventListener("click", saveChange); $editor.classList.remove("hidden"); try { const res = await fetch(baseUrl()); await assertResOK(res); const encoding = getEncoding(res.headers.get("content-type")); if (encoding === "utf-8") { $editor.value = await res.text(); } else { const bytes = await res.arrayBuffer(); const dataView = new DataView(bytes) const decoder = new TextDecoder(encoding) $editor.value = decoder.decode(dataView); } } catch (err) { alert(`Failed get file, ${err.message}`); } } /** * Delete path * @param {number} index * @returns */ async function deletePath(index) { const file = DATA.paths[index]; if (!file) return; await doDeletePath(file.name, newUrl(file.name), () => { document.getElementById(`addPath${index}`)?.remove(); DATA.paths[index] = null; if (!DATA.paths.find(v => !!v)) { $pathsTable.classList.add("hidden"); $emptyFolder.textContent = dirEmptyNote; $emptyFolder.classList.remove("hidden"); } }) } async function doDeletePath(name, url, cb) { if (!confirm(`Delete \`${name}\`?`)) return; try { await checkAuth(); const res = await fetch(url, { method: "DELETE", }); await assertResOK(res); cb(); } catch (err) { alert(`Cannot delete \`${file.name}\`, ${err.message}`); } } /** * Move path * @param {number} index * @returns */ async function movePath(index) { const file = DATA.paths[index]; if (!file) return; const fileUrl = newUrl(file.name); const newFileUrl = await doMovePath(fileUrl); if (newFileUrl) { location.href = newFileUrl.split("/").slice(0, -1).join("/"); } } async function doMovePath(fileUrl) { const fileUrlObj = new URL(fileUrl) const prefix = DATA.uri_prefix.slice(0, -1); const filePath = decodeURIComponent(fileUrlObj.pathname.slice(prefix.length)); let newPath = prompt("Enter new path", filePath) if (!newPath) return; if (!newPath.startsWith("/")) newPath = "/" + newPath; if (filePath === newPath) return; const newFileUrl = fileUrlObj.origin + prefix + newPath.split("/").map(encodeURIComponent).join("/"); try { await checkAuth(); const res1 = await fetch(newFileUrl, { method: "HEAD", }); if (res1.status === 200) { if (!confirm("Override existing file?")) { return; } } const res2 = await fetch(fileUrl, { method: "MOVE", headers: { "Destination": newFileUrl, } }); await assertResOK(res2); return newFileUrl; } catch (err) { alert(`Cannot move \`${filePath}\` to \`${newPath}\`, ${err.message}`); } } /** * Save editor change */ async function saveChange() { try { await fetch(baseUrl(), { method: "PUT", body: $editor.value, }); location.reload(); } catch (err) { alert(`Failed to save file, ${err.message}`); } } async function checkAuth() { if (!DATA.auth) return; const res = await fetch(baseUrl(), { method: "WRITEABLE", }); await assertResOK(res); document.querySelector(".login-btn").classList.add("hidden"); $userBtn.classList.remove("hidden"); $userName.textContent = ""; } /** * Create a folder * @param {string} name */ async function createFolder(name) { const url = newUrl(name); try { await checkAuth(); const res = await fetch(url, { method: "MKCOL", }); await assertResOK(res); location.href = url; } catch (err) { alert(`Cannot create folder \`${name}\`, ${err.message}`); } } async function createFile(name) { const url = newUrl(name); try { await checkAuth(); const res = await fetch(url, { method: "PUT", body: "", }); await assertResOK(res); location.href = url + "?edit"; } catch (err) { alert(`Cannot create file \`${name}\`, ${err.message}`); } } async function addFileEntries(entries, dirs) { for (const entry of entries) { if (entry.isFile) { entry.file(file => { new Uploader(file, dirs).upload(); }); } else if (entry.isDirectory) { const dirReader = entry.createReader() dirReader.readEntries(entries => addFileEntries(entries, [...dirs, entry.name])); } } } function newUrl(name) { let url = baseUrl(); if (!url.endsWith("/")) url += "/"; url += name.split("/").map(encodeURIComponent).join("/"); return url; } function baseUrl() { return location.href.split('?')[0]; } function baseName(url) { return decodeURIComponent(url.split("/").filter(v => v.length > 0).slice(-1)[0]) } function extName(filename) { const dotIndex = filename.lastIndexOf('.'); if (dotIndex === -1 || dotIndex === 0 || dotIndex === filename.length - 1) { return ''; } return filename.substring(dotIndex); } function getPathSvg(path_type) { switch (path_type) { case "Dir": return ICONS.dir; case "SymlinkFile": return ICONS.symlinkFile; case "SymlinkDir": return ICONS.symlinkDir; default: return ICONS.file; } } function formatMtime(mtime) { if (!mtime) return "" const date = new Date(mtime); const year = date.getFullYear(); const month = padZero(date.getMonth() + 1, 2); const day = padZero(date.getDate(), 2); const hours = padZero(date.getHours(), 2); const minutes = padZero(date.getMinutes(), 2); return `${year}-${month}-${day} ${hours}:${minutes}`; } function padZero(value, size) { return ("0".repeat(size) + value).slice(-1 * size) } function formatSize(size) { if (size == null) return [] const sizes = ['B', 'KB', 'MB', 'GB', 'TB']; if (size == 0) return [0, "B"]; const i = parseInt(Math.floor(Math.log(size) / Math.log(1024))); ratio = 1 if (i >= 3) { ratio = 100 } return [Math.round(size * ratio / Math.pow(1024, i), 2) / ratio, sizes[i]]; } function formatDuration(seconds) { seconds = Math.ceil(seconds); const h = Math.floor(seconds / 3600); const m = Math.floor((seconds - h * 3600) / 60); const s = seconds - h * 3600 - m * 60 return `${padZero(h, 2)}:${padZero(m, 2)}:${padZero(s, 2)}`; } function formatPercent(percent) { if (percent > 10) { return percent.toFixed(1) + "%"; } else { return percent.toFixed(2) + "%"; } } function encodedStr(rawStr) { return rawStr.replace(/[\u00A0-\u9999<>\&]/g, function (i) { return '&#' + i.charCodeAt(0) + ';'; }); } async function assertResOK(res) { if (!(res.status >= 200 && res.status < 300)) { throw new Error(await res.text() || `Invalid status ${res.status}`); } } function getEncoding(contentType) { const charset = contentType?.split(";")[1]; if (/charset/i.test(charset)) { let encoding = charset.split("=")[1]; if (encoding) { return encoding.toLowerCase() } } return 'utf-8' }