Files
openclaw/extensions/tlon/src/setup-surface.ts
2026-05-15 15:33:27 +01:00

100 lines
3.3 KiB
TypeScript

import { createSetupTranslator } from "openclaw/plugin-sdk/setup-runtime";
import {
applyTlonSetupConfig,
createTlonSetupWizardBase,
resolveTlonSetupConfigured,
resolveTlonSetupStatusLines,
} from "./setup-core.js";
import { normalizeShip } from "./targets.js";
import { resolveTlonAccount } from "./types.js";
import { isBlockedUrbitHostname, validateUrbitBaseUrl } from "./urbit/base-url.js";
const t = createSetupTranslator();
function parseList(value: string): string[] {
return value
.split(/[\n,;]+/g)
.map((entry) => entry.trim())
.filter(Boolean);
}
export const tlonSetupWizard = createTlonSetupWizardBase({
resolveConfigured: async ({ cfg, accountId }) => await resolveTlonSetupConfigured(cfg, accountId),
resolveStatusLines: async ({ cfg, accountId }) =>
await resolveTlonSetupStatusLines(cfg, accountId),
finalize: async ({ cfg, accountId, prompter }) => {
let next = cfg;
const resolved = resolveTlonAccount(next, accountId);
const validatedUrl = validateUrbitBaseUrl(resolved.url ?? "");
if (!validatedUrl.ok) {
throw new Error(`Invalid URL: ${validatedUrl.error}`);
}
let dangerouslyAllowPrivateNetwork = resolved.dangerouslyAllowPrivateNetwork ?? false;
if (isBlockedUrbitHostname(validatedUrl.hostname)) {
dangerouslyAllowPrivateNetwork = await prompter.confirm({
message: t("wizard.tlon.privateNetworkPrompt"),
initialValue: dangerouslyAllowPrivateNetwork,
});
if (!dangerouslyAllowPrivateNetwork) {
throw new Error("Refusing private/internal ship URL without explicit network opt-in");
}
}
next = applyTlonSetupConfig({
cfg: next,
accountId,
input: { dangerouslyAllowPrivateNetwork },
});
const currentGroups = resolved.groupChannels;
const wantsGroupChannels = await prompter.confirm({
message: t("wizard.tlon.addGroupsPrompt"),
initialValue: currentGroups.length > 0,
});
if (wantsGroupChannels) {
const entry = await prompter.text({
message: t("wizard.tlon.groupChannelsPrompt"),
placeholder: "chat/~host-ship/general, chat/~host-ship/support",
initialValue: currentGroups.join(", ") || undefined,
});
next = applyTlonSetupConfig({
cfg: next,
accountId,
input: { groupChannels: parseList(entry ?? "") },
});
}
const currentAllowlist = resolved.dmAllowlist;
const wantsAllowlist = await prompter.confirm({
message: t("wizard.tlon.restrictDmsPrompt"),
initialValue: currentAllowlist.length > 0,
});
if (wantsAllowlist) {
const entry = await prompter.text({
message: t("wizard.tlon.dmAllowlistPrompt"),
placeholder: "~zod, ~nec",
initialValue: currentAllowlist.join(", ") || undefined,
});
next = applyTlonSetupConfig({
cfg: next,
accountId,
input: {
dmAllowlist: parseList(entry ?? "").map((ship) => normalizeShip(ship)),
},
});
}
const autoDiscoverChannels = await prompter.confirm({
message: t("wizard.tlon.autoDiscoveryPrompt"),
initialValue: resolved.autoDiscoverChannels ?? true,
});
next = applyTlonSetupConfig({
cfg: next,
accountId,
input: { autoDiscoverChannels },
});
return { cfg: next };
},
});