mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-15 13:16:04 +00:00
* fix(clawrouter): guard usage snapshot fetch against SSRF redirects * fix(clawrouter): preserve guarded proxy usage --------- Co-authored-by: NIO <nocodet@mail.com> Co-authored-by: Peter Steinberger <steipete@gmail.com>
226 lines
8.1 KiB
TypeScript
226 lines
8.1 KiB
TypeScript
// ClawRouter plugin entrypoint registers credential-scoped model routing and quota reporting.
|
|
import {
|
|
definePluginEntry,
|
|
type ProviderAuthMethod,
|
|
type ProviderResolveDynamicModelContext,
|
|
type ProviderRuntimeModel,
|
|
} from "openclaw/plugin-sdk/plugin-entry";
|
|
import { createProviderApiKeyAuthMethod } from "openclaw/plugin-sdk/provider-auth-api-key";
|
|
import { buildProviderReplayFamilyHooks } from "openclaw/plugin-sdk/provider-model-shared";
|
|
import { buildProviderToolCompatFamilyHooks } from "openclaw/plugin-sdk/provider-tools";
|
|
import {
|
|
buildClawRouterProviderConfig,
|
|
normalizeClawRouterApiBaseUrl,
|
|
normalizeClawRouterRootUrl,
|
|
normalizeClawRouterResolvedModel,
|
|
} from "./provider-catalog.js";
|
|
import { wrapClawRouterProviderStream } from "./stream.js";
|
|
import { fetchClawRouterUsage } from "./usage.js";
|
|
|
|
const PROVIDER_ID = "clawrouter";
|
|
const ENV_VAR = "CLAWROUTER_API_KEY";
|
|
|
|
const openAiReplay = buildProviderReplayFamilyHooks({
|
|
family: "openai-compatible",
|
|
dropReasoningFromHistory: false,
|
|
});
|
|
const anthropicReplay = buildProviderReplayFamilyHooks({
|
|
family: "native-anthropic-by-model",
|
|
});
|
|
const googleReplay = buildProviderReplayFamilyHooks({ family: "google-gemini" });
|
|
const openAiTools = buildProviderToolCompatFamilyHooks("openai");
|
|
const deepSeekTools = buildProviderToolCompatFamilyHooks("deepseek");
|
|
const geminiTools = buildProviderToolCompatFamilyHooks("gemini");
|
|
|
|
function buildApiKeyAuth(): ProviderAuthMethod {
|
|
return createProviderApiKeyAuthMethod({
|
|
providerId: PROVIDER_ID,
|
|
methodId: "api-key",
|
|
label: "ClawRouter proxy key",
|
|
hint: "Credential-scoped access to approved models and budgets",
|
|
optionKey: "clawrouterApiKey",
|
|
flagName: "--clawrouter-api-key",
|
|
envVar: ENV_VAR,
|
|
promptMessage: "Enter ClawRouter proxy key",
|
|
noteTitle: "ClawRouter",
|
|
noteMessage: [
|
|
"Use the proxy key issued by your ClawRouter administrator.",
|
|
"OpenClaw discovers only the models granted to that key.",
|
|
].join("\n"),
|
|
wizard: {
|
|
choiceId: "clawrouter-api-key",
|
|
choiceLabel: "ClawRouter proxy key",
|
|
choiceHint: "Approved models through one managed key",
|
|
groupId: PROVIDER_ID,
|
|
groupLabel: "ClawRouter",
|
|
groupHint: "Managed model access and quotas",
|
|
},
|
|
});
|
|
}
|
|
|
|
function configuredBaseUrl(
|
|
config: { models?: { providers?: Record<string, { baseUrl?: unknown }> } } | null | undefined,
|
|
): string | undefined {
|
|
const value = config?.models?.providers?.[PROVIDER_ID]?.baseUrl;
|
|
return typeof value === "string" ? value : undefined;
|
|
}
|
|
|
|
function dynamicModelScope(ctx: ProviderResolveDynamicModelContext): string {
|
|
return JSON.stringify([
|
|
ctx.agentDir ?? "",
|
|
ctx.workspaceDir ?? "",
|
|
ctx.authProfileId ?? "",
|
|
normalizeClawRouterRootUrl(ctx.providerConfig?.baseUrl ?? configuredBaseUrl(ctx.config)),
|
|
]);
|
|
}
|
|
|
|
function buildRuntimeModels(
|
|
providerConfig: Awaited<ReturnType<typeof buildClawRouterProviderConfig>>,
|
|
): Map<string, ProviderRuntimeModel> {
|
|
const models = new Map<string, ProviderRuntimeModel>();
|
|
for (const model of providerConfig.models) {
|
|
const api = model.api ?? providerConfig.api;
|
|
const baseUrl = model.baseUrl ?? providerConfig.baseUrl;
|
|
if (!api || !baseUrl) {
|
|
continue;
|
|
}
|
|
models.set(model.id, {
|
|
...model,
|
|
api,
|
|
baseUrl,
|
|
provider: PROVIDER_ID,
|
|
input: model.input.filter(
|
|
(entry): entry is "text" | "image" => entry === "text" || entry === "image",
|
|
),
|
|
});
|
|
}
|
|
return models;
|
|
}
|
|
|
|
function resolveToolFamily(modelId: string) {
|
|
const normalized = modelId.toLowerCase();
|
|
if (normalized.startsWith("deepseek/")) {
|
|
return deepSeekTools;
|
|
}
|
|
if (normalized.startsWith("google/")) {
|
|
return geminiTools;
|
|
}
|
|
return openAiTools;
|
|
}
|
|
|
|
export default definePluginEntry({
|
|
id: PROVIDER_ID,
|
|
name: "ClawRouter",
|
|
description: "Managed multi-provider model routing and quotas",
|
|
register(api) {
|
|
const dynamicModels = new Map<string, Map<string, ProviderRuntimeModel>>();
|
|
|
|
api.registerProvider({
|
|
id: PROVIDER_ID,
|
|
label: "ClawRouter",
|
|
docsPath: "/providers/clawrouter",
|
|
envVars: [ENV_VAR],
|
|
auth: [buildApiKeyAuth()],
|
|
catalog: {
|
|
order: "simple",
|
|
run: async (ctx) => {
|
|
const auth = ctx.resolveProviderAuth(PROVIDER_ID);
|
|
let discoveryApiKey = auth.discoveryApiKey;
|
|
if (!discoveryApiKey) {
|
|
try {
|
|
const { resolveApiKeyForProvider } =
|
|
await import("openclaw/plugin-sdk/provider-auth-runtime");
|
|
discoveryApiKey = (
|
|
await resolveApiKeyForProvider({
|
|
provider: PROVIDER_ID,
|
|
cfg: ctx.config,
|
|
...(ctx.agentDir ? { agentDir: ctx.agentDir } : {}),
|
|
...(ctx.workspaceDir ? { workspaceDir: ctx.workspaceDir } : {}),
|
|
...(auth.profileId ? { profileId: auth.profileId, lockedProfile: true } : {}),
|
|
})
|
|
)?.apiKey;
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
const apiKey = auth.apiKey ?? discoveryApiKey;
|
|
if (!apiKey || !discoveryApiKey) {
|
|
return null;
|
|
}
|
|
return {
|
|
provider: await buildClawRouterProviderConfig({
|
|
apiKey,
|
|
discoveryApiKey,
|
|
baseUrl: configuredBaseUrl(ctx.config),
|
|
}),
|
|
};
|
|
},
|
|
},
|
|
resolveDynamicModel: (ctx) => dynamicModels.get(dynamicModelScope(ctx))?.get(ctx.modelId),
|
|
prepareDynamicModel: async (ctx) => {
|
|
const scope = dynamicModelScope(ctx);
|
|
dynamicModels.delete(scope);
|
|
const { resolveApiKeyForProvider } =
|
|
await import("openclaw/plugin-sdk/provider-auth-runtime");
|
|
const apiKey = (
|
|
await resolveApiKeyForProvider({
|
|
provider: PROVIDER_ID,
|
|
cfg: ctx.config,
|
|
...(ctx.agentDir ? { agentDir: ctx.agentDir } : {}),
|
|
...(ctx.workspaceDir ? { workspaceDir: ctx.workspaceDir } : {}),
|
|
...(ctx.authProfileId ? { profileId: ctx.authProfileId, lockedProfile: true } : {}),
|
|
})
|
|
)?.apiKey;
|
|
if (!apiKey) {
|
|
return;
|
|
}
|
|
const providerConfig = await buildClawRouterProviderConfig({
|
|
apiKey,
|
|
discoveryApiKey: apiKey,
|
|
baseUrl: ctx.providerConfig?.baseUrl ?? configuredBaseUrl(ctx.config),
|
|
});
|
|
dynamicModels.set(scope, buildRuntimeModels(providerConfig));
|
|
},
|
|
normalizeConfig: ({ providerConfig }) => {
|
|
const baseUrl = normalizeClawRouterApiBaseUrl(providerConfig.baseUrl);
|
|
return baseUrl !== providerConfig.baseUrl ? { ...providerConfig, baseUrl } : undefined;
|
|
},
|
|
normalizeResolvedModel: ({ model }) => normalizeClawRouterResolvedModel(model),
|
|
wrapSimpleCompletionStreamFn: wrapClawRouterProviderStream,
|
|
wrapStreamFn: wrapClawRouterProviderStream,
|
|
buildReplayPolicy: (ctx) => {
|
|
if (ctx.modelApi === "anthropic-messages") {
|
|
return anthropicReplay.buildReplayPolicy?.(ctx);
|
|
}
|
|
if (ctx.modelApi === "google-generative-ai") {
|
|
return googleReplay.buildReplayPolicy?.(ctx);
|
|
}
|
|
return openAiReplay.buildReplayPolicy?.(ctx);
|
|
},
|
|
sanitizeReplayHistory: (ctx) =>
|
|
ctx.modelApi === "google-generative-ai"
|
|
? googleReplay.sanitizeReplayHistory?.(ctx)
|
|
: undefined,
|
|
resolveReasoningOutputMode: (ctx) =>
|
|
ctx.modelApi === "google-generative-ai"
|
|
? googleReplay.resolveReasoningOutputMode?.(ctx)
|
|
: undefined,
|
|
normalizeToolSchemas: (ctx) => resolveToolFamily(ctx.modelId ?? "").normalizeToolSchemas(ctx),
|
|
inspectToolSchemas: (ctx) => resolveToolFamily(ctx.modelId ?? "").inspectToolSchemas(ctx),
|
|
isModernModelRef: () => true,
|
|
resolveUsageAuth: async (ctx) => {
|
|
const apiKey = ctx.resolveApiKeyFromConfigAndStore({
|
|
envDirect: [ctx.env[ENV_VAR]],
|
|
});
|
|
return apiKey ? { token: apiKey } : null;
|
|
},
|
|
fetchUsageSnapshot: async (ctx) =>
|
|
await fetchClawRouterUsage({
|
|
token: ctx.token,
|
|
baseUrl: configuredBaseUrl(ctx.config),
|
|
timeoutMs: ctx.timeoutMs,
|
|
}),
|
|
});
|
|
},
|
|
});
|