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

推荐订阅源

G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
A
About on SuperTechFans
量子位
Engineering at Meta
Engineering at Meta
B
Blog
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
J
Java Code Geeks
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

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(telegram): centralize access authorization · ope...
obviyus · 2026-05-07 · via Recent Commits to openclaw:main

@@ -7,10 +7,7 @@ import {

77

resolveInboundDebounceMs,

88

} from "openclaw/plugin-sdk/channel-inbound-debounce";

99

import { resolveStoredModelOverride } from "openclaw/plugin-sdk/command-auth";

10-

import {

11-

resolveCommandAuthorization,

12-

resolveCommandAuthorizedFromAuthorizers,

13-

} from "openclaw/plugin-sdk/command-auth-native";

10+

import { resolveCommandAuthorizedFromAuthorizers } from "openclaw/plugin-sdk/command-auth-native";

1411

import { buildCommandsMessagePaginated } from "openclaw/plugin-sdk/command-status";

1512

import { replaceConfigFile } from "openclaw/plugin-sdk/config-mutation";

1613

import type { DmPolicy, OpenClawConfig } from "openclaw/plugin-sdk/config-types";

@@ -34,12 +31,16 @@ import {

3431

resolveSessionStoreEntry,

3532

updateSessionStore,

3633

} from "openclaw/plugin-sdk/session-store-runtime";

37-

import { expandTelegramAllowFromWithAccessGroups } from "./access-groups.js";

34+

import {

35+

expandTelegramAllowFromWithAccessGroups,

36+

resolveTelegramDmAllow,

37+

} from "./access-groups.js";

3838

import { resolveTelegramAccount, resolveTelegramMediaRuntimeOptions } from "./accounts.js";

3939

import { withTelegramApiErrorLogging } from "./api-logging.js";

4040

import {

4141

isSenderAllowed,

4242

normalizeDmAllowFromWithStore,

43+

resolveTelegramEffectiveDmPolicy,

4344

type NormalizedAllowFrom,

4445

} from "./bot-access.js";

4546

