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

推荐订阅源

博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
aimingoo的专栏
aimingoo的专栏
B
Blog
小众软件
小众软件
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
L
LangChain Blog
WordPress大学
WordPress大学
罗磊的独立博客
GbyAI
GbyAI
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网
美团技术团队
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub 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
refactor: move telegram poll visibility out of core · ope...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -14,40 +14,67 @@ const SHARED_POLL_CREATION_PARAM_DEFS = {

1414

pollMulti: { kind: "boolean" },

1515

} satisfies Record<string, PollCreationParamDef>;

161617-

const TELEGRAM_POLL_CREATION_PARAM_DEFS = {

18-

pollDurationSeconds: { kind: "number" },

19-

pollAnonymous: { kind: "boolean" },

20-

pollPublic: { kind: "boolean" },

21-

} satisfies Record<string, PollCreationParamDef>;

22-23-

export const POLL_CREATION_PARAM_DEFS: Record<string, PollCreationParamDef> = {

24-

...SHARED_POLL_CREATION_PARAM_DEFS,

25-

...TELEGRAM_POLL_CREATION_PARAM_DEFS,

26-

};

17+

export const POLL_CREATION_PARAM_DEFS: Record<string, PollCreationParamDef> =

18+

SHARED_POLL_CREATION_PARAM_DEFS;

27192820

type SharedPollCreationParamName = keyof typeof SHARED_POLL_CREATION_PARAM_DEFS;

292130-

const POLL_CREATION_PARAM_NAMES = Object.keys(POLL_CREATION_PARAM_DEFS);

3122

export const SHARED_POLL_CREATION_PARAM_NAMES = Object.keys(

3223

SHARED_POLL_CREATION_PARAM_DEFS,

3324

) as SharedPollCreationParamName[];

25+

const SHARED_POLL_CREATION_PARAM_KEY_SET = new Set(

26+

SHARED_POLL_CREATION_PARAM_NAMES.map(normalizePollParamKey),

27+

);

28+

const POLL_VOTE_PARAM_KEY_SET = new Set(

29+

["pollId", "pollOptionId", "pollOptionIds", "pollOptionIndex", "pollOptionIndexes"].map(

30+

normalizePollParamKey,

31+

),

32+

);

34333534

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

3635

return readSnakeCaseParamRaw(params, key);

3736

}

383739-

export function resolveTelegramPollVisibility(params: {

40-

pollAnonymous?: boolean;

41-

pollPublic?: boolean;

42-

}): boolean | undefined {

43-

if (params.pollAnonymous && params.pollPublic) {

44-

throw new Error("pollAnonymous and pollPublic are mutually exclusive");

38+

function normalizePollParamKey(key: string): string {

39+

return normalizeLowercaseStringOrEmpty(key.replaceAll("_", ""));

40+

}

41+42+

function isChannelPollCreationParamName(key: string): boolean {

43+

const normalized = normalizePollParamKey(key);

44+

return (

45+

normalized.startsWith("poll") &&

46+

!SHARED_POLL_CREATION_PARAM_KEY_SET.has(normalized) &&

47+

!POLL_VOTE_PARAM_KEY_SET.has(normalized)

48+

);

49+

}

50+51+

function hasExplicitUnknownPollValue(key: string, value: unknown): boolean {

52+

if (value === true) {

53+

return true;

54+

}

55+

if (typeof value === "number") {

56+

return Number.isFinite(value) && value !== 0;

4557

}

46-

return params.pollAnonymous ? true : params.pollPublic ? false : undefined;

58+

if (typeof value === "string") {

59+

const trimmed = value.trim();

60+

if (trimmed.length === 0) {

61+

return false;

62+

}

63+

if (normalizePollParamKey(key).includes("duration")) {

64+

const parsed = Number(trimmed);

65+

return Number.isFinite(parsed) && parsed !== 0;

66+

}

67+

const normalized = normalizeLowercaseStringOrEmpty(trimmed);

68+

return normalized !== "false" && normalized !== "0";

69+

}

70+

if (Array.isArray(value)) {

71+

return value.some((entry) => hasExplicitUnknownPollValue(key, entry));

72+

}

73+

return false;

4774

}

48754976

export function hasPollCreationParams(params: Record<string, unknown>): boolean {

50-

for (const key of POLL_CREATION_PARAM_NAMES) {

77+

for (const key of SHARED_POLL_CREATION_PARAM_NAMES) {

5178

const def = POLL_CREATION_PARAM_DEFS[key];

5279

const value = readPollParamRaw(params, key);

5380

if (def.kind === "string" && typeof value === "string" && value.trim().length > 0) {

@@ -88,5 +115,10 @@ export function hasPollCreationParams(params: Record<string, unknown>): boolean

88115

}

89116

}

90117

}

118+

for (const [key, value] of Object.entries(params)) {

119+

if (isChannelPollCreationParamName(key) && hasExplicitUnknownPollValue(key, value)) {

120+

return true;

121+

}

122+

}

91123

return false;

92124

}