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

推荐订阅源

J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
C
Check Point Blog
D
Docker
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
量子位
有赞技术团队
有赞技术团队
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
M
MIT News - Artificial intelligence
B
Blog
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
月光博客
月光博客

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: decode web fetch legacy charsets (#73513) · openclaw...
amknight · 2026-04-28 · via Recent Commits to openclaw:main

@@ -94,6 +94,114 @@ export type ReadResponseTextResult = {

9494

bytesRead: number;

9595

};

969697+

const RESPONSE_CHARSET_SCAN_BYTES = 4096;

98+

const latin1Decoder = new TextDecoder("latin1");

99+

const utf8Decoder = new TextDecoder("utf-8");

100+101+

function normalizeCharset(value: string | undefined): string | undefined {

102+

const normalized = value?.trim().replace(/^["']|["']$/g, "") ?? "";

103+

return normalized && normalized.length <= 64 && /^[A-Za-z0-9._:-]+$/.test(normalized)

104+

? normalized

105+

: undefined;

106+

}

107+108+

function readCharsetParam(value: string | null | undefined): string | undefined {

109+

const match = /(?:^|;)\s*charset\s*=\s*(?:"([^"]+)"|'([^']+)'|([^;\s]+))/i.exec(value ?? "");

110+

return normalizeCharset(match?.[1] ?? match?.[2] ?? match?.[3]);

111+

}

112+113+

function readAttribute(tag: string, name: string): string | undefined {

114+

const target = name.toLowerCase();

115+

for (const match of tag.matchAll(

116+

/([A-Za-z0-9:_-]+)\s*=\s*(?:"([^"]*)"|'([^']*)'|([^\s"'>]+))/g,

117+

)) {

118+

if (match[1]?.toLowerCase() === target) {

119+

return match[2] ?? match[3] ?? match[4] ?? "";

120+

}

121+

}

122+

return undefined;

123+

}

124+125+

function shouldSniffDocumentCharset(contentType: string | null): boolean {

126+

const mediaType = contentType?.split(";", 1)[0]?.trim().toLowerCase();

127+

if (!mediaType) {

128+

return true;

129+

}

130+

return (

131+

mediaType === "text/html" ||

132+

mediaType === "application/xhtml+xml" ||

133+

mediaType === "text/xml" ||

134+

mediaType === "application/xml" ||

135+

mediaType.endsWith("+xml")

136+

);

137+

}

138+139+

function sniffCharset(contentType: string | null, bytes: Uint8Array): string | undefined {

140+

if (bytes[0] === 0xef && bytes[1] === 0xbb && bytes[2] === 0xbf) {

141+

return "utf-8";

142+

}

143+

if (bytes[0] === 0xff && bytes[1] === 0xfe) {

144+

return "utf-16le";

145+

}

146+

if (bytes[0] === 0xfe && bytes[1] === 0xff) {

147+

return "utf-16be";

148+

}

149+

if (!shouldSniffDocumentCharset(contentType)) {

150+

return undefined;

151+

}

152+153+

const head = latin1Decoder.decode(

154+

bytes.subarray(0, Math.min(bytes.byteLength, RESPONSE_CHARSET_SCAN_BYTES)),

155+

);

156+

const xmlEncoding = /<\?xml\s+[^>]*\bencoding\s*=\s*(?:"([^"]+)"|'([^']+)')/i.exec(head);

157+

if (xmlEncoding) {

158+

return normalizeCharset(xmlEncoding[1] ?? xmlEncoding[2]);

159+

}

160+161+

for (const match of head.matchAll(/<meta\b[^>]*>/gi)) {

162+

const tag = match[0];

163+

const charset = normalizeCharset(readAttribute(tag, "charset"));

164+

if (charset) {

165+

return charset;

166+

}

167+

if (/^content-type$/i.test(readAttribute(tag, "http-equiv") ?? "")) {

168+

const contentCharset = readCharsetParam(readAttribute(tag, "content"));

169+

if (contentCharset) {

170+

return contentCharset;

171+

}

172+

}

173+

}

174+

return undefined;

175+

}

176+177+

function concatBytes(parts: Uint8Array[], totalBytes: number): Uint8Array {

178+

if (parts.length === 1 && parts[0]?.byteLength === totalBytes) {

179+

return parts[0];

180+

}

181+

const bytes = new Uint8Array(totalBytes);

182+

let offset = 0;

183+

for (const part of parts) {

184+

bytes.set(part, offset);

185+

offset += part.byteLength;

186+

}

187+

return bytes;

188+

}

189+190+

function responseContentType(res: Response): string | null {

191+

const headers = (res as { headers?: { get?: (name: string) => string | null } }).headers;

192+

return typeof headers?.get === "function" ? headers.get("content-type") : null;

193+

}

194+195+

function decodeResponseBytes(res: Response, bytes: Uint8Array): string {

196+

const contentType = responseContentType(res);

197+

const charset = readCharsetParam(contentType) ?? sniffCharset(contentType, bytes);

198+

try {

199+

return new TextDecoder(charset ?? "utf-8").decode(bytes);

200+

} catch {

201+

return utf8Decoder.decode(bytes);

202+

}

203+

}

204+97205

export async function readResponseText(

98206

res: Response,

99207

options?: { maxBytes?: number },

@@ -113,10 +221,9 @@ export async function readResponseText(

113221

typeof (body as { getReader: () => unknown }).getReader === "function"

114222

) {

115223

const reader = (body as ReadableStream<Uint8Array>).getReader();

116-

const decoder = new TextDecoder();

117224

let bytesRead = 0;

118225

let truncated = false;

119-

const parts: string[] = [];

226+

const parts: Uint8Array[] = [];

120227121228

try {

122229

while (true) {

@@ -140,15 +247,15 @@ export async function readResponseText(

140247

}

141248142249

bytesRead += chunk.byteLength;

143-

parts.push(decoder.decode(chunk, { stream: true }));

250+

parts.push(chunk);

144251145252

if (truncated || bytesRead >= maxBytes) {

146253

truncated = true;

147254

break;

148255

}

149256

}

150257

} catch {

151-

// Best-effort: return whatever we decoded so far.

258+

// Best-effort: return whatever we read so far.

152259

} finally {

153260

if (truncated) {

154261

// Some mocked or non-compliant streams never settle cancel(); do not

@@ -157,8 +264,22 @@ export async function readResponseText(

157264

}

158265

}

159266160-

parts.push(decoder.decode());

161-

return { text: parts.join(""), truncated, bytesRead };

267+

const bytes = concatBytes(parts, bytesRead);

268+

return { text: decodeResponseBytes(res, bytes), truncated, bytesRead };

269+

}

270+271+

const readBytes = (res as { arrayBuffer?: () => Promise<ArrayBuffer> }).arrayBuffer;

272+

if (typeof readBytes === "function") {

273+

try {

274+

const bytes = new Uint8Array(await readBytes.call(res));

275+

return {

276+

text: decodeResponseBytes(res, bytes),

277+

truncated: false,

278+

bytesRead: bytes.byteLength,

279+

};

280+

} catch {

281+

// Fall back to text() for lightweight Response-like mocks that do not expose bytes.

282+

}

162283

}

163284164285

try {