194 lines
4.8 KiB
TypeScript
194 lines
4.8 KiB
TypeScript
import { FileMeta } from "../types.ts";
|
|
import { Plug } from "../../plugos/plug.ts";
|
|
import { FileData, FileEncoding, SpacePrimitives } from "./space_primitives.ts";
|
|
import {
|
|
base64DecodeDataUrl,
|
|
base64EncodedDataUrl,
|
|
} from "../../plugos/asset_bundle/base64.ts";
|
|
import { mime } from "../../plugos/deps.ts";
|
|
|
|
export class HttpSpacePrimitives implements SpacePrimitives {
|
|
fsUrl: string;
|
|
private plugUrl: string;
|
|
token?: string;
|
|
|
|
constructor(url: string, token?: string) {
|
|
this.fsUrl = url + "/fs";
|
|
this.plugUrl = url + "/plug";
|
|
this.token = token;
|
|
}
|
|
|
|
private async authenticatedFetch(
|
|
url: string,
|
|
options: any,
|
|
): Promise<Response> {
|
|
if (this.token) {
|
|
options.headers = options.headers || {};
|
|
options.headers["Authorization"] = `Bearer ${this.token}`;
|
|
}
|
|
const result = await fetch(url, options);
|
|
if (result.status === 401) {
|
|
throw Error("Unauthorized");
|
|
}
|
|
return result;
|
|
}
|
|
|
|
public async fetchFileList(): Promise<FileMeta[]> {
|
|
const req = await this.authenticatedFetch(this.fsUrl, {
|
|
method: "GET",
|
|
});
|
|
|
|
return req.json();
|
|
}
|
|
|
|
async readFile(
|
|
name: string,
|
|
encoding: FileEncoding,
|
|
): Promise<{ data: FileData; meta: FileMeta }> {
|
|
const res = await this.authenticatedFetch(`${this.fsUrl}/${name}`, {
|
|
method: "GET",
|
|
});
|
|
if (res.status === 404) {
|
|
throw new Error(`Page not found`);
|
|
}
|
|
let data: FileData | null = null;
|
|
switch (encoding) {
|
|
case "arraybuffer":
|
|
{
|
|
data = await res.arrayBuffer();
|
|
// data = await abBlob.arrayBuffer();
|
|
}
|
|
break;
|
|
case "dataurl":
|
|
{
|
|
data = base64EncodedDataUrl(
|
|
mime.getType(name) || "application/octet-stream",
|
|
new Uint8Array(await res.arrayBuffer()),
|
|
);
|
|
}
|
|
break;
|
|
case "string":
|
|
data = await res.text();
|
|
break;
|
|
}
|
|
return {
|
|
data: data,
|
|
meta: this.responseToMeta(name, res),
|
|
};
|
|
}
|
|
|
|
async writeFile(
|
|
name: string,
|
|
encoding: FileEncoding,
|
|
data: FileData,
|
|
): Promise<FileMeta> {
|
|
let body: any = null;
|
|
|
|
switch (encoding) {
|
|
case "arraybuffer":
|
|
case "string":
|
|
body = data;
|
|
break;
|
|
case "dataurl":
|
|
data = base64DecodeDataUrl(data as string);
|
|
break;
|
|
}
|
|
const res = await this.authenticatedFetch(`${this.fsUrl}/${name}`, {
|
|
method: "PUT",
|
|
headers: {
|
|
"Content-type": "application/octet-stream",
|
|
},
|
|
body,
|
|
});
|
|
const newMeta = this.responseToMeta(name, res);
|
|
return newMeta;
|
|
}
|
|
|
|
async deleteFile(name: string): Promise<void> {
|
|
const req = await this.authenticatedFetch(`${this.fsUrl}/${name}`, {
|
|
method: "DELETE",
|
|
});
|
|
if (req.status !== 200) {
|
|
throw Error(`Failed to delete file: ${req.statusText}`);
|
|
}
|
|
}
|
|
|
|
async getFileMeta(name: string): Promise<FileMeta> {
|
|
const res = await this.authenticatedFetch(`${this.fsUrl}/${name}`, {
|
|
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")!,
|
|
contentType: res.headers.get("Content-type")!,
|
|
lastModified: +(res.headers.get("X-Last-Modified") || "0"),
|
|
perm: (res.headers.get("X-Permission") as "rw" | "ro") || "rw",
|
|
};
|
|
}
|
|
|
|
// Plugs
|
|
|
|
async proxySyscall(plug: Plug<any>, name: string, args: any[]): Promise<any> {
|
|
const req = await this.authenticatedFetch(
|
|
`${this.plugUrl}/${plug.name}/syscall/${name}`,
|
|
{
|
|
method: "POST",
|
|
headers: {
|
|
"Content-type": "application/json",
|
|
},
|
|
body: JSON.stringify(args),
|
|
},
|
|
);
|
|
if (req.status !== 200) {
|
|
const error = await req.text();
|
|
throw Error(error);
|
|
}
|
|
if (req.headers.get("Content-length") === "0") {
|
|
return;
|
|
}
|
|
return await req.json();
|
|
}
|
|
|
|
async invokeFunction(
|
|
plug: Plug<any>,
|
|
env: string,
|
|
name: string,
|
|
args: any[],
|
|
): Promise<any> {
|
|
// Invoke locally
|
|
if (!env || env === "client") {
|
|
return plug.invoke(name, args);
|
|
}
|
|
// Or dispatch to server
|
|
const req = await this.authenticatedFetch(
|
|
`${this.plugUrl}/${plug.name}/function/${name}`,
|
|
{
|
|
method: "POST",
|
|
headers: {
|
|
"Content-type": "application/json",
|
|
},
|
|
body: JSON.stringify(args),
|
|
},
|
|
);
|
|
if (req.status !== 200) {
|
|
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")) {
|
|
return await req.json();
|
|
} else {
|
|
return await req.text();
|
|
}
|
|
}
|
|
}
|