Change server-side shell running implementation
This commit is contained in:
parent
7bd58ae0e8
commit
b3d5af360b
@ -7,6 +7,7 @@ import { ServerSystem } from "../server/server_system.ts";
|
|||||||
import { AssetBundlePlugSpacePrimitives } from "../common/spaces/asset_bundle_space_primitives.ts";
|
import { AssetBundlePlugSpacePrimitives } from "../common/spaces/asset_bundle_space_primitives.ts";
|
||||||
import { determineDatabaseBackend } from "../server/db_backend.ts";
|
import { determineDatabaseBackend } from "../server/db_backend.ts";
|
||||||
import { EndpointHook } from "../plugos/hooks/endpoint.ts";
|
import { EndpointHook } from "../plugos/hooks/endpoint.ts";
|
||||||
|
import { determineShellBackend } from "../server/shell_backend.ts";
|
||||||
|
|
||||||
export async function runPlug(
|
export async function runPlug(
|
||||||
spacePath: string,
|
spacePath: string,
|
||||||
@ -34,6 +35,7 @@ export async function runPlug(
|
|||||||
builtinAssetBundle,
|
builtinAssetBundle,
|
||||||
),
|
),
|
||||||
dbBackend,
|
dbBackend,
|
||||||
|
determineShellBackend(spacePath),
|
||||||
);
|
);
|
||||||
await serverSystem.init(true);
|
await serverSystem.init(true);
|
||||||
app.use((context, next) => {
|
app.use((context, next) => {
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
import { ShellResponse } from "../../server/rpc.ts";
|
|
||||||
import type { SysCallMapping } from "../system.ts";
|
|
||||||
|
|
||||||
export function shellSyscalls(cwd: string): SysCallMapping {
|
|
||||||
return {
|
|
||||||
"shell.run": async (
|
|
||||||
_ctx,
|
|
||||||
cmd: string,
|
|
||||||
args: string[],
|
|
||||||
): Promise<ShellResponse> => {
|
|
||||||
const p = new Deno.Command(cmd, {
|
|
||||||
args: args,
|
|
||||||
cwd,
|
|
||||||
stdout: "piped",
|
|
||||||
stderr: "piped",
|
|
||||||
});
|
|
||||||
const output = await p.output();
|
|
||||||
const stdout = new TextDecoder().decode(output.stdout);
|
|
||||||
const stderr = new TextDecoder().decode(output.stderr);
|
|
||||||
|
|
||||||
return { stdout, stderr, code: output.code };
|
|
||||||
},
|
|
||||||
};
|
|
||||||
}
|
|
@ -87,6 +87,7 @@ export class SpaceServer {
|
|||||||
const serverSystem = new ServerSystem(
|
const serverSystem = new ServerSystem(
|
||||||
this.spacePrimitives,
|
this.spacePrimitives,
|
||||||
this.kvPrimitives,
|
this.kvPrimitives,
|
||||||
|
this.shellBackend,
|
||||||
);
|
);
|
||||||
this.serverSystem = serverSystem;
|
this.serverSystem = serverSystem;
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,7 @@ import { spaceSyscalls } from "./syscalls/space.ts";
|
|||||||
import { systemSyscalls } from "../web/syscalls/system.ts";
|
import { systemSyscalls } from "../web/syscalls/system.ts";
|
||||||
import { yamlSyscalls } from "../common/syscalls/yaml.ts";
|
import { yamlSyscalls } from "../common/syscalls/yaml.ts";
|
||||||
import { sandboxFetchSyscalls } from "../plugos/syscalls/fetch.ts";
|
import { sandboxFetchSyscalls } from "../plugos/syscalls/fetch.ts";
|
||||||
import { shellSyscalls } from "../plugos/syscalls/shell.deno.ts";
|
import { shellSyscalls } from "./syscalls/shell.ts";
|
||||||
import { SpacePrimitives } from "../common/spaces/space_primitives.ts";
|
import { SpacePrimitives } from "../common/spaces/space_primitives.ts";
|
||||||
import { base64EncodedDataUrl } from "../plugos/asset_bundle/base64.ts";
|
import { base64EncodedDataUrl } from "../plugos/asset_bundle/base64.ts";
|
||||||
import { Plug } from "../plugos/plug.ts";
|
import { Plug } from "../plugos/plug.ts";
|
||||||
@ -32,6 +32,7 @@ import { codeWidgetSyscalls } from "../web/syscalls/code_widget.ts";
|
|||||||
import { CodeWidgetHook } from "../web/hooks/code_widget.ts";
|
import { CodeWidgetHook } from "../web/hooks/code_widget.ts";
|
||||||
import { KVPrimitivesManifestCache } from "../plugos/manifest_cache.ts";
|
import { KVPrimitivesManifestCache } from "../plugos/manifest_cache.ts";
|
||||||
import { KvPrimitives } from "../plugos/lib/kv_primitives.ts";
|
import { KvPrimitives } from "../plugos/lib/kv_primitives.ts";
|
||||||
|
import { ShellBackend } from "./shell_backend.ts";
|
||||||
|
|
||||||
const fileListInterval = 30 * 1000; // 30s
|
const fileListInterval = 30 * 1000; // 30s
|
||||||
|
|
||||||
@ -47,6 +48,7 @@ export class ServerSystem {
|
|||||||
constructor(
|
constructor(
|
||||||
private baseSpacePrimitives: SpacePrimitives,
|
private baseSpacePrimitives: SpacePrimitives,
|
||||||
readonly kvPrimitives: KvPrimitives,
|
readonly kvPrimitives: KvPrimitives,
|
||||||
|
private shellBackend: ShellBackend,
|
||||||
) {
|
) {
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -123,7 +125,7 @@ export class ServerSystem {
|
|||||||
|
|
||||||
this.system.registerSyscalls(
|
this.system.registerSyscalls(
|
||||||
["shell"],
|
["shell"],
|
||||||
shellSyscalls("."),
|
shellSyscalls(this.shellBackend),
|
||||||
);
|
);
|
||||||
|
|
||||||
await this.loadPlugs();
|
await this.loadPlugs();
|
||||||
|
16
server/syscalls/shell.ts
Normal file
16
server/syscalls/shell.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import { shell } from "$sb/syscalls.ts";
|
||||||
|
import { SysCallMapping } from "../../plugos/system.ts";
|
||||||
|
import { ShellResponse } from "../../server/rpc.ts";
|
||||||
|
import { ShellBackend } from "../shell_backend.ts";
|
||||||
|
|
||||||
|
export function shellSyscalls(shellBackend: ShellBackend): SysCallMapping {
|
||||||
|
return {
|
||||||
|
"shell.run": (
|
||||||
|
_ctx,
|
||||||
|
cmd: string,
|
||||||
|
args: string[],
|
||||||
|
): Promise<ShellResponse> => {
|
||||||
|
return shellBackend.handle({ cmd, args });
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user