惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
博客园 - 【当耐特】
量子位
有赞技术团队
有赞技术团队
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
C
Check Point Blog
B
Blog RSS Feed
M
MIT News - Artificial intelligence
H
Help Net Security
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
腾讯CDC

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(control ui): accept paired device token for assistant...
Patrick-Eric · 2026-04-24 · via Recent Commits to openclaw:main

@@ -3,7 +3,8 @@ import fs from "node:fs/promises";

33

import type { IncomingMessage } from "node:http";

44

import os from "node:os";

55

import path from "node:path";

6-

import { describe, expect, it } from "vitest";

6+

import { describe, expect, it, vi } from "vitest";

7+

import { approveDevicePairing, requestDevicePairing } from "../infra/device-pairing.js";

78

import { resolvePreferredOpenClawTmpDir } from "../infra/tmp-openclaw-dir.js";

89

import type { ResolvedGatewayAuth } from "./auth.js";

910

import { CONTROL_UI_BOOTSTRAP_CONFIG_PATH } from "./control-ui-contract.js";

@@ -264,6 +265,33 @@ describe("handleControlUiHttpRequest", () => {

264265

}

265266

}

266267268+

async function withPairedOperatorDeviceToken<T>(params: { fn: (token: string) => Promise<T> }) {

269+

const tempHome = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-ui-device-token-"));

270+

vi.stubEnv("OPENCLAW_HOME", tempHome);

271+

try {

272+

const deviceId = "control-ui-device";

273+

const requested = await requestDevicePairing({

274+

deviceId,

275+

publicKey: "test-public-key",

276+

role: "operator",

277+

scopes: ["operator.read"],

278+

clientId: "openclaw-control-ui",

279+

clientMode: "webchat",

280+

});

281+

const approved = await approveDevicePairing(requested.request.requestId, {

282+

callerScopes: ["operator.read"],

283+

});

284+

expect(approved?.status).toBe("approved");

285+

const operatorToken =

286+

approved?.status === "approved" ? approved.device.tokens?.operator?.token : undefined;

287+

expect(typeof operatorToken).toBe("string");

288+

return await params.fn(operatorToken ?? "");

289+

} finally {

290+

vi.unstubAllEnvs();

291+

await fs.rm(tempHome, { recursive: true, force: true });

292+

}

293+

}

294+267295

it("sets security headers for Control UI responses", async () => {

268296

await withControlUiRoot({

269297

fn: async (tmp) => {

@@ -370,6 +398,51 @@ describe("handleControlUiHttpRequest", () => {

370398

});

371399

});

372400401+

it("accepts paired operator device tokens on assistant media requests", async () => {

402+

await withPairedOperatorDeviceToken({

403+

fn: async (operatorToken) => {

404+

await withAllowedAssistantMediaRoot({

405+

prefix: "ui-media-device-token-",

406+

fn: async (tmpRoot) => {

407+

const filePath = path.join(tmpRoot, "photo.png");

408+

await fs.writeFile(filePath, Buffer.from("not-a-real-png"));

409+

const { res, handled } = await runAssistantMediaRequest({

410+

url: `/__openclaw__/assistant-media?source=${encodeURIComponent(filePath)}`,

411+

method: "GET",

412+

auth: { mode: "token", token: "shared-token", allowTailscale: false },

413+

headers: {

414+

authorization: `Bearer ${operatorToken}`,

415+

},

416+

});

417+

expect(handled).toBe(true);

418+

expect(res.statusCode).toBe(200);

419+

},

420+

});

421+

},

422+

});

423+

});

424+425+

it("accepts paired operator device tokens in assistant media query auth", async () => {

426+

await withPairedOperatorDeviceToken({

427+

fn: async (operatorToken) => {

428+

await withAllowedAssistantMediaRoot({

429+

prefix: "ui-media-device-token-query-",

430+

fn: async (tmpRoot) => {

431+

const filePath = path.join(tmpRoot, "photo.png");

432+

await fs.writeFile(filePath, Buffer.from("not-a-real-png"));

433+

const { res, handled } = await runAssistantMediaRequest({

434+

url: `/__openclaw__/assistant-media?source=${encodeURIComponent(filePath)}&token=${encodeURIComponent(operatorToken)}`,

435+

method: "GET",

436+

auth: { mode: "token", token: "shared-token", allowTailscale: false },

437+

});

438+

expect(handled).toBe(true);

439+

expect(res.statusCode).toBe(200);

440+

},

441+

});

442+

},

443+

});

444+

});

445+373446

it("rejects trusted-proxy assistant media requests from disallowed browser origins", async () => {

374447

await withAllowedAssistantMediaRoot({

375448

prefix: "ui-media-proxy-",

@@ -526,6 +599,28 @@ describe("handleControlUiHttpRequest", () => {

526599

});

527600

});

528601602+

it("serves bootstrap config JSON when paired device-token auth is valid", async () => {

603+

await withPairedOperatorDeviceToken({

604+

fn: async (operatorToken) => {

605+

await withControlUiRoot({

606+

fn: async (tmp) => {

607+

const { res, handled, end } = await runBootstrapConfigRequest({

608+

rootPath: tmp,

609+

auth: { mode: "token", token: "shared-token", allowTailscale: false },

610+

headers: {

611+

authorization: `Bearer ${operatorToken}`,

612+

},

613+

});

614+

expect(handled).toBe(true);

615+

expect(res.statusCode).toBe(200);

616+

const parsed = parseBootstrapPayload(end);

617+

expect(parsed.assistantAgentId).toBe("main");

618+

},

619+

});

620+

},

621+

});

622+

});

623+529624

it("serves bootstrap config JSON under basePath", async () => {

530625

await withControlUiRoot({

531626

fn: async (tmp) => {

@@ -618,6 +713,34 @@ describe("handleControlUiHttpRequest", () => {

618713

}

619714

});

620715716+

it("serves local avatar bytes when paired device-token auth is valid", async () => {

717+

await withPairedOperatorDeviceToken({

718+

fn: async (operatorToken) => {

719+

const tmp = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-avatar-device-token-"));

720+

try {

721+

const avatarPath = path.join(tmp, "main.png");

722+

await fs.writeFile(avatarPath, "avatar-bytes\n");

723+724+

const { res, handled, end } = await runAvatarRequest({

725+

url: "/avatar/main",

726+

method: "GET",

727+

auth: { mode: "token", token: "shared-token", allowTailscale: false },

728+

headers: {

729+

authorization: `Bearer ${operatorToken}`,

730+

},

731+

resolveAvatar: () => ({ kind: "local", filePath: avatarPath }),

732+

});

733+734+

expect(handled).toBe(true);

735+

expect(res.statusCode).toBe(200);

736+

expect(String(end.mock.calls[0]?.[0] ?? "")).toBe("avatar-bytes\n");

737+

} finally {

738+

await fs.rm(tmp, { recursive: true, force: true });

739+

}

740+

},

741+

});

742+

});

743+621744

it("returns avatar metadata when auth is enabled and the token is valid", async () => {

622745

const { res, end, handled } = await runAvatarRequest({

623746

url: "/avatar/main?meta=1",