* feat: add prek pre-commit hooks and dependabot Pre-commit hooks (via prek): - Basic hygiene: trailing-whitespace, end-of-file-fixer, check-yaml, check-added-large-files, check-merge-conflict - Security: detect-secrets, zizmor (GitHub Actions audit) - Linting: shellcheck, actionlint, oxlint, swiftlint - Formatting: oxfmt, swiftformat Dependabot: - npm and GitHub Actions ecosystems - Grouped updates (production/development/actions) - 7-day cooldown for supply chain protection Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * docs: add prek install instruction to AGENTS.md --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
115 lines
4.2 KiB
TypeScript
115 lines
4.2 KiB
TypeScript
import type { ClawdbotConfig } from "clawdbot/plugin-sdk";
|
|
import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "clawdbot/plugin-sdk";
|
|
|
|
import type { MattermostAccountConfig, MattermostChatMode } from "../types.js";
|
|
import { normalizeMattermostBaseUrl } from "./client.js";
|
|
|
|
export type MattermostTokenSource = "env" | "config" | "none";
|
|
export type MattermostBaseUrlSource = "env" | "config" | "none";
|
|
|
|
export type ResolvedMattermostAccount = {
|
|
accountId: string;
|
|
enabled: boolean;
|
|
name?: string;
|
|
botToken?: string;
|
|
baseUrl?: string;
|
|
botTokenSource: MattermostTokenSource;
|
|
baseUrlSource: MattermostBaseUrlSource;
|
|
config: MattermostAccountConfig;
|
|
chatmode?: MattermostChatMode;
|
|
oncharPrefixes?: string[];
|
|
requireMention?: boolean;
|
|
textChunkLimit?: number;
|
|
blockStreaming?: boolean;
|
|
blockStreamingCoalesce?: MattermostAccountConfig["blockStreamingCoalesce"];
|
|
};
|
|
|
|
function listConfiguredAccountIds(cfg: ClawdbotConfig): string[] {
|
|
const accounts = cfg.channels?.mattermost?.accounts;
|
|
if (!accounts || typeof accounts !== "object") return [];
|
|
return Object.keys(accounts).filter(Boolean);
|
|
}
|
|
|
|
export function listMattermostAccountIds(cfg: ClawdbotConfig): string[] {
|
|
const ids = listConfiguredAccountIds(cfg);
|
|
if (ids.length === 0) return [DEFAULT_ACCOUNT_ID];
|
|
return ids.sort((a, b) => a.localeCompare(b));
|
|
}
|
|
|
|
export function resolveDefaultMattermostAccountId(cfg: ClawdbotConfig): string {
|
|
const ids = listMattermostAccountIds(cfg);
|
|
if (ids.includes(DEFAULT_ACCOUNT_ID)) return DEFAULT_ACCOUNT_ID;
|
|
return ids[0] ?? DEFAULT_ACCOUNT_ID;
|
|
}
|
|
|
|
function resolveAccountConfig(
|
|
cfg: ClawdbotConfig,
|
|
accountId: string,
|
|
): MattermostAccountConfig | undefined {
|
|
const accounts = cfg.channels?.mattermost?.accounts;
|
|
if (!accounts || typeof accounts !== "object") return undefined;
|
|
return accounts[accountId] as MattermostAccountConfig | undefined;
|
|
}
|
|
|
|
function mergeMattermostAccountConfig(
|
|
cfg: ClawdbotConfig,
|
|
accountId: string,
|
|
): MattermostAccountConfig {
|
|
const { accounts: _ignored, ...base } = (cfg.channels?.mattermost ??
|
|
{}) as MattermostAccountConfig & { accounts?: unknown };
|
|
const account = resolveAccountConfig(cfg, accountId) ?? {};
|
|
return { ...base, ...account };
|
|
}
|
|
|
|
function resolveMattermostRequireMention(config: MattermostAccountConfig): boolean | undefined {
|
|
if (config.chatmode === "oncall") return true;
|
|
if (config.chatmode === "onmessage") return false;
|
|
if (config.chatmode === "onchar") return true;
|
|
return config.requireMention;
|
|
}
|
|
|
|
export function resolveMattermostAccount(params: {
|
|
cfg: ClawdbotConfig;
|
|
accountId?: string | null;
|
|
}): ResolvedMattermostAccount {
|
|
const accountId = normalizeAccountId(params.accountId);
|
|
const baseEnabled = params.cfg.channels?.mattermost?.enabled !== false;
|
|
const merged = mergeMattermostAccountConfig(params.cfg, accountId);
|
|
const accountEnabled = merged.enabled !== false;
|
|
const enabled = baseEnabled && accountEnabled;
|
|
|
|
const allowEnv = accountId === DEFAULT_ACCOUNT_ID;
|
|
const envToken = allowEnv ? process.env.MATTERMOST_BOT_TOKEN?.trim() : undefined;
|
|
const envUrl = allowEnv ? process.env.MATTERMOST_URL?.trim() : undefined;
|
|
const configToken = merged.botToken?.trim();
|
|
const configUrl = merged.baseUrl?.trim();
|
|
const botToken = configToken || envToken;
|
|
const baseUrl = normalizeMattermostBaseUrl(configUrl || envUrl);
|
|
const requireMention = resolveMattermostRequireMention(merged);
|
|
|
|
const botTokenSource: MattermostTokenSource = configToken ? "config" : envToken ? "env" : "none";
|
|
const baseUrlSource: MattermostBaseUrlSource = configUrl ? "config" : envUrl ? "env" : "none";
|
|
|
|
return {
|
|
accountId,
|
|
enabled,
|
|
name: merged.name?.trim() || undefined,
|
|
botToken,
|
|
baseUrl,
|
|
botTokenSource,
|
|
baseUrlSource,
|
|
config: merged,
|
|
chatmode: merged.chatmode,
|
|
oncharPrefixes: merged.oncharPrefixes,
|
|
requireMention,
|
|
textChunkLimit: merged.textChunkLimit,
|
|
blockStreaming: merged.blockStreaming,
|
|
blockStreamingCoalesce: merged.blockStreamingCoalesce,
|
|
};
|
|
}
|
|
|
|
export function listEnabledMattermostAccounts(cfg: ClawdbotConfig): ResolvedMattermostAccount[] {
|
|
return listMattermostAccountIds(cfg)
|
|
.map((accountId) => resolveMattermostAccount({ cfg, accountId }))
|
|
.filter((account) => account.enabled);
|
|
}
|