1
0
silverbullet/common/spaces/http_space_primitives.ts

190 lines
4.7 KiB
TypeScript
Raw Normal View History

2022-10-15 17:02:56 +00:00
import { FileMeta } from "../types.ts";
import { Plug } from "../../plugos/plug.ts";
import { FileData, FileEncoding, SpacePrimitives } from "./space_primitives.ts";
2022-10-19 07:52:29 +00:00
import {
base64DecodeDataUrl,
base64EncodedDataUrl,
} from "../../plugos/asset_bundle/base64.ts";
import { mime } from "../../plugos/deps.ts";
2022-04-07 13:21:30 +00:00
export class HttpSpacePrimitives implements SpacePrimitives {
fsUrl: string;
private plugUrl: string;
2022-12-05 11:14:21 +00:00
constructor(url: string) {
2022-09-12 12:50:37 +00:00
this.fsUrl = url + "/fs";
this.plugUrl = url + "/plug";
2022-04-29 16:54:27 +00:00
}
private async authenticatedFetch(
url: string,
options: any,
2022-04-29 16:54:27 +00:00
): Promise<Response> {
2022-10-15 17:02:56 +00:00
const result = await fetch(url, options);
2022-04-29 16:54:27 +00:00
if (result.status === 401) {
2022-12-22 10:21:12 +00:00
// Invalid credentials, reloading the browser should trigger authentication
2022-12-16 11:49:05 +00:00
location.reload();
2022-04-29 16:54:27 +00:00
throw Error("Unauthorized");
}
return result;
}
2022-09-12 12:50:37 +00:00
public async fetchFileList(): Promise<FileMeta[]> {
2022-10-15 17:02:56 +00:00
const req = await this.authenticatedFetch(this.fsUrl, {
method: "GET",
});
2022-10-15 17:02:56 +00:00
return req.json();
}
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 }> {
2022-10-15 17:02:56 +00:00
const res = await this.authenticatedFetch(`${this.fsUrl}/${name}`, {
method: "GET",
});
2022-09-12 12:50:37 +00:00
if (res.status === 404) {
throw new Error(`Page not found`);
}
2022-09-12 12:50:37 +00:00
let data: FileData | null = null;
switch (encoding) {
case "arraybuffer":
{
2022-10-19 07:52:29 +00:00
data = await res.arrayBuffer();
// data = await abBlob.arrayBuffer();
}
2022-09-12 12:50:37 +00:00
break;
case "dataurl":
{
2022-10-19 07:52:29 +00:00
data = base64EncodedDataUrl(
mime.getType(name) || "application/octet-stream",
new Uint8Array(await res.arrayBuffer()),
);
}
2022-09-12 12:50:37 +00:00
break;
case "string":
data = await res.text();
break;
}
return {
2022-09-12 12:50:37 +00:00
data: data,
meta: this.responseToMeta(name, res),
};
}
2022-09-12 12:50:37 +00:00
async writeFile(
name: string,
2022-09-12 12:50:37 +00:00
encoding: FileEncoding,
data: FileData,
): Promise<FileMeta> {
let body: any = null;
switch (encoding) {
case "arraybuffer":
case "string":
body = data;
break;
case "dataurl":
2022-10-19 07:52:29 +00:00
data = base64DecodeDataUrl(data as string);
2022-09-12 12:50:37 +00:00
break;
}
2022-10-15 17:02:56 +00:00
const res = await this.authenticatedFetch(`${this.fsUrl}/${name}`, {
method: "PUT",
2022-09-12 12:50:37 +00:00
headers: {
"Content-type": "application/octet-stream",
},
body,
});
2022-09-12 12:50:37 +00:00
const newMeta = this.responseToMeta(name, res);
return newMeta;
}
2022-09-12 12:50:37 +00:00
async deleteFile(name: string): Promise<void> {
2022-10-15 17:02:56 +00:00
const req = await this.authenticatedFetch(`${this.fsUrl}/${name}`, {
method: "DELETE",
});
if (req.status !== 200) {
2022-09-12 12:50:37 +00:00
throw Error(`Failed to delete file: ${req.statusText}`);
}
}
2022-09-12 12:50:37 +00:00
async getFileMeta(name: string): Promise<FileMeta> {
2022-10-15 17:02:56 +00:00
const res = await this.authenticatedFetch(`${this.fsUrl}/${name}`, {
2022-09-12 12:50:37 +00:00
method: "OPTIONS",
});
if (res.status === 404) {
throw new Error(`File not found`);
}
return this.responseToMeta(name, res);
}
private responseToMeta(name: string, res: Response): FileMeta {
return {
name,
size: +res.headers.get("X-Content-Length")!,
2022-09-12 12:50:37 +00:00
contentType: res.headers.get("Content-type")!,
lastModified: +(res.headers.get("X-Last-Modified") || "0"),
2022-09-12 12:50:37 +00:00
perm: (res.headers.get("X-Permission") as "rw" | "ro") || "rw",
};
}
// Plugs
2022-04-05 15:02:17 +00:00
async proxySyscall(plug: Plug<any>, name: string, args: any[]): Promise<any> {
2022-10-15 17:02:56 +00:00
const req = await this.authenticatedFetch(
2022-04-29 16:54:27 +00:00
`${this.plugUrl}/${plug.name}/syscall/${name}`,
{
method: "POST",
headers: {
"Content-type": "application/json",
},
body: JSON.stringify(args),
},
2022-04-29 16:54:27 +00:00
);
if (req.status !== 200) {
2022-10-15 17:02:56 +00:00
const error = await req.text();
throw Error(error);
}
if (req.headers.get("Content-length") === "0") {
return;
}
return await req.json();
}
2022-04-05 15:02:17 +00:00
async invokeFunction(
plug: Plug<any>,
env: string,
name: string,
args: any[],
2022-04-05 15:02:17 +00:00
): Promise<any> {
// Invoke locally
if (!env || env === "client") {
return plug.invoke(name, args);
}
// Or dispatch to server
2022-10-15 17:02:56 +00:00
const req = await this.authenticatedFetch(
2022-04-29 16:54:27 +00:00
`${this.plugUrl}/${plug.name}/function/${name}`,
{
method: "POST",
headers: {
"Content-type": "application/json",
},
body: JSON.stringify(args),
},
2022-04-29 16:54:27 +00:00
);
if (req.status !== 200) {
2022-10-15 17:02:56 +00:00
const error = await req.text();
throw Error(error);
}
if (req.headers.get("Content-length") === "0") {
return;
}
if (req.headers.get("Content-type")?.includes("application/json")) {
2022-04-25 17:46:08 +00:00
return await req.json();
} else {
return await req.text();
}
}
}