mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 10:51:23 +00:00
109 lines
4.5 KiB
TypeScript
109 lines
4.5 KiB
TypeScript
import type { BrowserRouteContext } from "../server-context.js";
|
|
import { getProfileContext, jsonError, toNumber, toStringOrEmpty } from "./utils.js";
|
|
import type { BrowserRouteRegistrar } from "./types.js";
|
|
|
|
export function registerBrowserTabRoutes(app: BrowserRouteRegistrar, ctx: BrowserRouteContext) {
|
|
app.get("/tabs", async (req, res) => {
|
|
const profileCtx = getProfileContext(req, ctx);
|
|
if ("error" in profileCtx) return jsonError(res, profileCtx.status, profileCtx.error);
|
|
try {
|
|
const reachable = await profileCtx.isReachable(300);
|
|
if (!reachable) return res.json({ running: false, tabs: [] as unknown[] });
|
|
const tabs = await profileCtx.listTabs();
|
|
res.json({ running: true, tabs });
|
|
} catch (err) {
|
|
jsonError(res, 500, String(err));
|
|
}
|
|
});
|
|
|
|
app.post("/tabs/open", async (req, res) => {
|
|
const profileCtx = getProfileContext(req, ctx);
|
|
if ("error" in profileCtx) return jsonError(res, profileCtx.status, profileCtx.error);
|
|
const url = toStringOrEmpty((req.body as { url?: unknown })?.url);
|
|
if (!url) return jsonError(res, 400, "url is required");
|
|
try {
|
|
await profileCtx.ensureBrowserAvailable();
|
|
const tab = await profileCtx.openTab(url);
|
|
res.json(tab);
|
|
} catch (err) {
|
|
jsonError(res, 500, String(err));
|
|
}
|
|
});
|
|
|
|
app.post("/tabs/focus", async (req, res) => {
|
|
const profileCtx = getProfileContext(req, ctx);
|
|
if ("error" in profileCtx) return jsonError(res, profileCtx.status, profileCtx.error);
|
|
const targetId = toStringOrEmpty((req.body as { targetId?: unknown })?.targetId);
|
|
if (!targetId) return jsonError(res, 400, "targetId is required");
|
|
try {
|
|
if (!(await profileCtx.isReachable(300))) return jsonError(res, 409, "browser not running");
|
|
await profileCtx.focusTab(targetId);
|
|
res.json({ ok: true });
|
|
} catch (err) {
|
|
const mapped = ctx.mapTabError(err);
|
|
if (mapped) return jsonError(res, mapped.status, mapped.message);
|
|
jsonError(res, 500, String(err));
|
|
}
|
|
});
|
|
|
|
app.delete("/tabs/:targetId", async (req, res) => {
|
|
const profileCtx = getProfileContext(req, ctx);
|
|
if ("error" in profileCtx) return jsonError(res, profileCtx.status, profileCtx.error);
|
|
const targetId = toStringOrEmpty(req.params.targetId);
|
|
if (!targetId) return jsonError(res, 400, "targetId is required");
|
|
try {
|
|
if (!(await profileCtx.isReachable(300))) return jsonError(res, 409, "browser not running");
|
|
await profileCtx.closeTab(targetId);
|
|
res.json({ ok: true });
|
|
} catch (err) {
|
|
const mapped = ctx.mapTabError(err);
|
|
if (mapped) return jsonError(res, mapped.status, mapped.message);
|
|
jsonError(res, 500, String(err));
|
|
}
|
|
});
|
|
|
|
app.post("/tabs/action", async (req, res) => {
|
|
const profileCtx = getProfileContext(req, ctx);
|
|
if ("error" in profileCtx) return jsonError(res, profileCtx.status, profileCtx.error);
|
|
const action = toStringOrEmpty((req.body as { action?: unknown })?.action);
|
|
const index = toNumber((req.body as { index?: unknown })?.index);
|
|
try {
|
|
if (action === "list") {
|
|
const reachable = await profileCtx.isReachable(300);
|
|
if (!reachable) return res.json({ ok: true, tabs: [] as unknown[] });
|
|
const tabs = await profileCtx.listTabs();
|
|
return res.json({ ok: true, tabs });
|
|
}
|
|
|
|
if (action === "new") {
|
|
await profileCtx.ensureBrowserAvailable();
|
|
const tab = await profileCtx.openTab("about:blank");
|
|
return res.json({ ok: true, tab });
|
|
}
|
|
|
|
if (action === "close") {
|
|
const tabs = await profileCtx.listTabs();
|
|
const target = typeof index === "number" ? tabs[index] : tabs.at(0);
|
|
if (!target) return jsonError(res, 404, "tab not found");
|
|
await profileCtx.closeTab(target.targetId);
|
|
return res.json({ ok: true, targetId: target.targetId });
|
|
}
|
|
|
|
if (action === "select") {
|
|
if (typeof index !== "number") return jsonError(res, 400, "index is required");
|
|
const tabs = await profileCtx.listTabs();
|
|
const target = tabs[index];
|
|
if (!target) return jsonError(res, 404, "tab not found");
|
|
await profileCtx.focusTab(target.targetId);
|
|
return res.json({ ok: true, targetId: target.targetId });
|
|
}
|
|
|
|
return jsonError(res, 400, "unknown tab action");
|
|
} catch (err) {
|
|
const mapped = ctx.mapTabError(err);
|
|
if (mapped) return jsonError(res, mapped.status, mapped.message);
|
|
jsonError(res, 500, String(err));
|
|
}
|
|
});
|
|
}
|