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

推荐订阅源

J
Java Code Geeks
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
量子位
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
D
DataBreaches.Net
B
Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
H
Help Net Security
The Cloudflare Blog
U
Unit 42

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(slack): handle global and message shortcuts (#94881)...
steipete · 2026-06-19 · via Recent Commits to openclaw:main
1+

// Slack plugin module implements shortcut interaction behavior.

2+

import type { GlobalShortcut, MessageShortcut, SlackShortcutMiddlewareArgs } from "@slack/bolt";

3+

import { requestHeartbeat } from "openclaw/plugin-sdk/heartbeat-runtime";

4+

import { enqueueSystemEvent } from "openclaw/plugin-sdk/system-event-runtime";

5+

import { authorizeSlackSystemEventSender } from "../auth.js";

6+

import type { SlackMonitorContext } from "../context.js";

7+8+

type SlackShortcutBody = GlobalShortcut | MessageShortcut;

9+10+

function resolveMessageThreadTs(body: MessageShortcut): string | undefined {

11+

const threadTs = body.message.thread_ts;

12+

return typeof threadTs === "string" && threadTs.trim() ? threadTs.trim() : undefined;

13+

}

14+15+

async function handleSlackShortcut(params: {

16+

ctx: SlackMonitorContext;

17+

trackEvent?: () => void;

18+

args: SlackShortcutMiddlewareArgs;

19+

formatSystemEvent: (payload: Record<string, unknown>) => string;

20+

}): Promise<void> {

21+

const { ack, body } = params.args;

22+

await ack();

23+

if (params.ctx.shouldDropMismatchedSlackEvent?.(body)) {

24+

params.ctx.runtime.log?.("slack:interaction drop shortcut payload (mismatched app/team)");

25+

return;

26+

}

27+28+

const callbackId = body.callback_id?.trim();

29+

const userId = body.user?.id?.trim();

30+

if (!callbackId || !userId) {

31+

params.ctx.runtime.log?.("slack:interaction drop shortcut reason=invalid-payload");

32+

return;

33+

}

34+

params.trackEvent?.();

35+36+

const isMessageShortcut = body.type === "message_action";

37+

const messageBody = isMessageShortcut ? body : undefined;

38+

const channelId = messageBody?.channel.id?.trim() || undefined;

39+

if (isMessageShortcut && !channelId) {

40+

params.ctx.runtime.log?.(

41+

`slack:interaction drop shortcut callback=${callbackId} user=${userId} reason=missing-channel`,

42+

);

43+

return;

44+

}

45+

const threadTs = messageBody ? resolveMessageThreadTs(messageBody) : undefined;

46+

const auth = await authorizeSlackSystemEventSender({

47+

ctx: params.ctx,

48+

senderId: userId,

49+

channelId,

50+

channelType: isMessageShortcut ? undefined : "im",

51+

expectedSenderId: userId,

52+

interactiveEvent: true,

53+

});

54+

if (!auth.allowed) {

55+

params.ctx.runtime.log?.(

56+

`slack:interaction drop shortcut callback=${callbackId} user=${userId} reason=${auth.reason ?? "unauthorized"}`,

57+

);

58+

return;

59+

}

60+61+

const interactionType = isMessageShortcut ? "message_shortcut" : "global_shortcut";

62+

const messageTs = messageBody?.message.ts || messageBody?.message_ts;

63+

const eventPayload = {

64+

interactionType,

65+

actionId: `shortcut:${callbackId}`,

66+

callbackId,

67+

userId,

68+

teamId: body.team?.id ?? body.user.team_id,

69+

triggerId: body.trigger_id,

70+

actionTs: body.action_ts,

71+

channelId,

72+

channelName: messageBody?.channel.name,

73+

messageTs,

74+

threadTs,

75+

messageUserId: messageBody?.message.user,

76+

messageText: messageBody?.message.text,

77+

responseUrl: messageBody?.response_url,

78+

};

79+

const sessionKey = params.ctx.resolveSlackSystemEventSessionKey({

80+

channelId,

81+

channelType: auth.channelType,

82+

senderId: userId,

83+

threadTs,

84+

});

85+

const contextKey = [

86+

"slack:interaction:shortcut",

87+

interactionType,

88+

callbackId,

89+

channelId,

90+

messageTs,

91+

body.action_ts,

92+

]

93+

.filter(Boolean)

94+

.join(":");

95+96+

params.ctx.runtime.log?.(

97+

`slack:interaction ${interactionType} callback=${callbackId} user=${userId} channel=${channelId ?? "direct"}`,

98+

);

99+

const queued = enqueueSystemEvent(params.formatSystemEvent(eventPayload), {

100+

sessionKey,

101+

contextKey,

102+

deliveryContext: {

103+

channel: "slack",

104+

to: auth.channelType === "im" ? `user:${userId}` : `channel:${channelId}`,

105+

accountId: params.ctx.accountId,

106+

threadId: threadTs,

107+

},

108+

});

109+

if (queued) {

110+

requestHeartbeat({

111+

source: "hook",

112+

intent: "immediate",

113+

reason: "hook:slack-interaction",

114+

sessionKey,

115+

heartbeat: { target: "last" },

116+

});

117+

}

118+

}

119+120+

export function registerSlackShortcutHandler(params: {

121+

ctx: SlackMonitorContext;

122+

trackEvent?: () => void;

123+

formatSystemEvent: (payload: Record<string, unknown>) => string;

124+

}): void {

125+

if (typeof params.ctx.app.shortcut !== "function") {

126+

return;

127+

}

128+

params.ctx.app.shortcut(/.+/, async (args: SlackShortcutMiddlewareArgs<SlackShortcutBody>) => {

129+

await handleSlackShortcut({

130+

ctx: params.ctx,

131+

trackEvent: params.trackEvent,

132+

args,

133+

formatSystemEvent: params.formatSystemEvent,

134+

});

135+

});

136+

}