89 lines
3.1 KiB
TypeScript
89 lines
3.1 KiB
TypeScript
// Default service labels (for backward compatibility and when no profile specified)
|
|
export const GATEWAY_LAUNCH_AGENT_LABEL = "bot.molt.gateway";
|
|
export const GATEWAY_SYSTEMD_SERVICE_NAME = "moltbot-gateway";
|
|
export const GATEWAY_WINDOWS_TASK_NAME = "Moltbot Gateway";
|
|
export const GATEWAY_SERVICE_MARKER = "moltbot";
|
|
export const GATEWAY_SERVICE_KIND = "gateway";
|
|
export const NODE_LAUNCH_AGENT_LABEL = "bot.molt.node";
|
|
export const NODE_SYSTEMD_SERVICE_NAME = "moltbot-node";
|
|
export const NODE_WINDOWS_TASK_NAME = "Moltbot Node";
|
|
export const NODE_SERVICE_MARKER = "moltbot";
|
|
export const NODE_SERVICE_KIND = "node";
|
|
export const NODE_WINDOWS_TASK_SCRIPT_NAME = "node.cmd";
|
|
export const LEGACY_GATEWAY_LAUNCH_AGENT_LABELS = [
|
|
"com.clawdbot.gateway",
|
|
"com.steipete.clawdbot.gateway",
|
|
];
|
|
export const LEGACY_GATEWAY_SYSTEMD_SERVICE_NAMES: string[] = [];
|
|
export const LEGACY_GATEWAY_WINDOWS_TASK_NAMES: string[] = [];
|
|
|
|
export function normalizeGatewayProfile(profile?: string): string | null {
|
|
const trimmed = profile?.trim();
|
|
if (!trimmed || trimmed.toLowerCase() === "default") return null;
|
|
return trimmed;
|
|
}
|
|
|
|
export function resolveGatewayProfileSuffix(profile?: string): string {
|
|
const normalized = normalizeGatewayProfile(profile);
|
|
return normalized ? `-${normalized}` : "";
|
|
}
|
|
|
|
export function resolveGatewayLaunchAgentLabel(profile?: string): string {
|
|
const normalized = normalizeGatewayProfile(profile);
|
|
if (!normalized) {
|
|
return GATEWAY_LAUNCH_AGENT_LABEL;
|
|
}
|
|
return `bot.molt.${normalized}`;
|
|
}
|
|
|
|
export function resolveLegacyGatewayLaunchAgentLabels(profile?: string): string[] {
|
|
const normalized = normalizeGatewayProfile(profile);
|
|
if (!normalized) {
|
|
return [...LEGACY_GATEWAY_LAUNCH_AGENT_LABELS];
|
|
}
|
|
return [...LEGACY_GATEWAY_LAUNCH_AGENT_LABELS, `com.clawdbot.${normalized}`];
|
|
}
|
|
|
|
export function resolveGatewaySystemdServiceName(profile?: string): string {
|
|
const suffix = resolveGatewayProfileSuffix(profile);
|
|
if (!suffix) return GATEWAY_SYSTEMD_SERVICE_NAME;
|
|
return `moltbot-gateway${suffix}`;
|
|
}
|
|
|
|
export function resolveGatewayWindowsTaskName(profile?: string): string {
|
|
const normalized = normalizeGatewayProfile(profile);
|
|
if (!normalized) return GATEWAY_WINDOWS_TASK_NAME;
|
|
return `Moltbot Gateway (${normalized})`;
|
|
}
|
|
|
|
export function formatGatewayServiceDescription(params?: {
|
|
profile?: string;
|
|
version?: string;
|
|
}): string {
|
|
const profile = normalizeGatewayProfile(params?.profile);
|
|
const version = params?.version?.trim();
|
|
const parts: string[] = [];
|
|
if (profile) parts.push(`profile: ${profile}`);
|
|
if (version) parts.push(`v${version}`);
|
|
if (parts.length === 0) return "Moltbot Gateway";
|
|
return `Moltbot Gateway (${parts.join(", ")})`;
|
|
}
|
|
|
|
export function resolveNodeLaunchAgentLabel(): string {
|
|
return NODE_LAUNCH_AGENT_LABEL;
|
|
}
|
|
|
|
export function resolveNodeSystemdServiceName(): string {
|
|
return NODE_SYSTEMD_SERVICE_NAME;
|
|
}
|
|
|
|
export function resolveNodeWindowsTaskName(): string {
|
|
return NODE_WINDOWS_TASK_NAME;
|
|
}
|
|
|
|
export function formatNodeServiceDescription(params?: { version?: string }): string {
|
|
const version = params?.version?.trim();
|
|
if (!version) return "Moltbot Node Host";
|
|
return `Moltbot Node Host (v${version})`;
|
|
}
|