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

推荐订阅源

WordPress大学
WordPress大学
GbyAI
GbyAI
P
Proofpoint News Feed
B
Blog
MyScale Blog
MyScale Blog
V
V2EX
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
量子位
Jina AI
Jina AI
博客园 - 叶小钗
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
罗磊的独立博客
L
LangChain Blog
I
InfoQ
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
小众软件
小众软件
V
Visual Studio Blog
月光博客
月光博客
The Cloudflare 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
Gate Slack startup user allowlist resolution [AI] (#77898...
pgondhi987 · 2026-05-06 · via Recent Commits to openclaw:main

@@ -32,7 +32,7 @@ import { isSlackExecApprovalClientEnabled } from "../exec-approvals.js";

3232

import { normalizeSlackWebhookPath, registerSlackHttpHandler } from "../http/index.js";

3333

import { SLACK_TEXT_LIMIT } from "../limits.js";

3434

import { resolveSlackChannelAllowlist } from "../resolve-channels.js";

35-

import { resolveSlackUserAllowlist } from "../resolve-users.js";

35+

import { resolveSlackUserAllowlist, type SlackUserResolution } from "../resolve-users.js";

3636

import { resolveSlackAppToken, resolveSlackBotToken } from "../token.js";

3737

import { normalizeAllowList } from "./allow-list.js";

3838

import { resolveSlackSlashCommandConfig } from "./commands.js";

@@ -85,6 +85,33 @@ async function getSlackBoltInterop(): Promise<SlackBoltResolvedExports> {

8585

const SLACK_WEBHOOK_MAX_BODY_BYTES = 1024 * 1024;

8686

const SLACK_WEBHOOK_BODY_TIMEOUT_MS = 30_000;

878788+

function resolveStableSlackUserIdEntry(raw: string): string | undefined {

89+

const trimmed = raw.trim();

90+

if (!trimmed) {

91+

return undefined;

92+

}

93+

const mention = /^<@([A-Z][A-Z0-9]+)>$/i.exec(trimmed);

94+

if (mention) {

95+

return mention[1]?.toUpperCase();

96+

}

97+

const prefixed = /^(?:slack:|user:)([A-Z][A-Z0-9]+)$/i.exec(trimmed);

98+

if (prefixed) {

99+

return prefixed[1]?.toUpperCase();

100+

}

101+

return /^[UW][A-Z0-9]+$/i.test(trimmed) ? trimmed.toUpperCase() : undefined;

102+

}

103+104+

function resolveStableSlackUserAllowlistEntries(entries: string[]): SlackUserResolution[] {

105+

const resolved: SlackUserResolution[] = [];

106+

for (const input of entries) {

107+

const id = resolveStableSlackUserIdEntry(input);

108+

if (id) {

109+

resolved.push({ input, resolved: true, id });

110+

}

111+

}

112+

return resolved;

113+

}

114+88115

export function formatSlackSocketReconnectMessage(params: {

89116

event: string;

90117

attempt: number;

@@ -209,6 +236,7 @@ export async function monitorSlackProvider(opts: MonitorSlackOpts = {}) {

209236

const threadInheritParent = slackCfg.thread?.inheritParent ?? false;

210237

const threadRequireExplicitMention = slackCfg.thread?.requireExplicitMention ?? false;

211238

const slashCommand = resolveSlackSlashCommandConfig(opts.slashCommand ?? slackCfg.slashCommand);

239+

const allowNameMatching = isDangerousNameMatchingEnabled(slackCfg);

212240

const textLimit = resolveTextChunkLimit(cfg, "slack", account.accountId, {

213241

fallbackLimit: SLACK_TEXT_LIMIT,

214242

});

@@ -301,7 +329,7 @@ export async function monitorSlackProvider(opts: MonitorSlackOpts = {}) {

301329

dmEnabled,

302330

dmPolicy,

303331

allowFrom,

304-

allowNameMatching: isDangerousNameMatchingEnabled(slackCfg),

332+

allowNameMatching,

305333

groupDmEnabled,

306334

groupDmChannels,

307335

defaultRequireMention: slackCfg.requireMention,

@@ -404,57 +432,87 @@ export async function monitorSlackProvider(opts: MonitorSlackOpts = {}) {

404432405433

const allowEntries = normalizeStringEntries(allowFrom).filter((entry) => entry !== "*");

406434

if (allowEntries.length > 0) {

407-

try {

408-

const resolvedUsers = await resolveSlackUserAllowlist({

409-

token: resolveToken,

410-

entries: allowEntries,

435+

const stableResolvedUsers = resolveStableSlackUserAllowlistEntries(allowEntries);

436+

if (stableResolvedUsers.length > 0) {

437+

const { mapping, additions } = buildAllowlistResolutionSummary(stableResolvedUsers, {

438+

formatResolved: formatSlackUserResolved,

411439

});

412-

const { mapping, unresolved, additions } = buildAllowlistResolutionSummary(

413-

resolvedUsers,

414-

{

415-

formatResolved: formatSlackUserResolved,

416-

},

417-

);

418440

allowFrom = mergeAllowlist({ existing: allowFrom, additions });

419441

ctx.allowFrom = normalizeAllowList(allowFrom);

420-

summarizeMapping("slack users", mapping, unresolved, runtime);

421-

} catch (err) {

422-

runtime.log?.(

423-

`slack user resolve failed; using config entries. ${formatUnknownError(err)}`,

424-

);

425-

}

426-

}

427-428-

if (channelsConfig && Object.keys(channelsConfig).length > 0) {

429-

const userEntries = new Set<string>();

430-

for (const channel of Object.values(channelsConfig)) {

431-

addAllowlistUserEntriesFromConfigEntry(userEntries, channel);

442+

summarizeMapping("slack users", mapping, [], runtime);

432443

}

433444434-

if (userEntries.size > 0) {

445+

if (allowNameMatching) {

435446

try {

436447

const resolvedUsers = await resolveSlackUserAllowlist({

437448

token: resolveToken,

438-

entries: Array.from(userEntries),

449+

entries: allowEntries,

439450

});

440-

const { resolvedMap, mapping, unresolved } = buildAllowlistResolutionSummary(

451+

const { mapping, unresolved, additions } = buildAllowlistResolutionSummary(

441452

resolvedUsers,

442453

{

443454

formatResolved: formatSlackUserResolved,

444455

},

445456

);

457+

allowFrom = mergeAllowlist({ existing: allowFrom, additions });

458+

ctx.allowFrom = normalizeAllowList(allowFrom);

459+

summarizeMapping("slack users", mapping, unresolved, runtime);

460+

} catch (err) {

461+

runtime.log?.(

462+

`slack user resolve failed; using config entries. ${formatUnknownError(err)}`,

463+

);

464+

}

465+

}

466+

}

446467468+

if (channelsConfig && Object.keys(channelsConfig).length > 0) {

469+

const userEntries = new Set<string>();

470+

for (const channel of Object.values(channelsConfig)) {

471+

addAllowlistUserEntriesFromConfigEntry(userEntries, channel);

472+

}

473+474+

if (userEntries.size > 0) {

475+

const stableResolvedUsers = resolveStableSlackUserAllowlistEntries(

476+

Array.from(userEntries),

477+

);

478+

if (stableResolvedUsers.length > 0) {

479+

const { resolvedMap, mapping } = buildAllowlistResolutionSummary(stableResolvedUsers, {

480+

formatResolved: formatSlackUserResolved,

481+

});

447482

const nextChannels = patchAllowlistUsersInConfigEntries({

448483

entries: channelsConfig,

449484

resolvedMap,

450485

});

451486

channelsConfig = nextChannels;

452487

ctx.channelsConfig = nextChannels;

453-

summarizeMapping("slack channel users", mapping, unresolved, runtime);

454-

} catch (err) {

455-

runtime.log?.(

456-

`slack channel user resolve failed; using config entries. ${formatUnknownError(err)}`,

457-

);

488+

summarizeMapping("slack channel users", mapping, [], runtime);

489+

}

490+491+

if (allowNameMatching) {

492+

try {

493+

const resolvedUsers = await resolveSlackUserAllowlist({

494+

token: resolveToken,

495+

entries: Array.from(userEntries),

496+

});

497+

const { resolvedMap, mapping, unresolved } = buildAllowlistResolutionSummary(

498+

resolvedUsers,

499+

{

500+

formatResolved: formatSlackUserResolved,

501+

},

502+

);

503+504+

const nextChannels = patchAllowlistUsersInConfigEntries({

505+

entries: channelsConfig,

506+

resolvedMap,

507+

});

508+

channelsConfig = nextChannels;

509+

ctx.channelsConfig = nextChannels;

510+

summarizeMapping("slack channel users", mapping, unresolved, runtime);

511+

} catch (err) {

512+

runtime.log?.(

513+

`slack channel user resolve failed; using config entries. ${formatUnknownError(err)}`,

514+

);

515+

}

458516

}

459517

}

460518

}