1
0
silverbullet/web/syscalls/shell.ts
2023-07-24 09:36:33 +02:00

35 lines
917 B
TypeScript

import { SysCallMapping } from "../../plugos/system.ts";
import type { Client } from "../client.ts";
export function shellSyscalls(
client: Client,
): SysCallMapping {
return {
"shell.run": async (
_ctx,
cmd: string,
args: string[],
): Promise<{ stdout: string; stderr: string; code: number }> => {
if (!client.remoteSpacePrimitives) {
throw new Error("Not supported in fully local mode");
}
const resp = client.remoteSpacePrimitives.authenticatedFetch(
`${client.remoteSpacePrimitives.url}/.rpc`,
{
method: "POST",
body: JSON.stringify({
operation: "shell",
cmd,
args,
}),
},
);
const { code, stderr, stdout } = await (await resp).json();
if (code !== 0) {
throw new Error(stderr);
}
return { code, stderr, stdout };
},
};
}