2022-10-10 12:50:21 +00:00
|
|
|
// import { mkdir, readdir, readFile, stat, unlink, writeFile } from "fs/promises";
|
|
|
|
import { path } from "../deps.ts";
|
|
|
|
import { readAll } from "../deps.ts";
|
|
|
|
import { FileMeta } from "../types.ts";
|
2023-05-23 18:53:53 +00:00
|
|
|
import { SpacePrimitives } from "./space_primitives.ts";
|
2022-10-10 12:50:21 +00:00
|
|
|
import { mime } from "https://deno.land/x/mimetypes@v1.0.0/mod.ts";
|
2023-05-23 18:53:53 +00:00
|
|
|
import { walk } from "https://deno.land/std@0.165.0/fs/walk.ts";
|
2022-03-20 08:56:28 +00:00
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
function lookupContentType(path: string): string {
|
2022-10-10 12:50:21 +00:00
|
|
|
return mime.getType(path) || "application/octet-stream";
|
2022-09-12 12:50:37 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 11:04:51 +00:00
|
|
|
function normalizeForwardSlashPath(path: string) {
|
|
|
|
return path.replaceAll("\\", "/");
|
|
|
|
}
|
|
|
|
|
2023-01-13 14:41:29 +00:00
|
|
|
const excludedFiles = ["data.db", "data.db-journal", "sync.json"];
|
|
|
|
|
2023-05-23 18:53:53 +00:00
|
|
|
export type DiskSpaceOptions = {
|
|
|
|
maxFileSizeMB?: number;
|
|
|
|
};
|
|
|
|
|
2022-04-08 15:46:09 +00:00
|
|
|
export class DiskSpacePrimitives implements SpacePrimitives {
|
2022-03-20 08:56:28 +00:00
|
|
|
rootPath: string;
|
|
|
|
|
2023-05-23 18:53:53 +00:00
|
|
|
constructor(rootPath: string, private options: DiskSpaceOptions = {}) {
|
2022-10-10 12:50:21 +00:00
|
|
|
this.rootPath = Deno.realPathSync(rootPath);
|
2022-04-06 13:39:20 +00:00
|
|
|
}
|
|
|
|
|
2022-04-29 16:54:27 +00:00
|
|
|
safePath(p: string): string {
|
2022-10-10 12:50:21 +00:00
|
|
|
const realPath = path.resolve(p);
|
2022-04-29 16:54:27 +00:00
|
|
|
if (!realPath.startsWith(this.rootPath)) {
|
|
|
|
throw Error(`Path ${p} is not in the space`);
|
|
|
|
}
|
|
|
|
return realPath;
|
|
|
|
}
|
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
filenameToPath(pageName: string) {
|
|
|
|
return this.safePath(path.join(this.rootPath, pageName));
|
2022-04-06 13:39:20 +00:00
|
|
|
}
|
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
pathToFilename(fullPath: string): string {
|
|
|
|
return fullPath.substring(this.rootPath.length + 1);
|
2022-03-20 08:56:28 +00:00
|
|
|
}
|
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
async readFile(
|
|
|
|
name: string,
|
2023-05-23 18:53:53 +00:00
|
|
|
): Promise<{ data: Uint8Array; meta: FileMeta }> {
|
2022-09-12 12:50:37 +00:00
|
|
|
const localPath = this.filenameToPath(name);
|
2022-03-20 08:56:28 +00:00
|
|
|
try {
|
2022-10-10 12:50:21 +00:00
|
|
|
const s = await Deno.stat(localPath);
|
|
|
|
const contentType = lookupContentType(name);
|
2023-05-23 18:53:53 +00:00
|
|
|
|
|
|
|
const f = await Deno.open(localPath, { read: true });
|
|
|
|
const data = await readAll(f);
|
|
|
|
Deno.close(f.rid);
|
|
|
|
|
2022-03-20 08:56:28 +00:00
|
|
|
return {
|
2022-09-12 12:50:37 +00:00
|
|
|
data,
|
2022-03-20 08:56:28 +00:00
|
|
|
meta: {
|
2022-09-12 12:50:37 +00:00
|
|
|
name: name,
|
2022-10-10 12:50:21 +00:00
|
|
|
lastModified: s.mtime!.getTime(),
|
2022-05-17 09:53:17 +00:00
|
|
|
perm: "rw",
|
2022-09-12 12:50:37 +00:00
|
|
|
size: s.size,
|
|
|
|
contentType: contentType,
|
2022-03-20 08:56:28 +00:00
|
|
|
},
|
|
|
|
};
|
2022-10-15 17:02:56 +00:00
|
|
|
} catch {
|
2022-10-10 12:50:21 +00:00
|
|
|
// console.error("Error while reading file", name, e);
|
2022-09-12 12:50:37 +00:00
|
|
|
throw Error(`Could not read file ${name}`);
|
2022-03-20 08:56:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
async writeFile(
|
|
|
|
name: string,
|
2023-05-23 18:53:53 +00:00
|
|
|
data: Uint8Array,
|
|
|
|
_selfUpdate?: boolean,
|
|
|
|
lastModified?: number,
|
2022-09-12 12:50:37 +00:00
|
|
|
): Promise<FileMeta> {
|
2022-10-10 16:19:08 +00:00
|
|
|
const localPath = this.filenameToPath(name);
|
2022-03-20 08:56:28 +00:00
|
|
|
try {
|
2022-03-23 14:41:12 +00:00
|
|
|
// Ensure parent folder exists
|
2022-10-10 12:50:21 +00:00
|
|
|
await Deno.mkdir(path.dirname(localPath), { recursive: true });
|
2022-03-23 14:41:12 +00:00
|
|
|
|
2023-05-23 18:53:53 +00:00
|
|
|
const file = await Deno.open(localPath, {
|
|
|
|
write: true,
|
|
|
|
create: true,
|
|
|
|
truncate: true,
|
|
|
|
});
|
|
|
|
|
2022-03-23 14:41:12 +00:00
|
|
|
// Actually write the file
|
2023-05-23 18:53:53 +00:00
|
|
|
await Deno.write(file.rid, data);
|
|
|
|
|
|
|
|
if (lastModified) {
|
|
|
|
console.log("Seting mtime to", new Date(lastModified));
|
|
|
|
await Deno.futime(file.rid, new Date(), new Date(lastModified));
|
2022-04-06 13:39:20 +00:00
|
|
|
}
|
2023-05-23 18:53:53 +00:00
|
|
|
file.close();
|
2022-09-12 12:50:37 +00:00
|
|
|
|
2022-03-23 14:41:12 +00:00
|
|
|
// Fetch new metadata
|
2022-10-10 12:50:21 +00:00
|
|
|
const s = await Deno.stat(localPath);
|
2022-03-20 08:56:28 +00:00
|
|
|
return {
|
2022-09-12 12:50:37 +00:00
|
|
|
name: name,
|
|
|
|
size: s.size,
|
|
|
|
contentType: lookupContentType(name),
|
2022-10-10 12:50:21 +00:00
|
|
|
lastModified: s.mtime!.getTime(),
|
2022-05-17 09:53:17 +00:00
|
|
|
perm: "rw",
|
2022-03-20 08:56:28 +00:00
|
|
|
};
|
|
|
|
} catch (e) {
|
2022-09-12 12:50:37 +00:00
|
|
|
console.error("Error while writing file", name, e);
|
|
|
|
throw Error(`Could not write ${name}`);
|
2022-03-20 08:56:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
async getFileMeta(name: string): Promise<FileMeta> {
|
2022-10-10 12:50:21 +00:00
|
|
|
const localPath = this.filenameToPath(name);
|
2022-03-20 08:56:28 +00:00
|
|
|
try {
|
2022-10-10 12:50:21 +00:00
|
|
|
const s = await Deno.stat(localPath);
|
2022-03-20 08:56:28 +00:00
|
|
|
return {
|
2022-09-12 12:50:37 +00:00
|
|
|
name: name,
|
|
|
|
size: s.size,
|
|
|
|
contentType: lookupContentType(name),
|
2022-10-10 12:50:21 +00:00
|
|
|
lastModified: s.mtime!.getTime(),
|
2022-05-17 09:53:17 +00:00
|
|
|
perm: "rw",
|
2022-03-20 08:56:28 +00:00
|
|
|
};
|
2022-10-15 17:02:56 +00:00
|
|
|
} catch {
|
2022-06-28 12:14:15 +00:00
|
|
|
// console.error("Error while getting page meta", pageName, e);
|
2022-09-12 12:50:37 +00:00
|
|
|
throw Error(`Could not get meta for ${name}`);
|
2022-03-20 08:56:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
async deleteFile(name: string): Promise<void> {
|
2022-10-10 12:50:21 +00:00
|
|
|
const localPath = this.filenameToPath(name);
|
|
|
|
await Deno.remove(localPath);
|
2022-03-20 08:56:28 +00:00
|
|
|
}
|
2022-04-08 15:46:09 +00:00
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
async fetchFileList(): Promise<FileMeta[]> {
|
2022-10-19 09:30:22 +00:00
|
|
|
const allFiles: FileMeta[] = [];
|
|
|
|
for await (
|
|
|
|
const file of walk(this.rootPath, {
|
|
|
|
includeDirs: false,
|
|
|
|
// Exclude hidden directories
|
2022-11-29 07:50:09 +00:00
|
|
|
skip: [
|
|
|
|
// Dynamically builds a regexp that matches hidden directories INSIDE the rootPath
|
|
|
|
// (but if the rootPath is hidden, it stil lists files inside of it, fixing #130)
|
|
|
|
new RegExp(`^${escapeRegExp(this.rootPath)}.*\\/\\..+$`),
|
|
|
|
],
|
2022-10-19 09:30:22 +00:00
|
|
|
})
|
|
|
|
) {
|
|
|
|
const fullPath = file.path;
|
2022-10-28 14:17:40 +00:00
|
|
|
try {
|
|
|
|
const s = await Deno.stat(fullPath);
|
2023-05-23 18:53:53 +00:00
|
|
|
// Don't list file exceeding the maximum file size
|
|
|
|
if (
|
|
|
|
this.options.maxFileSizeMB &&
|
|
|
|
s.size / (1024 * 1024) > this.options.maxFileSizeMB
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
2023-01-13 14:41:29 +00:00
|
|
|
const name = fullPath.substring(this.rootPath.length + 1);
|
|
|
|
if (excludedFiles.includes(name)) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-10-28 14:17:40 +00:00
|
|
|
allFiles.push({
|
2023-01-14 11:04:51 +00:00
|
|
|
name: normalizeForwardSlashPath(name),
|
2022-10-28 14:17:40 +00:00
|
|
|
lastModified: s.mtime!.getTime(),
|
|
|
|
contentType: mime.getType(fullPath) || "application/octet-stream",
|
|
|
|
size: s.size,
|
|
|
|
perm: "rw",
|
|
|
|
});
|
|
|
|
} catch (e: any) {
|
|
|
|
if (e instanceof Deno.errors.NotFound) {
|
|
|
|
// Ignore, temporariy file already deleted by the time we got here
|
|
|
|
} else {
|
|
|
|
console.error("Failed to stat", fullPath, e);
|
|
|
|
}
|
|
|
|
}
|
2022-10-19 09:30:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return allFiles;
|
2022-09-05 09:47:30 +00:00
|
|
|
}
|
2022-03-20 08:56:28 +00:00
|
|
|
}
|
2022-11-29 07:50:09 +00:00
|
|
|
|
|
|
|
function escapeRegExp(string: string) {
|
|
|
|
return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
|
|
|
|
}
|