1
0
silverbullet/common/spaces/disk_space_primitives.ts

191 lines
5.2 KiB
TypeScript
Raw Normal View History

// 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";
import { FileData, FileEncoding, SpacePrimitives } from "./space_primitives.ts";
import { Plug } from "../../plugos/plug.ts";
import { mime } from "https://deno.land/x/mimetypes@v1.0.0/mod.ts";
import { base64Decode, base64Encode } from "../../plugos/base64.ts";
2022-09-12 12:50:37 +00:00
function lookupContentType(path: string): string {
return mime.getType(path) || "application/octet-stream";
2022-09-12 12:50:37 +00:00
}
export class DiskSpacePrimitives implements SpacePrimitives {
rootPath: string;
2022-09-12 12:50:37 +00:00
constructor(rootPath: string) {
this.rootPath = Deno.realPathSync(rootPath);
}
2022-04-29 16:54:27 +00:00
safePath(p: string): string {
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-09-12 12:50:37 +00:00
pathToFilename(fullPath: string): string {
return fullPath.substring(this.rootPath.length + 1);
}
2022-09-12 12:50:37 +00:00
async readFile(
name: string,
encoding: FileEncoding,
2022-09-12 12:50:37 +00:00
): Promise<{ data: FileData; meta: FileMeta }> {
const localPath = this.filenameToPath(name);
try {
const s = await Deno.stat(localPath);
2022-09-12 12:50:37 +00:00
let data: FileData | null = null;
const contentType = lookupContentType(name);
2022-09-12 12:50:37 +00:00
switch (encoding) {
case "string":
data = await Deno.readTextFile(localPath);
2022-09-12 12:50:37 +00:00
break;
case "dataurl":
{
const f = await Deno.open(localPath, { read: true });
const buf = base64Encode(await readAll(f));
Deno.close(f.rid);
data = `data:${contentType};base64,${buf}`;
}
2022-09-12 12:50:37 +00:00
break;
case "arraybuffer":
{
const f = await Deno.open(localPath, { read: true });
const buf = await readAll(f);
Deno.close(f.rid);
data = buf.buffer;
}
2022-09-12 12:50:37 +00:00
break;
}
return {
2022-09-12 12:50:37 +00:00
data,
meta: {
2022-09-12 12:50:37 +00:00
name: name,
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,
},
};
} catch (e) {
// console.error("Error while reading file", name, e);
2022-09-12 12:50:37 +00:00
throw Error(`Could not read file ${name}`);
}
}
2022-09-12 12:50:37 +00:00
async writeFile(
name: string,
encoding: FileEncoding,
data: FileData,
): Promise<FileMeta> {
2022-10-10 16:19:08 +00:00
const localPath = this.filenameToPath(name);
try {
2022-03-23 14:41:12 +00:00
// Ensure parent folder exists
await Deno.mkdir(path.dirname(localPath), { recursive: true });
2022-03-23 14:41:12 +00:00
// Actually write the file
2022-09-12 12:50:37 +00:00
switch (encoding) {
case "string":
2022-10-10 16:19:08 +00:00
await Deno.writeTextFile(`${localPath}`, data as string);
2022-09-12 12:50:37 +00:00
break;
case "dataurl":
await Deno.writeFile(
localPath,
base64Decode((data as string).split(",")[1]),
);
2022-09-12 12:50:37 +00:00
break;
case "arraybuffer":
await Deno.writeFile(localPath, new Uint8Array(data as ArrayBuffer));
2022-09-12 12:50:37 +00:00
break;
}
2022-09-12 12:50:37 +00:00
2022-03-23 14:41:12 +00:00
// Fetch new metadata
const s = await Deno.stat(localPath);
return {
2022-09-12 12:50:37 +00:00
name: name,
size: s.size,
contentType: lookupContentType(name),
lastModified: s.mtime!.getTime(),
2022-05-17 09:53:17 +00:00
perm: "rw",
};
} 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-09-12 12:50:37 +00:00
async getFileMeta(name: string): Promise<FileMeta> {
const localPath = this.filenameToPath(name);
try {
const s = await Deno.stat(localPath);
return {
2022-09-12 12:50:37 +00:00
name: name,
size: s.size,
contentType: lookupContentType(name),
lastModified: s.mtime!.getTime(),
2022-05-17 09:53:17 +00:00
perm: "rw",
};
} catch (e) {
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-09-12 12:50:37 +00:00
async deleteFile(name: string): Promise<void> {
const localPath = this.filenameToPath(name);
await Deno.remove(localPath);
}
2022-09-12 12:50:37 +00:00
async fetchFileList(): Promise<FileMeta[]> {
const fileList: FileMeta[] = [];
const walkPath = async (dir: string) => {
for await (const file of Deno.readDir(dir)) {
if (file.name.startsWith(".")) {
2022-09-12 12:50:37 +00:00
continue;
}
const fullPath = path.join(dir, file.name);
let s = await Deno.stat(fullPath);
if (file.isDirectory) {
await walkPath(fullPath);
} else {
if (!file.name.startsWith(".")) {
2022-09-12 12:50:37 +00:00
fileList.push({
name: this.pathToFilename(fullPath),
size: s.size,
2022-09-12 12:50:37 +00:00
contentType: lookupContentType(fullPath),
lastModified: s.mtime!.getTime(),
perm: "rw",
2022-09-12 12:50:37 +00:00
});
}
}
}
};
await walkPath(this.rootPath);
2022-09-12 12:50:37 +00:00
return fileList;
}
// Plugs
invokeFunction(
plug: Plug<any>,
env: string,
name: string,
args: any[],
): Promise<any> {
return plug.invoke(name, args);
}
proxySyscall(plug: Plug<any>, name: string, args: any[]): Promise<any> {
return plug.syscall(name, args);
}
}