mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-30 11:21:07 +00:00
161 lines
5.2 KiB
TypeScript
161 lines
5.2 KiB
TypeScript
import { loadConfig } from "../../config/config.js";
|
|
import {
|
|
canonicalizeSpeechProviderId,
|
|
getSpeechProvider,
|
|
listSpeechProviders,
|
|
} from "../../tts/provider-registry.js";
|
|
import {
|
|
getResolvedSpeechProviderConfig,
|
|
getTtsProvider,
|
|
isTtsEnabled,
|
|
isTtsProviderConfigured,
|
|
resolveTtsAutoMode,
|
|
resolveTtsConfig,
|
|
resolveTtsPrefsPath,
|
|
resolveTtsProviderOrder,
|
|
setTtsEnabled,
|
|
setTtsProvider,
|
|
textToSpeech,
|
|
} from "../../tts/tts.js";
|
|
import { ErrorCodes, errorShape } from "../protocol/index.js";
|
|
import { formatForLog } from "../ws-log.js";
|
|
import type { GatewayRequestHandlers } from "./types.js";
|
|
|
|
export const ttsHandlers: GatewayRequestHandlers = {
|
|
"tts.status": async ({ respond }) => {
|
|
try {
|
|
const cfg = loadConfig();
|
|
const config = resolveTtsConfig(cfg);
|
|
const prefsPath = resolveTtsPrefsPath(config);
|
|
const provider = getTtsProvider(config, prefsPath);
|
|
const autoMode = resolveTtsAutoMode({ config, prefsPath });
|
|
const fallbackProviders = resolveTtsProviderOrder(provider, cfg)
|
|
.slice(1)
|
|
.filter((candidate) => isTtsProviderConfigured(config, candidate, cfg));
|
|
const providerStates = listSpeechProviders(cfg).map((candidate) => ({
|
|
id: candidate.id,
|
|
label: candidate.label,
|
|
configured: candidate.isConfigured({
|
|
cfg,
|
|
providerConfig: getResolvedSpeechProviderConfig(config, candidate.id, cfg),
|
|
timeoutMs: config.timeoutMs,
|
|
}),
|
|
}));
|
|
respond(true, {
|
|
enabled: isTtsEnabled(config, prefsPath),
|
|
auto: autoMode,
|
|
provider,
|
|
fallbackProvider: fallbackProviders[0] ?? null,
|
|
fallbackProviders,
|
|
prefsPath,
|
|
providerStates,
|
|
});
|
|
} catch (err) {
|
|
respond(false, undefined, errorShape(ErrorCodes.UNAVAILABLE, formatForLog(err)));
|
|
}
|
|
},
|
|
"tts.enable": async ({ respond }) => {
|
|
try {
|
|
const cfg = loadConfig();
|
|
const config = resolveTtsConfig(cfg);
|
|
const prefsPath = resolveTtsPrefsPath(config);
|
|
setTtsEnabled(prefsPath, true);
|
|
respond(true, { enabled: true });
|
|
} catch (err) {
|
|
respond(false, undefined, errorShape(ErrorCodes.UNAVAILABLE, formatForLog(err)));
|
|
}
|
|
},
|
|
"tts.disable": async ({ respond }) => {
|
|
try {
|
|
const cfg = loadConfig();
|
|
const config = resolveTtsConfig(cfg);
|
|
const prefsPath = resolveTtsPrefsPath(config);
|
|
setTtsEnabled(prefsPath, false);
|
|
respond(true, { enabled: false });
|
|
} catch (err) {
|
|
respond(false, undefined, errorShape(ErrorCodes.UNAVAILABLE, formatForLog(err)));
|
|
}
|
|
},
|
|
"tts.convert": async ({ params, respond }) => {
|
|
const text = typeof params.text === "string" ? params.text.trim() : "";
|
|
if (!text) {
|
|
respond(
|
|
false,
|
|
undefined,
|
|
errorShape(ErrorCodes.INVALID_REQUEST, "tts.convert requires text"),
|
|
);
|
|
return;
|
|
}
|
|
try {
|
|
const cfg = loadConfig();
|
|
const channel = typeof params.channel === "string" ? params.channel.trim() : undefined;
|
|
const result = await textToSpeech({ text, cfg, channel });
|
|
if (result.success && result.audioPath) {
|
|
respond(true, {
|
|
audioPath: result.audioPath,
|
|
provider: result.provider,
|
|
outputFormat: result.outputFormat,
|
|
voiceCompatible: result.voiceCompatible,
|
|
});
|
|
return;
|
|
}
|
|
respond(
|
|
false,
|
|
undefined,
|
|
errorShape(ErrorCodes.UNAVAILABLE, result.error ?? "TTS conversion failed"),
|
|
);
|
|
} catch (err) {
|
|
respond(false, undefined, errorShape(ErrorCodes.UNAVAILABLE, formatForLog(err)));
|
|
}
|
|
},
|
|
"tts.setProvider": async ({ params, respond }) => {
|
|
const cfg = loadConfig();
|
|
const provider = canonicalizeSpeechProviderId(
|
|
typeof params.provider === "string" ? params.provider.trim() : "",
|
|
cfg,
|
|
);
|
|
if (!provider || !getSpeechProvider(provider, cfg)) {
|
|
respond(
|
|
false,
|
|
undefined,
|
|
errorShape(
|
|
ErrorCodes.INVALID_REQUEST,
|
|
"Invalid provider. Use a registered TTS provider id.",
|
|
),
|
|
);
|
|
return;
|
|
}
|
|
try {
|
|
const config = resolveTtsConfig(cfg);
|
|
const prefsPath = resolveTtsPrefsPath(config);
|
|
setTtsProvider(prefsPath, provider);
|
|
respond(true, { provider });
|
|
} catch (err) {
|
|
respond(false, undefined, errorShape(ErrorCodes.UNAVAILABLE, formatForLog(err)));
|
|
}
|
|
},
|
|
"tts.providers": async ({ respond }) => {
|
|
try {
|
|
const cfg = loadConfig();
|
|
const config = resolveTtsConfig(cfg);
|
|
const prefsPath = resolveTtsPrefsPath(config);
|
|
respond(true, {
|
|
providers: listSpeechProviders(cfg).map((provider) => ({
|
|
id: provider.id,
|
|
name: provider.label,
|
|
configured: provider.isConfigured({
|
|
cfg,
|
|
providerConfig: getResolvedSpeechProviderConfig(config, provider.id, cfg),
|
|
timeoutMs: config.timeoutMs,
|
|
}),
|
|
models: [...(provider.models ?? [])],
|
|
voices: [...(provider.voices ?? [])],
|
|
})),
|
|
active: getTtsProvider(config, prefsPath),
|
|
});
|
|
} catch (err) {
|
|
respond(false, undefined, errorShape(ErrorCodes.UNAVAILABLE, formatForLog(err)));
|
|
}
|
|
},
|
|
};
|