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

推荐订阅源

B
Blog
Hugging Face - Blog
Hugging Face - Blog
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
F
Fortinet All Blogs
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
Jina AI
Jina AI
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
美团技术团队
博客园 - 司徒正美
宝玉的分享
宝玉的分享
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research

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
feat(discord): allow DM access groups from channel audien...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -1,9 +1,12 @@

11

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

2+

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

23

import {

34

readStoreAllowFromForDmPolicy,

45

resolveDmGroupAccessWithLists,

56

type DmGroupAccessDecision,

67

} from "openclaw/plugin-sdk/security-runtime";

8+

import type { RequestClient } from "../internal/discord.js";

9+

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

710

import { normalizeDiscordAllowList, resolveDiscordAllowListMatch } from "./allow-list.js";

811912

const DISCORD_ALLOW_LIST_PREFIXES = ["discord:", "user:", "pk:"];

@@ -39,13 +42,31 @@ function resolveDmPolicyCommandAuthorization(params: {

3942

return params.commandAuthorized;

4043

}

414445+

async function expandAllowFromWithDiscordAccessGroups(params: {

46+

cfg?: OpenClawConfig;

47+

allowFrom: string[];

48+

sender: { id: string };

49+

accountId: string;

50+

token?: string;

51+

rest?: RequestClient;

52+

}) {

53+

const matchedGroups = await resolveDiscordDmAccessGroupEntries(params);

54+

if (matchedGroups.length === 0) {

55+

return params.allowFrom;

56+

}

57+

return [...params.allowFrom, `discord:${params.sender.id}`];

58+

}

59+4260

export async function resolveDiscordDmCommandAccess(params: {

4361

accountId: string;

4462

dmPolicy: DiscordDmPolicy;

4563

configuredAllowFrom: string[];

4664

sender: { id: string; name?: string; tag?: string };

4765

allowNameMatching: boolean;

4866

useAccessGroups: boolean;

67+

cfg?: OpenClawConfig;

68+

token?: string;

69+

rest?: RequestClient;

4970

readStoreAllowFrom?: () => Promise<string[]>;

5071

}): Promise<DiscordDmCommandAccess> {

5172

const storeAllowFrom = params.readStoreAllowFrom

@@ -58,13 +79,31 @@ export async function resolveDiscordDmCommandAccess(params: {

5879

dmPolicy: params.dmPolicy,

5980

shouldRead: params.dmPolicy !== "open",

6081

});

82+

const [configuredAllowFrom, effectiveStoreAllowFrom] = await Promise.all([

83+

expandAllowFromWithDiscordAccessGroups({

84+

cfg: params.cfg,

85+

allowFrom: params.configuredAllowFrom,

86+

sender: params.sender,

87+

accountId: params.accountId,

88+

token: params.token,

89+

rest: params.rest,

90+

}),

91+

expandAllowFromWithDiscordAccessGroups({

92+

cfg: params.cfg,

93+

allowFrom: storeAllowFrom,

94+

sender: params.sender,

95+

accountId: params.accountId,

96+

token: params.token,

97+

rest: params.rest,

98+

}),

99+

]);

6110062101

const access = resolveDmGroupAccessWithLists({

63102

isGroup: false,

64103

dmPolicy: params.dmPolicy,

65-

allowFrom: params.configuredAllowFrom,

104+

allowFrom: configuredAllowFrom,

66105

groupAllowFrom: [],

67-

storeAllowFrom,

106+

storeAllowFrom: effectiveStoreAllowFrom,

68107

isSenderAllowed: (allowEntries) =>

69108

resolveSenderAllowMatch({

70109

allowEntries,