openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
85 lines (84 loc) • 4.61 kB
JavaScript
import { c as isRecord } from "./record-coerce-DItp3I4t.js";
import { d as normalizeStringEntries } from "./string-normalization-DsCfAx8q.js";
import { t as isBlockedObjectKey } from "./prototype-keys-CuYw53fZ.js";
import { i as parseConcreteConfigPathTokens } from "./dot-path-BOSboevO.js";
import { c as isValidSecretProviderAlias, l as isValidSecretRef } from "./ref-contract-D92DqQ-r.js";
import { T as SecretProviderSchema } from "./zod-schema.core-D6k6NKKA.js";
import { l as resolvePlanTargetAgainstRegistry } from "./target-registry-query-qVhyD-Hq.js";
import "./target-registry-BHDUOLUU.js";
//#region src/secrets/plan.ts
/** Validates and normalizes serialized secrets apply plans before config mutation. */
function isSecretProviderConfigShape(value) {
return SecretProviderSchema.safeParse(value).success;
}
/** Resolves a user-supplied plan target through the registry after path safety checks. */
function resolveValidatedPlanTarget(candidate) {
if (typeof candidate.type !== "string" || !candidate.type.trim()) return null;
const path = typeof candidate.path === "string" ? candidate.path.trim() : "";
if (!path) return null;
let parsedTokens;
let segments;
const hasPathSegments = Array.isArray(candidate.pathSegments) && candidate.pathSegments.length > 0;
try {
parsedTokens = parseConcreteConfigPathTokens(path);
segments = hasPathSegments ? normalizeStringEntries(candidate.pathSegments) : parsedTokens.map(String);
} catch {
return null;
}
const parsedPathMatches = segments.length === parsedTokens.length && segments.every((segment, index) => segment === String(parsedTokens[index]));
if (segments.length === 0 || segments.some(isBlockedObjectKey) || !parsedPathMatches && path !== segments.join(".")) return null;
return resolvePlanTargetAgainstRegistry({
type: candidate.type,
pathSegments: segments,
pathTokens: parsedPathMatches ? parsedTokens : segments,
allowLegacyArrayString: path === segments.join("."),
providerId: candidate.providerId,
accountId: candidate.accountId
});
}
/** Validates the external secrets apply plan shape and every target/provider mutation. */
function isSecretsApplyPlan(value) {
if (!value || typeof value !== "object" || Array.isArray(value)) return false;
const typed = value;
if (typed.version !== 1 || typed.protocolVersion !== 1 || !Array.isArray(typed.targets)) return false;
for (const target of typed.targets) {
if (!target || typeof target !== "object") return false;
const candidate = target;
const ref = candidate.ref;
const resolved = resolveValidatedPlanTarget({
type: candidate.type,
path: candidate.path,
pathSegments: candidate.pathSegments,
agentId: candidate.agentId,
providerId: candidate.providerId,
accountId: candidate.accountId,
authProfileProvider: candidate.authProfileProvider
});
if (typeof candidate.path !== "string" || !candidate.path.trim() || candidate.pathSegments !== void 0 && !Array.isArray(candidate.pathSegments) || !resolved || !ref || typeof ref !== "object" || ref.source !== "env" && ref.source !== "file" && ref.source !== "exec" && ref.source !== "store" || typeof ref.provider !== "string" || ref.provider.trim().length === 0 || typeof ref.id !== "string" || ref.id.trim().length === 0 || !isValidSecretRef(ref)) return false;
if (resolved.entry.configFile === "auth-profile-store") {
if (typeof candidate.agentId !== "string" || candidate.agentId.trim().length === 0) return false;
if (candidate.authProfileProvider !== void 0 && (typeof candidate.authProfileProvider !== "string" || candidate.authProfileProvider.trim().length === 0)) return false;
}
}
if (typed.providerUpserts !== void 0) {
if (!isRecord(typed.providerUpserts)) return false;
for (const [providerAlias, providerValue] of Object.entries(typed.providerUpserts)) {
if (!isValidSecretProviderAlias(providerAlias)) return false;
if (!isSecretProviderConfigShape(providerValue)) return false;
}
}
if (typed.providerDeletes !== void 0) {
if (!Array.isArray(typed.providerDeletes) || typed.providerDeletes.some((providerAlias) => typeof providerAlias !== "string" || !isValidSecretProviderAlias(providerAlias))) return false;
}
return true;
}
/** Normalizes omitted plan options to the apply-time defaults. */
function normalizeSecretsPlanOptions(options) {
return {
scrubEnv: options?.scrubEnv ?? true,
scrubAuthProfilesForProviderTargets: options?.scrubAuthProfilesForProviderTargets ?? true,
scrubLegacyAuthJson: false
};
}
//#endregion
export { normalizeSecretsPlanOptions as n, resolveValidatedPlanTarget as r, isSecretsApplyPlan as t };