import {

@@ -71,9 +72,10 @@ import {

7172

import { resolveMedia } from "./bot/delivery.resolve-media.js";

7273

import {

7374

getTelegramTextParts,

74-

buildTelegramGroupFrom,

7575

buildTelegramGroupPeerId,

7676

buildTelegramParentPeer,

77+

isTelegramCommandsAllowFromConfigured,

78+

resolveTelegramCommandAuthorization,

7779

resolveTelegramForumFlag,

7880

resolveTelegramForumThreadId,

7981

resolveTelegramGroupAllowFromContext,

@@ -728,13 +730,11 @@ export const registerTelegramHandlers = ({

728730

readChannelAllowFromStore: telegramDeps.readChannelAllowFromStore,

729731

resolveTelegramGroupConfig,

730732

}));

731-

// Use direct config dmPolicy override if available for DMs

732-

const effectiveDmPolicy =

733-

!params.isGroup &&

734-

groupAllowContext.groupConfig &&

735-

"dmPolicy" in groupAllowContext.groupConfig

736-

? (groupAllowContext.groupConfig.dmPolicy ?? telegramCfg.dmPolicy ?? "pairing")

737-

: (telegramCfg.dmPolicy ?? "pairing");

733+

const effectiveDmPolicy = resolveTelegramEffectiveDmPolicy({

734+

isGroup: params.isGroup,

735+

groupConfig: groupAllowContext.groupConfig,

736+

dmPolicy: telegramCfg.dmPolicy,

737+

});

738738

return { dmPolicy: effectiveDmPolicy, ...groupAllowContext };

739739

};

740740

@@ -831,27 +831,15 @@ export const registerTelegramHandlers = ({

831831

const { chatId, isGroup, senderId, senderUsername, context, cfg } = params;

832832

const useAccessGroups = cfg.commands?.useAccessGroups !== false;

833833

const dmAllowFrom = context.groupAllowOverride ?? allowFrom;

834-

const commandsAllowFrom = cfg.commands?.allowFrom;

835-

const commandsAllowFromConfigured =

836-

commandsAllowFrom != null &&

837-

typeof commandsAllowFrom === "object" &&

838-

(Array.isArray(commandsAllowFrom.telegram) || Array.isArray(commandsAllowFrom["*"]));

839-

if (commandsAllowFromConfigured) {

840-

return resolveCommandAuthorization({

841-

ctx: {

842-

Provider: "telegram",

843-

Surface: "telegram",

844-

OriginatingChannel: "telegram",

845-

AccountId: accountId,

846-

ChatType: isGroup ? "group" : "direct",

847-

From: isGroup

848-

? buildTelegramGroupFrom(chatId, context.resolvedThreadId)

849-

: `telegram:${chatId}`,

850-

SenderId: senderId || undefined,

851-

SenderUsername: senderUsername || undefined,

852-

},

834+

if (isTelegramCommandsAllowFromConfigured(cfg)) {

835+

return resolveTelegramCommandAuthorization({

853836

cfg,

854-

commandAuthorized: false,

837+

accountId,

838+

chatId,

839+

isGroup,

840+

resolvedThreadId: context.resolvedThreadId,

841+

senderId,

842+

senderUsername,

855843

}).isAuthorizedSender;

856844

}

857845

@@ -896,7 +884,6 @@ export const registerTelegramHandlers = ({

896884

});

897885

};

898886899-

// Handle emoji reactions to messages.

900887

bot.on("message_reaction", async (ctx) => {

901888

try {

902889

const reaction = ctx.messageReaction;

@@ -915,7 +902,6 @@ export const registerTelegramHandlers = ({

915902

const isGroup = reaction.chat.type === "group" || reaction.chat.type === "supergroup";

916903

const isForum = reaction.chat.is_forum === true;

917904918-

// Resolve reaction notification mode (default: "own").

919905

const reactionMode = telegramCfg.reactionNotifications ?? "own";

920906

if (reactionMode === "off") {

921907

return;

@@ -963,7 +949,6 @@ export const registerTelegramHandlers = ({

963949

}

964950

}

965951966-

// Detect added reactions.

967952

const oldEmojis = new Set(

968953

reaction.old_reaction

969954

.filter((r): r is ReactionTypeEmoji => r.type === "emoji")

@@ -977,7 +962,6 @@ export const registerTelegramHandlers = ({

977962

return;

978963

}

979964980-

// Build sender label.

981965

const senderName = user

982966

? [user.first_name, user.last_name].filter(Boolean).join(" ").trim() || user.username

983967

: undefined;

@@ -1001,7 +985,6 @@ export const registerTelegramHandlers = ({

1001985

: undefined;

1002986

const peerId = isGroup ? buildTelegramGroupPeerId(chatId, resolvedThreadId) : String(chatId);

1003987

const parentPeer = buildTelegramParentPeer({ isGroup, resolvedThreadId, chatId });

1004-

// Fresh config for bindings lookup; other routing inputs are payload-derived.

1005988

const route = resolveAgentRoute({

1006989

cfg: telegramDeps.getRuntimeConfig(),

1007990

channel: "telegram",

@@ -1011,7 +994,6 @@ export const registerTelegramHandlers = ({

1011994

});

1012995

const sessionKey = route.sessionKey;

10139961014-

// Enqueue system event for each added reaction.

1015997

for (const r of addedReactions) {

1016998

const emoji = r.emoji;

1017999

const text = `Telegram reaction added: ${emoji} by ${senderLabel} on msg ${messageId}`;

@@ -1047,14 +1029,11 @@ export const registerTelegramHandlers = ({

10471029

oversizeLogMessage,

10481030

} = params;

104910311050-

// Text fragment handling - Telegram splits long pastes into multiple inbound messages (~4096 chars).

1051-

// We buffer “near-limit” messages and append immediately-following parts.

10521032

const text = typeof msg.text === "string" ? msg.text : undefined;

10531033

const isCommandLike = (text ?? "").trim().startsWith("/");

10541034

if (text && !isCommandLike) {

10551035

const nowMs = Date.now();

10561036

const senderId = msg.from?.id != null ? String(msg.from.id) : "unknown";

1057-

// Use resolvedThreadId for forum groups, dmThreadId for DM topics

10581037

const threadId = resolvedThreadId ?? dmThreadId;

10591038

const key = `text:${chatId}:${threadId ?? "main"}:${senderId}`;

10601039

const existing = textFragmentBuffer.get(key);

@@ -1087,7 +1066,6 @@ export const registerTelegramHandlers = ({

10871066

}

10881067

}

108910681090-

// Not appendable (or limits exceeded): flush buffered entry first, then continue normally.

10911069

clearTimeout(existing.timer);

10921070

textFragmentBuffer.delete(key);

10931071

textFragmentProcessing = textFragmentProcessing

@@ -1111,7 +1089,6 @@ export const registerTelegramHandlers = ({

11111089

}

11121090

}

111310911114-

// Media group handling - buffer multi-image messages

11151092

const mediaGroupId = msg.media_group_id;

11161093

if (mediaGroupId) {

11171094

const existing = mediaGroupBuffer.get(mediaGroupId);

@@ -1186,8 +1163,6 @@ export const registerTelegramHandlers = ({

11861163

return;

11871164

}

118811651189-

// Skip sticker-only messages where the sticker was skipped (animated/video)

1190-

// These have no media and no text content to process.

11911166

const hasText = Boolean(getTelegramTextParts(msg).text.trim());

11921167

if (msg.sticker && !media && !hasText) {

11931168

logVerbose("telegram: skipping sticker-only message (unsupported sticker type)");

@@ -1240,7 +1215,6 @@ export const registerTelegramHandlers = ({

12401215

typeof (ctx as { answerCallbackQuery?: unknown }).answerCallbackQuery === "function"

12411216

? () => ctx.answerCallbackQuery()

12421217

: () => bot.api.answerCallbackQuery(callback.id);

1243-

// Answer immediately to prevent Telegram from retrying while we process

12441218

await withTelegramApiErrorLogging({

12451219

operation: "answerCallbackQuery",

12461220

runtime,

@@ -1573,7 +1547,6 @@ export const registerTelegramHandlers = ({

15731547

return;

15741548

}

157515491576-

// Model selection callback handler (mdl_prov, mdl_list_*, mdl_sel_*, mdl_back)

15771550

const modelCallback = parseModelCallbackData(data);

15781551

if (modelCallback) {

15791552

if (

@@ -1660,7 +1633,6 @@ export const registerTelegramHandlers = ({

16601633

const { provider, page } = modelCallback;

16611634

const modelSet = byProvider.get(provider);

16621635

if (!modelSet || modelSet.size === 0) {

1663-

// Provider not found or no models - show providers list

16641636

const providerInfos: ProviderInfo[] = providers.map((p) => ({

16651637

id: p,

16661638

count: byProvider.get(p)?.size ?? 0,

@@ -1681,7 +1653,6 @@ export const registerTelegramHandlers = ({

16811653

const totalPages = calculateTotalPages(models.length, pageSize);

16821654

const safePage = Math.max(1, Math.min(page, totalPages));

168316551684-

// Resolve current model from session (prefer overrides)

16851656

const currentModel = sessionState.model;

1686165716871658

const buttons = buildModelsKeyboard({

@@ -1744,7 +1715,6 @@ export const registerTelegramHandlers = ({

17441715

return;

17451716

}

174617171747-

// Directly set model override in session

17481718

try {

17491719

// Use the fresh runtimeCfg (loaded at callback entry) so store path

17501720

// and default-model resolution stay consistent with the next

@@ -1782,7 +1752,6 @@ export const registerTelegramHandlers = ({

17821752

throw new TelegramRetryableCallbackError(err);

17831753

}

178417541785-

// Update message to show success with visual feedback

17861755

const escapeHtml = (text: string) =>

17871756

text.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;");

17881757

const actionText = isDefaultSelection

@@ -1832,7 +1801,6 @@ export const registerTelegramHandlers = ({

18321801

}

18331802

});

183418031835-

// Handle group migration to supergroup (chat ID changes)

18361804

bot.on("message:migrate_to_chat_id", async (ctx) => {

18371805

try {

18381806

const msg = ctx.message;

@@ -1854,7 +1822,6 @@ export const registerTelegramHandlers = ({

18541822

return;

18551823

}

185618241857-

// Check if old chat ID has config and migrate it

18581825

const currentConfig = telegramDeps.getRuntimeConfig();

18591826

const migration = migrateTelegramGroupConfig({

18601827

cfg: currentConfig,

@@ -1927,16 +1894,12 @@ export const registerTelegramHandlers = ({

19271894

effectiveGroupAllow,

19281895

hasGroupAllowOverride,

19291896

} = eventAuthContext;

1930-

// For DMs, prefer per-DM/topic allowFrom (groupAllowOverride) over account-level allowFrom

1931-

const dmAllowFrom = groupAllowOverride ?? allowFrom;

1932-

const expandedDmAllowFrom = await expandTelegramAllowFromWithAccessGroups({

1897+

const dmAllow = await resolveTelegramDmAllow({

19331898

cfg,

1934-

allowFrom: dmAllowFrom,

1899+

groupAllowOverride,

1900+

allowFrom,

19351901

accountId,

19361902

senderId: event.senderId,

1937-

});

1938-

const effectiveDmAllow = normalizeDmAllowFromWithStore({

1939-

allowFrom: expandedDmAllowFrom,

19401903

storeAllowFrom,

19411904

dmPolicy,

19421905

});

@@ -1969,7 +1932,7 @@ export const registerTelegramHandlers = ({

19691932

dmPolicy,

19701933

msg: event.msg,

19711934

chatId: event.chatId,

1972-

effectiveDmAllow,

1935+

effectiveDmAllow: dmAllow.effectiveAllow,

19731936

accountId,

19741937

bot,

19751938

logger,

@@ -2031,9 +1994,6 @@ export const registerTelegramHandlers = ({

20311994

});

20321995

});

203319962034-

// Handle channel posts — enables bot-to-bot communication via Telegram channels.

2035-

// Telegram bots cannot see other bot messages in groups, but CAN in channels.

2036-

// This handler normalizes channel_post updates into the standard message pipeline.

20371997

bot.on("channel_post", async (ctx) => {

20381998

const post = ctx.channelPost;

20391999

if (!post) {