mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-30 11:41:04 +00:00
141 lines
4.9 KiB
TypeScript
141 lines
4.9 KiB
TypeScript
import { DEFAULT_ACCOUNT_ID } from "openclaw/plugin-sdk/account-id";
|
|
import type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";
|
|
import {
|
|
applySetupAccountConfigPatch,
|
|
createStandardChannelSetupStatus,
|
|
formatDocsLink,
|
|
createSetupTranslator,
|
|
type ChannelSetupWizard,
|
|
} from "openclaw/plugin-sdk/setup";
|
|
import {
|
|
applyMattermostSetupConfigPatch,
|
|
isMattermostConfigured,
|
|
resolveMattermostAccountWithSecrets,
|
|
} from "./setup-core.js";
|
|
import { normalizeMattermostBaseUrl } from "./setup.client.runtime.js";
|
|
import { hasConfiguredSecretInput } from "./setup.secret-input.runtime.js";
|
|
|
|
const t = createSetupTranslator();
|
|
|
|
const channel = "mattermost" as const;
|
|
export { mattermostSetupAdapter } from "./setup-core.js";
|
|
|
|
export const mattermostSetupWizard: ChannelSetupWizard = {
|
|
channel,
|
|
status: createStandardChannelSetupStatus({
|
|
channelLabel: "Mattermost",
|
|
configuredLabel: t("wizard.channels.statusConfigured"),
|
|
unconfiguredLabel: t("wizard.channels.statusNeedsTokenUrl"),
|
|
configuredHint: t("wizard.channels.statusConfigured"),
|
|
unconfiguredHint: t("wizard.channels.statusNeedsSetup"),
|
|
configuredScore: 2,
|
|
unconfiguredScore: 1,
|
|
resolveConfigured: ({ cfg, accountId }) =>
|
|
isMattermostConfigured(
|
|
resolveMattermostAccountWithSecrets(cfg, accountId ?? DEFAULT_ACCOUNT_ID),
|
|
),
|
|
}),
|
|
introNote: {
|
|
title: t("wizard.mattermost.botTokenTitle"),
|
|
lines: [
|
|
t("wizard.mattermost.helpOpenConsole"),
|
|
t("wizard.mattermost.helpCreateBot"),
|
|
t("wizard.mattermost.helpBaseUrl"),
|
|
t("wizard.mattermost.helpBotMember"),
|
|
t("wizard.channels.docs", { link: formatDocsLink("/mattermost", "mattermost") }),
|
|
],
|
|
shouldShow: ({ cfg, accountId }) =>
|
|
!isMattermostConfigured(resolveMattermostAccountWithSecrets(cfg, accountId)),
|
|
},
|
|
envShortcut: {
|
|
prompt: t("wizard.mattermost.envPrompt"),
|
|
preferredEnvVar: "MATTERMOST_BOT_TOKEN",
|
|
isAvailable: ({ cfg, accountId }) => {
|
|
if (accountId !== DEFAULT_ACCOUNT_ID) {
|
|
return false;
|
|
}
|
|
const resolvedAccount = resolveMattermostAccountWithSecrets(cfg, accountId);
|
|
const hasConfigValues =
|
|
hasConfiguredSecretInput(resolvedAccount.config.botToken) ||
|
|
Boolean(resolvedAccount.config.baseUrl?.trim());
|
|
return Boolean(
|
|
process.env.MATTERMOST_BOT_TOKEN?.trim() &&
|
|
process.env.MATTERMOST_URL?.trim() &&
|
|
!hasConfigValues,
|
|
);
|
|
},
|
|
apply: ({ cfg, accountId }) =>
|
|
applySetupAccountConfigPatch({
|
|
cfg,
|
|
channelKey: channel,
|
|
accountId,
|
|
patch: {},
|
|
}),
|
|
},
|
|
credentials: [
|
|
{
|
|
inputKey: "botToken",
|
|
providerHint: channel,
|
|
credentialLabel: t("wizard.mattermost.botToken"),
|
|
preferredEnvVar: "MATTERMOST_BOT_TOKEN",
|
|
envPrompt: t("wizard.mattermost.envPrompt"),
|
|
keepPrompt: t("wizard.mattermost.botTokenKeep"),
|
|
inputPrompt: t("wizard.mattermost.botTokenInput"),
|
|
inspect: ({ cfg, accountId }) => {
|
|
const resolvedAccount = resolveMattermostAccountWithSecrets(cfg, accountId);
|
|
return {
|
|
accountConfigured: isMattermostConfigured(resolvedAccount),
|
|
hasConfiguredValue: hasConfiguredSecretInput(resolvedAccount.config.botToken),
|
|
};
|
|
},
|
|
applySet: async ({ cfg, accountId, value }) =>
|
|
applyMattermostSetupConfigPatch({
|
|
cfg,
|
|
accountId,
|
|
patch: { botToken: value },
|
|
}),
|
|
},
|
|
],
|
|
textInputs: [
|
|
{
|
|
inputKey: "httpUrl",
|
|
message: t("wizard.mattermost.baseUrlPrompt"),
|
|
confirmCurrentValue: false,
|
|
currentValue: ({ cfg, accountId }) =>
|
|
resolveMattermostAccountWithSecrets(cfg, accountId).baseUrl ??
|
|
process.env.MATTERMOST_URL?.trim(),
|
|
initialValue: ({ cfg, accountId }) =>
|
|
resolveMattermostAccountWithSecrets(cfg, accountId).baseUrl ??
|
|
process.env.MATTERMOST_URL?.trim(),
|
|
shouldPrompt: ({ cfg, accountId, credentialValues, currentValue }) => {
|
|
const resolvedAccount = resolveMattermostAccountWithSecrets(cfg, accountId);
|
|
const tokenConfigured =
|
|
Boolean(resolvedAccount.botToken?.trim()) ||
|
|
hasConfiguredSecretInput(resolvedAccount.config.botToken);
|
|
return Boolean(credentialValues.botToken) || !tokenConfigured || !currentValue;
|
|
},
|
|
validate: ({ value }) =>
|
|
normalizeMattermostBaseUrl(value)
|
|
? undefined
|
|
: "Mattermost base URL must include a valid base URL.",
|
|
normalizeValue: ({ value }) => normalizeMattermostBaseUrl(value) ?? value.trim(),
|
|
applySet: async ({ cfg, accountId, value }) =>
|
|
applyMattermostSetupConfigPatch({
|
|
cfg,
|
|
accountId,
|
|
patch: { baseUrl: value },
|
|
}),
|
|
},
|
|
],
|
|
disable: (cfg: OpenClawConfig) => ({
|
|
...cfg,
|
|
channels: {
|
|
...cfg.channels,
|
|
mattermost: {
|
|
...cfg.channels?.mattermost,
|
|
enabled: false,
|
|
},
|
|
},
|
|
}),
|
|
};
|