mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-24 15:41:40 +00:00
97 lines
2.8 KiB
TypeScript
97 lines
2.8 KiB
TypeScript
import { getChannelPlugin } from "../channels/plugins/index.js";
|
|
import type { ChannelId } from "../channels/plugins/types.js";
|
|
import { normalizeChannelId } from "../channels/registry.js";
|
|
import { isPlainObject } from "../infra/plain-object.js";
|
|
import type { CommandsConfig, NativeCommandsSetting } from "./types.js";
|
|
|
|
export type CommandFlagKey = {
|
|
[K in keyof CommandsConfig]-?: Exclude<CommandsConfig[K], undefined> extends boolean ? K : never;
|
|
}[keyof CommandsConfig];
|
|
|
|
function resolveAutoDefault(
|
|
providerId: ChannelId | undefined,
|
|
kind: "native" | "nativeSkills",
|
|
): boolean {
|
|
const id = normalizeChannelId(providerId);
|
|
if (!id) {
|
|
return false;
|
|
}
|
|
const plugin = getChannelPlugin(id);
|
|
if (!plugin) {
|
|
return false;
|
|
}
|
|
if (kind === "native") {
|
|
return plugin.commands?.nativeCommandsAutoEnabled === true;
|
|
}
|
|
return plugin.commands?.nativeSkillsAutoEnabled === true;
|
|
}
|
|
|
|
export function resolveNativeSkillsEnabled(params: {
|
|
providerId: ChannelId;
|
|
providerSetting?: NativeCommandsSetting;
|
|
globalSetting?: NativeCommandsSetting;
|
|
}): boolean {
|
|
return resolveNativeCommandSetting({ ...params, kind: "nativeSkills" });
|
|
}
|
|
|
|
export function resolveNativeCommandsEnabled(params: {
|
|
providerId: ChannelId;
|
|
providerSetting?: NativeCommandsSetting;
|
|
globalSetting?: NativeCommandsSetting;
|
|
}): boolean {
|
|
return resolveNativeCommandSetting({ ...params, kind: "native" });
|
|
}
|
|
|
|
function resolveNativeCommandSetting(params: {
|
|
providerId: ChannelId;
|
|
providerSetting?: NativeCommandsSetting;
|
|
globalSetting?: NativeCommandsSetting;
|
|
kind?: "native" | "nativeSkills";
|
|
}): boolean {
|
|
const { providerId, providerSetting, globalSetting, kind = "native" } = params;
|
|
const setting = providerSetting === undefined ? globalSetting : providerSetting;
|
|
if (setting === true) {
|
|
return true;
|
|
}
|
|
if (setting === false) {
|
|
return false;
|
|
}
|
|
return resolveAutoDefault(providerId, kind);
|
|
}
|
|
|
|
export function isNativeCommandsExplicitlyDisabled(params: {
|
|
providerSetting?: NativeCommandsSetting;
|
|
globalSetting?: NativeCommandsSetting;
|
|
}): boolean {
|
|
const { providerSetting, globalSetting } = params;
|
|
if (providerSetting === false) {
|
|
return true;
|
|
}
|
|
if (providerSetting === undefined) {
|
|
return globalSetting === false;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function getOwnCommandFlagValue(
|
|
config: { commands?: unknown } | undefined,
|
|
key: CommandFlagKey,
|
|
): unknown {
|
|
const { commands } = config ?? {};
|
|
if (!isPlainObject(commands) || !Object.hasOwn(commands, key)) {
|
|
return undefined;
|
|
}
|
|
return commands[key];
|
|
}
|
|
|
|
export function isCommandFlagEnabled(
|
|
config: { commands?: unknown } | undefined,
|
|
key: CommandFlagKey,
|
|
): boolean {
|
|
return getOwnCommandFlagValue(config, key) === true;
|
|
}
|
|
|
|
export function isRestartEnabled(config?: { commands?: unknown }): boolean {
|
|
return getOwnCommandFlagValue(config, "restart") !== false;
|
|
}
|