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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
U
Unit 42
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
C
Check Point Blog
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
Vercel News
Vercel News
腾讯CDC
GbyAI
GbyAI
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 三生石上(FineUI控件)
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
小众软件
小众软件

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: validate telegram action integers · openclaw/opencla...
steipete · 2026-05-29 · via Recent Commits to openclaw:main

@@ -2,7 +2,7 @@ import type { AgentToolResult } from "openclaw/plugin-sdk/agent-core";

22

import { readBooleanParam } from "openclaw/plugin-sdk/boolean-param";

33

import {

44

jsonResult,

5-

readNumberParam,

5+

readPositiveIntegerParam,

66

readReactionParams,

77

readStringArrayParam,

88

readStringOrNumberParam,

@@ -97,7 +97,9 @@ type TelegramForumTopicIconColor = (typeof TELEGRAM_FORUM_TOPIC_ICON_COLORS)[num

9797

function readTelegramForumTopicIconColor(

9898

params: Record<string, unknown>,

9999

): TelegramForumTopicIconColor | undefined {

100-

const iconColor = readNumberParam(params, "iconColor", { integer: true });

100+

const iconColor = readPositiveIntegerParam(params, "iconColor", {

101+

message: "iconColor must be one of Telegram's supported forum topic colors.",

102+

});

101103

if (iconColor == null) {

102104

return undefined;

103105

}

@@ -124,8 +126,12 @@ function readTelegramChatId(params: Record<string, unknown>) {

124126125127

function readTelegramThreadId(params: Record<string, unknown>) {

126128

return (

127-

readNumberParam(params, "messageThreadId", { integer: true }) ??

128-

readNumberParam(params, "threadId", { integer: true })

129+

readPositiveIntegerParam(params, "messageThreadId", {

130+

message: "messageThreadId must be a positive integer.",

131+

}) ??

132+

readPositiveIntegerParam(params, "threadId", {

133+

message: "threadId must be a positive integer.",

134+

})

129135

);

130136

}

131137

@@ -147,8 +153,12 @@ function formatTelegramDeliveryTarget(to: string, messageThreadId?: number | nul

147153148154

function readTelegramReplyToMessageId(params: Record<string, unknown>) {

149155

return (

150-

readNumberParam(params, "replyToMessageId", { integer: true }) ??

151-

readNumberParam(params, "replyTo", { integer: true })

156+

readPositiveIntegerParam(params, "replyToMessageId", {

157+

message: "replyToMessageId must be a positive integer.",

158+

}) ??

159+

readPositiveIntegerParam(params, "replyTo", {

160+

message: "replyTo must be a positive integer.",

161+

})

152162

);

153163

}

154164

@@ -353,9 +363,19 @@ export async function handleTelegramAction(

353363

});

354364

}

355365

const chatId = readTelegramChatId(params);

356-

const messageId =

357-

readNumberParam(params, "messageId", { integer: true }) ??

358-

resolveReactionMessageId({ args: params });

366+

let explicitMessageId: number | undefined;

367+

try {

368+

explicitMessageId = readPositiveIntegerParam(params, "messageId", {

369+

message: "messageId must be a positive integer.",

370+

});

371+

} catch {

372+

return jsonResult({

373+

ok: false,

374+

reason: "missing_message_id",

375+

hint: "Telegram reaction requires a valid messageId (or inbound context fallback). Do not retry.",

376+

});

377+

}

378+

const messageId = explicitMessageId ?? resolveReactionMessageId({ args: params });

359379

if (typeof messageId !== "number" || !Number.isFinite(messageId) || messageId <= 0) {

360380

return jsonResult({

361381

ok: false,

@@ -547,16 +567,18 @@ export async function handleTelegramAction(

547567

const allowMultiselect =

548568

readBooleanParam(params, "allowMultiselect") ?? readBooleanParam(params, "pollMulti");

549569

const durationSeconds =

550-

readNumberParam(params, "durationSeconds", { integer: true }) ??

551-

readNumberParam(params, "pollDurationSeconds", {

552-

integer: true,

553-

strict: true,

570+

readPositiveIntegerParam(params, "durationSeconds", {

571+

message: "durationSeconds must be a positive integer.",

572+

}) ??

573+

readPositiveIntegerParam(params, "pollDurationSeconds", {

574+

message: "pollDurationSeconds must be a positive integer.",

554575

});

555576

const durationHours =

556-

readNumberParam(params, "durationHours", { integer: true }) ??

557-

readNumberParam(params, "pollDurationHours", {

558-

integer: true,

559-

strict: true,

577+

readPositiveIntegerParam(params, "durationHours", {

578+

message: "durationHours must be a positive integer.",

579+

}) ??

580+

readPositiveIntegerParam(params, "pollDurationHours", {

581+

message: "pollDurationHours must be a positive integer.",

560582

});

561583

const replyToMessageId = readTelegramReplyToMessageId(params);

562584

const messageThreadId = readTelegramThreadId(params);

@@ -607,10 +629,12 @@ export async function handleTelegramAction(

607629

throw new Error("Telegram deleteMessage is disabled.");

608630

}

609631

const chatId = readTelegramChatId(params);

610-

const messageId = readNumberParam(params, "messageId", {

611-

required: true,

612-

integer: true,

632+

const messageId = readPositiveIntegerParam(params, "messageId", {

633+

message: "messageId must be a positive integer.",

613634

});

635+

if (messageId === undefined) {

636+

throw new Error("messageId required");

637+

}

614638

const token = resolveTelegramToken(cfg, { accountId }).token;

615639

if (!token) {

616640

throw new Error(

@@ -634,10 +658,12 @@ export async function handleTelegramAction(

634658

throw new Error("Telegram editMessage is disabled.");

635659

}

636660

const chatId = readTelegramChatId(params);

637-

const messageId = readNumberParam(params, "messageId", {

638-

required: true,

639-

integer: true,

661+

const messageId = readPositiveIntegerParam(params, "messageId", {

662+

message: "messageId must be a positive integer.",

640663

});

664+

if (messageId === undefined) {

665+

throw new Error("messageId required");

666+

}

641667

const content =

642668

readStringParam(params, "content", { allowEmpty: false }) ??

643669

readStringParam(params, "message", { required: true, allowEmpty: false });

@@ -722,7 +748,10 @@ export async function handleTelegramAction(

722748

);

723749

}

724750

const query = readStringParam(params, "query", { required: true });

725-

const limit = readNumberParam(params, "limit", { integer: true }) ?? 5;

751+

const limit =

752+

readPositiveIntegerParam(params, "limit", {

753+

message: "limit must be a positive integer.",

754+

}) ?? 5;

726755

const results = telegramActionRuntime.searchStickers(query, limit);

727756

return jsonResult({

728757

ok: true,