mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-10 03:32:43 +00:00
Verified: - pnpm install --frozen-lockfile - pnpm build - pnpm check - pnpm test:macmini Co-authored-by: yzhong52 <3712071+yzhong52@users.noreply.github.com> Co-authored-by: Tak Hoffman <781889+Takhoffman@users.noreply.github.com>
366 lines
11 KiB
TypeScript
366 lines
11 KiB
TypeScript
import type { OpenClawConfig } from "../../../config/config.js";
|
|
import { DEFAULT_ACCOUNT_ID } from "../../../routing/session-key.js";
|
|
import {
|
|
listSlackAccountIds,
|
|
resolveDefaultSlackAccountId,
|
|
resolveSlackAccount,
|
|
} from "../../../slack/accounts.js";
|
|
import { resolveSlackChannelAllowlist } from "../../../slack/resolve-channels.js";
|
|
import { resolveSlackUserAllowlist } from "../../../slack/resolve-users.js";
|
|
import { formatDocsLink } from "../../../terminal/links.js";
|
|
import type { WizardPrompter } from "../../../wizard/prompts.js";
|
|
import type { ChannelOnboardingAdapter, ChannelOnboardingDmPolicy } from "../onboarding-types.js";
|
|
import { configureChannelAccessWithAllowlist } from "./channel-access-configure.js";
|
|
import {
|
|
parseMentionOrPrefixedId,
|
|
noteChannelLookupFailure,
|
|
noteChannelLookupSummary,
|
|
patchChannelConfigForAccount,
|
|
promptLegacyChannelAllowFrom,
|
|
resolveAccountIdForConfigure,
|
|
resolveOnboardingAccountId,
|
|
setAccountGroupPolicyForChannel,
|
|
setLegacyChannelDmPolicyWithAllowFrom,
|
|
setOnboardingChannelEnabled,
|
|
} from "./helpers.js";
|
|
|
|
const channel = "slack" as const;
|
|
|
|
function buildSlackManifest(botName: string) {
|
|
const safeName = botName.trim() || "OpenClaw";
|
|
const manifest = {
|
|
display_information: {
|
|
name: safeName,
|
|
description: `${safeName} connector for OpenClaw`,
|
|
},
|
|
features: {
|
|
bot_user: {
|
|
display_name: safeName,
|
|
always_online: false,
|
|
},
|
|
app_home: {
|
|
messages_tab_enabled: true,
|
|
messages_tab_read_only_enabled: false,
|
|
},
|
|
slash_commands: [
|
|
{
|
|
command: "/openclaw",
|
|
description: "Send a message to OpenClaw",
|
|
should_escape: false,
|
|
},
|
|
],
|
|
},
|
|
oauth_config: {
|
|
scopes: {
|
|
bot: [
|
|
"chat:write",
|
|
"channels:history",
|
|
"channels:read",
|
|
"groups:history",
|
|
"im:history",
|
|
"mpim:history",
|
|
"users:read",
|
|
"app_mentions:read",
|
|
"reactions:read",
|
|
"reactions:write",
|
|
"pins:read",
|
|
"pins:write",
|
|
"emoji:read",
|
|
"commands",
|
|
"files:read",
|
|
"files:write",
|
|
],
|
|
},
|
|
},
|
|
settings: {
|
|
socket_mode_enabled: true,
|
|
event_subscriptions: {
|
|
bot_events: [
|
|
"app_mention",
|
|
"message.channels",
|
|
"message.groups",
|
|
"message.im",
|
|
"message.mpim",
|
|
"reaction_added",
|
|
"reaction_removed",
|
|
"member_joined_channel",
|
|
"member_left_channel",
|
|
"channel_rename",
|
|
"pin_added",
|
|
"pin_removed",
|
|
],
|
|
},
|
|
},
|
|
};
|
|
return JSON.stringify(manifest, null, 2);
|
|
}
|
|
|
|
async function noteSlackTokenHelp(prompter: WizardPrompter, botName: string): Promise<void> {
|
|
const manifest = buildSlackManifest(botName);
|
|
await prompter.note(
|
|
[
|
|
"1) Slack API → Create App → From scratch or From manifest (with the JSON below)",
|
|
"2) Add Socket Mode + enable it to get the app-level token (xapp-...)",
|
|
"3) Install App to workspace to get the xoxb- bot token",
|
|
"4) Enable Event Subscriptions (socket) for message events",
|
|
"5) App Home → enable the Messages tab for DMs",
|
|
"Tip: set SLACK_BOT_TOKEN + SLACK_APP_TOKEN in your env.",
|
|
`Docs: ${formatDocsLink("/slack", "slack")}`,
|
|
"",
|
|
"Manifest (JSON):",
|
|
manifest,
|
|
].join("\n"),
|
|
"Slack socket mode tokens",
|
|
);
|
|
}
|
|
|
|
async function promptSlackTokens(prompter: WizardPrompter): Promise<{
|
|
botToken: string;
|
|
appToken: string;
|
|
}> {
|
|
const botToken = String(
|
|
await prompter.text({
|
|
message: "Enter Slack bot token (xoxb-...)",
|
|
validate: (value) => (value?.trim() ? undefined : "Required"),
|
|
}),
|
|
).trim();
|
|
const appToken = String(
|
|
await prompter.text({
|
|
message: "Enter Slack app token (xapp-...)",
|
|
validate: (value) => (value?.trim() ? undefined : "Required"),
|
|
}),
|
|
).trim();
|
|
return { botToken, appToken };
|
|
}
|
|
|
|
function setSlackChannelAllowlist(
|
|
cfg: OpenClawConfig,
|
|
accountId: string,
|
|
channelKeys: string[],
|
|
): OpenClawConfig {
|
|
const channels = Object.fromEntries(channelKeys.map((key) => [key, { allow: true }]));
|
|
return patchChannelConfigForAccount({
|
|
cfg,
|
|
channel: "slack",
|
|
accountId,
|
|
patch: { channels },
|
|
});
|
|
}
|
|
|
|
async function promptSlackAllowFrom(params: {
|
|
cfg: OpenClawConfig;
|
|
prompter: WizardPrompter;
|
|
accountId?: string;
|
|
}): Promise<OpenClawConfig> {
|
|
const accountId = resolveOnboardingAccountId({
|
|
accountId: params.accountId,
|
|
defaultAccountId: resolveDefaultSlackAccountId(params.cfg),
|
|
});
|
|
const resolved = resolveSlackAccount({ cfg: params.cfg, accountId });
|
|
const token = resolved.userToken ?? resolved.botToken ?? "";
|
|
const existing =
|
|
params.cfg.channels?.slack?.allowFrom ?? params.cfg.channels?.slack?.dm?.allowFrom ?? [];
|
|
const parseId = (value: string) =>
|
|
parseMentionOrPrefixedId({
|
|
value,
|
|
mentionPattern: /^<@([A-Z0-9]+)>$/i,
|
|
prefixPattern: /^(slack:|user:)/i,
|
|
idPattern: /^[A-Z][A-Z0-9]+$/i,
|
|
normalizeId: (id) => id.toUpperCase(),
|
|
});
|
|
|
|
return promptLegacyChannelAllowFrom({
|
|
cfg: params.cfg,
|
|
channel: "slack",
|
|
prompter: params.prompter,
|
|
existing,
|
|
token,
|
|
noteTitle: "Slack allowlist",
|
|
noteLines: [
|
|
"Allowlist Slack DMs by username (we resolve to user ids).",
|
|
"Examples:",
|
|
"- U12345678",
|
|
"- @alice",
|
|
"Multiple entries: comma-separated.",
|
|
`Docs: ${formatDocsLink("/slack", "slack")}`,
|
|
],
|
|
message: "Slack allowFrom (usernames or ids)",
|
|
placeholder: "@alice, U12345678",
|
|
parseId,
|
|
invalidWithoutTokenNote: "Slack token missing; use user ids (or mention form) only.",
|
|
resolveEntries: ({ token, entries }) =>
|
|
resolveSlackUserAllowlist({
|
|
token,
|
|
entries,
|
|
}),
|
|
});
|
|
}
|
|
|
|
const dmPolicy: ChannelOnboardingDmPolicy = {
|
|
label: "Slack",
|
|
channel,
|
|
policyKey: "channels.slack.dmPolicy",
|
|
allowFromKey: "channels.slack.allowFrom",
|
|
getCurrent: (cfg) =>
|
|
cfg.channels?.slack?.dmPolicy ?? cfg.channels?.slack?.dm?.policy ?? "pairing",
|
|
setPolicy: (cfg, policy) =>
|
|
setLegacyChannelDmPolicyWithAllowFrom({
|
|
cfg,
|
|
channel: "slack",
|
|
dmPolicy: policy,
|
|
}),
|
|
promptAllowFrom: promptSlackAllowFrom,
|
|
};
|
|
|
|
export const slackOnboardingAdapter: ChannelOnboardingAdapter = {
|
|
channel,
|
|
getStatus: async ({ cfg }) => {
|
|
const configured = listSlackAccountIds(cfg).some((accountId) => {
|
|
const account = resolveSlackAccount({ cfg, accountId });
|
|
return Boolean(account.botToken && account.appToken);
|
|
});
|
|
return {
|
|
channel,
|
|
configured,
|
|
statusLines: [`Slack: ${configured ? "configured" : "needs tokens"}`],
|
|
selectionHint: configured ? "configured" : "needs tokens",
|
|
quickstartScore: configured ? 2 : 1,
|
|
};
|
|
},
|
|
configure: async ({ cfg, prompter, accountOverrides, shouldPromptAccountIds }) => {
|
|
const defaultSlackAccountId = resolveDefaultSlackAccountId(cfg);
|
|
const slackAccountId = await resolveAccountIdForConfigure({
|
|
cfg,
|
|
prompter,
|
|
label: "Slack",
|
|
accountOverride: accountOverrides.slack,
|
|
shouldPromptAccountIds,
|
|
listAccountIds: listSlackAccountIds,
|
|
defaultAccountId: defaultSlackAccountId,
|
|
});
|
|
|
|
let next = cfg;
|
|
const resolvedAccount = resolveSlackAccount({
|
|
cfg: next,
|
|
accountId: slackAccountId,
|
|
});
|
|
const accountConfigured = Boolean(resolvedAccount.botToken && resolvedAccount.appToken);
|
|
const allowEnv = slackAccountId === DEFAULT_ACCOUNT_ID;
|
|
const canUseEnv =
|
|
allowEnv &&
|
|
Boolean(process.env.SLACK_BOT_TOKEN?.trim()) &&
|
|
Boolean(process.env.SLACK_APP_TOKEN?.trim());
|
|
const hasConfigTokens = Boolean(
|
|
resolvedAccount.config.botToken && resolvedAccount.config.appToken,
|
|
);
|
|
|
|
let botToken: string | null = null;
|
|
let appToken: string | null = null;
|
|
const slackBotName = String(
|
|
await prompter.text({
|
|
message: "Slack bot display name (used for manifest)",
|
|
initialValue: "OpenClaw",
|
|
}),
|
|
).trim();
|
|
if (!accountConfigured) {
|
|
await noteSlackTokenHelp(prompter, slackBotName);
|
|
}
|
|
if (canUseEnv && (!resolvedAccount.config.botToken || !resolvedAccount.config.appToken)) {
|
|
const keepEnv = await prompter.confirm({
|
|
message: "SLACK_BOT_TOKEN + SLACK_APP_TOKEN detected. Use env vars?",
|
|
initialValue: true,
|
|
});
|
|
if (keepEnv) {
|
|
next = patchChannelConfigForAccount({
|
|
cfg: next,
|
|
channel: "slack",
|
|
accountId: slackAccountId,
|
|
patch: {},
|
|
});
|
|
} else {
|
|
({ botToken, appToken } = await promptSlackTokens(prompter));
|
|
}
|
|
} else if (hasConfigTokens) {
|
|
const keep = await prompter.confirm({
|
|
message: "Slack tokens already configured. Keep them?",
|
|
initialValue: true,
|
|
});
|
|
if (!keep) {
|
|
({ botToken, appToken } = await promptSlackTokens(prompter));
|
|
}
|
|
} else {
|
|
({ botToken, appToken } = await promptSlackTokens(prompter));
|
|
}
|
|
|
|
if (botToken && appToken) {
|
|
next = patchChannelConfigForAccount({
|
|
cfg: next,
|
|
channel: "slack",
|
|
accountId: slackAccountId,
|
|
patch: { botToken, appToken },
|
|
});
|
|
}
|
|
|
|
next = await configureChannelAccessWithAllowlist({
|
|
cfg: next,
|
|
prompter,
|
|
label: "Slack channels",
|
|
currentPolicy: resolvedAccount.config.groupPolicy ?? "allowlist",
|
|
currentEntries: Object.entries(resolvedAccount.config.channels ?? {})
|
|
.filter(([, value]) => value?.allow !== false && value?.enabled !== false)
|
|
.map(([key]) => key),
|
|
placeholder: "#general, #private, C123",
|
|
updatePrompt: Boolean(resolvedAccount.config.channels),
|
|
setPolicy: (cfg, policy) =>
|
|
setAccountGroupPolicyForChannel({
|
|
cfg,
|
|
channel: "slack",
|
|
accountId: slackAccountId,
|
|
groupPolicy: policy,
|
|
}),
|
|
resolveAllowlist: async ({ cfg, entries }) => {
|
|
let keys = entries;
|
|
const accountWithTokens = resolveSlackAccount({
|
|
cfg,
|
|
accountId: slackAccountId,
|
|
});
|
|
if (accountWithTokens.botToken && entries.length > 0) {
|
|
try {
|
|
const resolved = await resolveSlackChannelAllowlist({
|
|
token: accountWithTokens.botToken,
|
|
entries,
|
|
});
|
|
const resolvedKeys = resolved
|
|
.filter((entry) => entry.resolved && entry.id)
|
|
.map((entry) => entry.id as string);
|
|
const unresolved = resolved
|
|
.filter((entry) => !entry.resolved)
|
|
.map((entry) => entry.input);
|
|
keys = [...resolvedKeys, ...unresolved.map((entry) => entry.trim()).filter(Boolean)];
|
|
await noteChannelLookupSummary({
|
|
prompter,
|
|
label: "Slack channels",
|
|
resolvedSections: [{ title: "Resolved", values: resolvedKeys }],
|
|
unresolved,
|
|
});
|
|
} catch (err) {
|
|
await noteChannelLookupFailure({
|
|
prompter,
|
|
label: "Slack channels",
|
|
error: err,
|
|
});
|
|
}
|
|
}
|
|
return keys;
|
|
},
|
|
applyAllowlist: ({ cfg, resolved }) => {
|
|
return setSlackChannelAllowlist(cfg, slackAccountId, resolved);
|
|
},
|
|
});
|
|
|
|
return { cfg: next, accountId: slackAccountId };
|
|
},
|
|
dmPolicy,
|
|
disable: (cfg) => setOnboardingChannelEnabled(cfg, channel, false),
|
|
};
|