Files
claude-code/packages/remote-control-server/web/api.js
claude-code-best 2da6514095 feat: 支持自托管的 remote-control-server (#214)
* feat: 支持自托管的 remote-control-server (#214)

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
2026-04-09 17:40:50 +08:00

90 lines
2.2 KiB
JavaScript

/**
* Remote Control — API Client (UUID-based auth)
*/
const BASE = ""; // same origin
function generateUuid() {
if (typeof crypto !== "undefined" && typeof crypto.randomUUID === "function") {
return crypto.randomUUID();
}
// Fallback for non-secure contexts (HTTP without localhost)
return "10000000-1000-4000-8000-100000000000".replace(/[018]/g, (c) =>
(c ^ (crypto.getRandomValues(new Uint8Array(1))[0] & (15 >> (c / 4)))).toString(16),
);
}
export function getUuid() {
let uuid = localStorage.getItem("rcs_uuid");
if (!uuid) {
uuid = generateUuid();
localStorage.setItem("rcs_uuid", uuid);
}
return uuid;
}
export function setUuid(uuid) {
localStorage.setItem("rcs_uuid", uuid);
}
async function api(method, path, body) {
const headers = { "Content-Type": "application/json" };
const uuid = getUuid();
// Append uuid as query param for auth
const sep = path.includes("?") ? "&" : "?";
const url = `${BASE}${path}${sep}uuid=${encodeURIComponent(uuid)}`;
const opts = { method, headers };
if (body !== undefined) opts.body = JSON.stringify(body);
const res = await fetch(url, opts);
const data = await res.json();
if (!res.ok) {
const err = data.error || { type: "unknown", message: res.statusText };
throw new Error(err.message || err.type);
}
return data;
}
export function apiBind(sessionId) {
return api("POST", "/web/bind", { sessionId });
}
export function apiFetchSessions() {
return api("GET", "/web/sessions");
}
export function apiFetchAllSessions() {
return api("GET", "/web/sessions/all");
}
export function apiFetchSession(id) {
return api("GET", `/web/sessions/${id}`);
}
export function apiFetchSessionHistory(id) {
return api("GET", `/web/sessions/${id}/history`);
}
export function apiFetchEnvironments() {
return api("GET", "/web/environments");
}
export function apiSendEvent(sessionId, body) {
return api("POST", `/web/sessions/${sessionId}/events`, body);
}
export function apiSendControl(sessionId, body) {
return api("POST", `/web/sessions/${sessionId}/control`, body);
}
export function apiInterrupt(sessionId) {
return api("POST", `/web/sessions/${sessionId}/interrupt`);
}
export function apiCreateSession(body) {
return api("POST", "/web/sessions", body);
}