zerobyte/app/server/modules/lifecycle/config-import.ts
Jakub Trávník 8591432c59 refactor: add ArkType schema validation for config import
- Add app/schemas/config-import.ts with ArkType schemas for upfront validation
- Replace runtime type checks with schema-based validation in config-import.ts
- Return validation errors early with detailed path and message info
- Export retentionPolicySchema from backups.dto.ts for reuse
- Update CLI to handle validation errors in both dry-run and import modes
- Fix README mirrors examples to use existing repository names
2026-01-02 14:02:06 +01:00

748 lines
26 KiB
TypeScript

import { eq } from "drizzle-orm";
import fs from "node:fs/promises";
import slugify from "slugify";
import { type } from "arktype";
import { db } from "../../db/db";
import {
usersTable,
volumesTable,
repositoriesTable,
backupSchedulesTable,
notificationDestinationsTable,
} from "../../db/schema";
import { logger } from "../../utils/logger";
import { toError } from "../../utils/errors";
import { volumeService } from "../volumes/volume.service";
import type { NotificationConfig } from "~/schemas/notifications";
import type { RepositoryConfig } from "~/schemas/restic";
import type { BackendConfig } from "~/schemas/volumes";
import {
importConfigSchema,
type ImportConfig,
type VolumeImport,
type RepositoryImport,
type NotificationDestinationImport,
type BackupScheduleImport,
type UserImport,
type ScheduleNotificationAssignment as ScheduleNotificationImport,
type ScheduleMirror as ScheduleMirrorImport,
} from "~/schemas/config-import";
const isRecord = (value: unknown): value is Record<string, unknown> => typeof value === "object" && value !== null;
export type ImportResult = {
succeeded: number;
skipped: number;
warnings: number;
errors: number;
};
function interpolateEnvVars(value: unknown): unknown {
if (typeof value === "string") {
return value.replace(/\$\{([^}]+)\}/g, (_, v) => {
if (process.env[v] === undefined) {
logger.warn(`Environment variable '${v}' is not defined. Replacing with empty string.`);
return "";
}
return process.env[v];
});
}
if (Array.isArray(value)) {
return value.map(interpolateEnvVars);
}
if (value && typeof value === "object") {
return Object.fromEntries(Object.entries(value).map(([k, v]) => [k, interpolateEnvVars(v)]));
}
return value;
}
export type ConfigValidationError = {
path: string;
message: string;
};
export type ParseConfigResult =
| { success: true; config: ImportConfig }
| { success: false; errors: ConfigValidationError[] };
/**
* Parse and validate import configuration using ArkType schema.
* Returns typed config on success or validation errors on failure.
*/
function parseImportConfig(configRaw: unknown): ParseConfigResult {
// Handle wrapped format: { config: { ... } }
const root = isRecord(configRaw) ? configRaw : {};
const configData = isRecord(root.config) ? root.config : root;
// Interpolate environment variables before validation
const interpolated = interpolateEnvVars(configData);
// Validate against ArkType schema
const result = importConfigSchema(interpolated);
if (result instanceof type.errors) {
const errors: ConfigValidationError[] = result.map((error) => ({
path: error.path.join(".") || "(root)",
message: error.message,
}));
return { success: false, errors };
}
return { success: true, config: result };
}
function mergeResults(target: ImportResult, source: ImportResult): void {
target.succeeded += source.succeeded;
target.skipped += source.skipped;
target.warnings += source.warnings;
target.errors += source.errors;
}
/**
* Check if the database has any records in the main tables.
* Used to prevent recovery key overwrite when data already exists.
*/
async function isDatabaseEmpty(): Promise<boolean> {
const [volumes, repositories, schedules, notifications, users] = await Promise.all([
db.select({ id: volumesTable.id }).from(volumesTable).limit(1),
db.select({ id: repositoriesTable.id }).from(repositoriesTable).limit(1),
db.select({ id: backupSchedulesTable.id }).from(backupSchedulesTable).limit(1),
db.select({ id: notificationDestinationsTable.id }).from(notificationDestinationsTable).limit(1),
db.select({ id: usersTable.id }).from(usersTable).limit(1),
]);
return (
volumes.length === 0 &&
repositories.length === 0 &&
schedules.length === 0 &&
notifications.length === 0 &&
users.length === 0
);
}
async function writeRecoveryKeyFromConfig(
recoveryKey: string | undefined,
overwriteRecoveryKey: boolean,
): Promise<ImportResult> {
const result: ImportResult = { succeeded: 0, skipped: 0, warnings: 0, errors: 0 };
try {
const { RESTIC_PASS_FILE } = await import("../../core/constants.js");
if (!recoveryKey) return result;
const passFileExists = await fs.stat(RESTIC_PASS_FILE).then(
() => true,
() => false,
);
if (passFileExists) {
// Check if existing key matches the one being imported
const existingKey = await fs.readFile(RESTIC_PASS_FILE, "utf-8");
if (existingKey.trim() === recoveryKey) {
logger.info("Recovery key already configured with matching value");
result.skipped++;
return result;
}
// Key exists with different value - check if overwrite is allowed
if (!overwriteRecoveryKey) {
logger.error("Recovery key already exists with different value; use --overwrite-recovery-key to replace");
result.errors++;
return result;
}
// Overwrite requested - verify database is empty for safety
const dbEmpty = await isDatabaseEmpty();
if (!dbEmpty) {
logger.error(
"Cannot overwrite recovery key: database contains existing records. " +
"Overwriting the recovery key would make existing backups unrecoverable.",
);
result.errors++;
return result;
}
// Safe to overwrite - database is empty
logger.warn("Overwriting existing recovery key (database is empty)");
}
await fs.writeFile(RESTIC_PASS_FILE, recoveryKey, { mode: 0o600 });
logger.info(`Recovery key written from config to ${RESTIC_PASS_FILE}`);
result.succeeded++;
} catch (err) {
logger.error(`Failed to write recovery key from config: ${toError(err).message}`);
result.errors++;
}
return result;
}
async function importVolumes(volumes: VolumeImport[]): Promise<ImportResult> {
const result: ImportResult = { succeeded: 0, skipped: 0, warnings: 0, errors: 0 };
// Get existing volumes to check for duplicates
const existingVolumes = await volumeService.listVolumes();
const existingNames = new Set(existingVolumes.map((v) => v.name));
for (const v of volumes) {
try {
// The service uses slugify to normalize the name, so we check against stored names
const slugifiedName = slugify(v.name, { lower: true, strict: true });
if (existingNames.has(slugifiedName)) {
logger.info(`Volume '${v.name}' already exists`);
result.skipped++;
continue;
}
// Pass shortId from config if provided (for IaC reproducibility)
await volumeService.createVolume(v.name, v.config as BackendConfig, v.shortId);
logger.info(`Initialized volume from config: ${v.name}`);
result.succeeded++;
// If autoRemount is explicitly false, update the volume (default is true)
if (v.autoRemount === false) {
await volumeService.updateVolume(v.name, { autoRemount: false });
logger.info(`Set autoRemount=false for volume: ${v.name}`);
}
} catch (e) {
logger.warn(`Volume '${v.name}' not created: ${toError(e).message}`);
result.warnings++;
}
}
return result;
}
async function importRepositories(repositories: RepositoryImport[]): Promise<ImportResult> {
const result: ImportResult = { succeeded: 0, skipped: 0, warnings: 0, errors: 0 };
const repoServiceModule = await import("../repositories/repositories.service");
const { buildRepoUrl, restic } = await import("../../utils/restic");
// Get existing repositories and build sets for duplicate detection
const existingRepos = await repoServiceModule.repositoriesService.listRepositories();
const existingNames = new Set(existingRepos.map((repo) => repo.name));
const existingUrls = new Set<string>();
for (const repo of existingRepos) {
try {
// Config fields used for URL (path, bucket, endpoint, etc.) are not encrypted
const url = buildRepoUrl(repo.config as RepositoryConfig);
existingUrls.add(url);
} catch (e) {
logger.warn(`Could not build URL for existing repository '${repo.name}': ${toError(e).message}`);
}
}
for (const r of repositories) {
try {
// Skip if a repository pointing to the same location is already registered in DB
try {
const incomingUrl = buildRepoUrl(r.config as RepositoryConfig);
if (existingUrls.has(incomingUrl)) {
logger.info(`Repository '${r.name}': another repository already registered for location ${incomingUrl}`);
result.skipped++;
continue;
}
} catch (e) {
logger.warn(`Could not build URL for '${r.name}' to check duplicates: ${toError(e).message}`);
}
// For repos without isExistingRepository, check if the location is already a restic repo
// This catches the case where user forgot to set isExistingRepository: true
if (!r.config.isExistingRepository) {
const isAlreadyRepo = await restic
.snapshots({ ...r.config, isExistingRepository: true } as RepositoryConfig)
.then(() => true)
.catch((e) => {
logger.debug(`Repo existence check for '${r.name}': ${toError(e).message}`);
return false;
});
if (isAlreadyRepo) {
logger.warn(
`Skipping '${r.name}': location is already a restic repository. ` +
`Set "isExistingRepository": true to import it, or use a different location for a new repository.`,
);
result.warnings++;
continue;
}
}
// Skip if a repository with the same name already exists (fallback for repos without deterministic paths)
// Repository names are stored trimmed
if (existingNames.has(r.name.trim())) {
logger.info(`Repository '${r.name}': a repository with this name already exists`);
result.skipped++;
continue;
}
await repoServiceModule.repositoriesService.createRepository(
r.name,
r.config as RepositoryConfig,
r.compressionMode,
r.shortId,
);
logger.info(`Initialized repository from config: ${r.name}`);
result.succeeded++;
} catch (e) {
logger.warn(`Repository '${r.name}' not created: ${toError(e).message}`);
result.warnings++;
}
}
return result;
}
async function importNotificationDestinations(
notificationDestinations: NotificationDestinationImport[],
): Promise<ImportResult> {
const result: ImportResult = { succeeded: 0, skipped: 0, warnings: 0, errors: 0 };
const notificationsServiceModule = await import("../notifications/notifications.service");
// Get existing destinations to check for duplicates
const existingDestinations = await notificationsServiceModule.notificationsService.listDestinations();
const existingNames = new Set(existingDestinations.map((d) => d.name));
for (const n of notificationDestinations) {
try {
// The service uses slugify to normalize the name, so we check against stored names
const slugifiedName = slugify(n.name, { lower: true, strict: true });
if (existingNames.has(slugifiedName)) {
logger.info(`Notification destination '${n.name}' already exists`);
result.skipped++;
continue;
}
const created = await notificationsServiceModule.notificationsService.createDestination(
n.name,
n.config as NotificationConfig,
);
logger.info(`Initialized notification destination from config: ${n.name}`);
result.succeeded++;
// If enabled is explicitly false, update the destination (default is true)
if (n.enabled === false) {
await notificationsServiceModule.notificationsService.updateDestination(created.id, { enabled: false });
logger.info(`Set enabled=false for notification destination: ${n.name}`);
}
} catch (e) {
logger.warn(`Notification destination '${n.name}' not created: ${toError(e).message}`);
result.warnings++;
}
}
return result;
}
type ScheduleNotificationAssignment = {
destinationId: number;
destinationName: string;
notifyOnStart: boolean;
notifyOnSuccess: boolean;
notifyOnWarning: boolean;
notifyOnFailure: boolean;
};
function buildScheduleNotificationAssignments(
scheduleName: string,
notifications: ScheduleNotificationImport[],
destinationBySlug: Map<string, { id: number; name: string }>,
): { assignments: ScheduleNotificationAssignment[]; warnings: number } {
const assignments: ScheduleNotificationAssignment[] = [];
let warnings = 0;
for (const notif of notifications) {
// Handle both string (name only) and object (with settings) formats
const destName = typeof notif === "string" ? notif : notif.name;
const destSlug = slugify(destName, { lower: true, strict: true });
const dest = destinationBySlug.get(destSlug);
if (!dest) {
logger.warn(`Notification destination '${destName}' not found for schedule '${scheduleName}'`);
warnings++;
continue;
}
assignments.push({
destinationId: dest.id,
destinationName: dest.name,
notifyOnStart: typeof notif === "object" && notif.notifyOnStart !== undefined ? notif.notifyOnStart : true,
notifyOnSuccess: typeof notif === "object" && notif.notifyOnSuccess !== undefined ? notif.notifyOnSuccess : true,
notifyOnWarning: typeof notif === "object" && notif.notifyOnWarning !== undefined ? notif.notifyOnWarning : true,
notifyOnFailure: typeof notif === "object" && notif.notifyOnFailure !== undefined ? notif.notifyOnFailure : true,
});
}
return { assignments, warnings };
}
async function attachScheduleNotifications(
scheduleId: number,
scheduleName: string,
notifications: ScheduleNotificationImport[],
destinationBySlug: Map<string, { id: number; name: string }>,
notificationsServiceModule: typeof import("../notifications/notifications.service"),
): Promise<ImportResult> {
const result: ImportResult = { succeeded: 0, skipped: 0, warnings: 0, errors: 0 };
try {
const existingNotifications =
await notificationsServiceModule.notificationsService.getScheduleNotifications(scheduleId);
const existingDestIds = new Set(existingNotifications.map((n) => n.destinationId));
const { assignments, warnings } = buildScheduleNotificationAssignments(
scheduleName,
notifications,
destinationBySlug,
);
result.warnings += warnings;
// Filter out already attached notifications and track skipped
const newAssignments: typeof assignments = [];
for (const a of assignments) {
if (existingDestIds.has(a.destinationId)) {
logger.info(`Notification '${a.destinationName}' already attached to schedule '${scheduleName}'`);
result.skipped++;
} else {
newAssignments.push(a);
}
}
if (newAssignments.length === 0) return result;
// Merge existing with new (strip destinationName for API call)
const mergedAssignments = [
...existingNotifications.map((n) => ({
destinationId: n.destinationId,
notifyOnStart: n.notifyOnStart,
notifyOnSuccess: n.notifyOnSuccess,
notifyOnWarning: n.notifyOnWarning,
notifyOnFailure: n.notifyOnFailure,
})),
...newAssignments.map(({ destinationName: _, ...rest }) => rest),
];
await notificationsServiceModule.notificationsService.updateScheduleNotifications(scheduleId, mergedAssignments);
const notifNames = newAssignments.map((a) => a.destinationName).join(", ");
logger.info(`Assigned notification(s) [${notifNames}] to schedule '${scheduleName}'`);
result.succeeded += newAssignments.length;
} catch (e) {
logger.warn(`Failed to assign notifications to schedule '${scheduleName}': ${toError(e).message}`);
result.warnings++;
}
return result;
}
async function importBackupSchedules(backupSchedules: BackupScheduleImport[]): Promise<ImportResult> {
const result: ImportResult = { succeeded: 0, skipped: 0, warnings: 0, errors: 0 };
if (backupSchedules.length === 0) return result;
const backupServiceModule = await import("../backups/backups.service");
const notificationsServiceModule = await import("../notifications/notifications.service");
const volumes = await db.query.volumesTable.findMany();
const repositories = await db.query.repositoriesTable.findMany();
const destinations = await db.query.notificationDestinationsTable.findMany();
const existingSchedules = await db.query.backupSchedulesTable.findMany();
const volumeByName = new Map(volumes.map((v) => [v.name, v] as const));
const repoByName = new Map(repositories.map((r) => [r.name, r] as const));
const destinationBySlug = new Map(destinations.map((d) => [d.name, d] as const));
const scheduleByName = new Map(existingSchedules.map((s) => [s.name, s] as const));
for (const s of backupSchedules) {
const volumeSlug = slugify(s.volume, { lower: true, strict: true });
const volume = volumeByName.get(volumeSlug);
if (!volume) {
logger.warn(`Backup schedule not processed: Volume '${s.volume}' not found`);
result.warnings++;
continue;
}
// Repository names are stored trimmed
const repository = repoByName.get(s.repository.trim());
if (!repository) {
logger.warn(`Backup schedule not processed: Repository '${s.repository}' not found`);
result.warnings++;
continue;
}
const scheduleName = s.name && s.name.length > 0 ? s.name : `${s.volume}-${s.repository}`;
// Check if schedule already exists - if so, skip creation but still try attachments
const existingSchedule = scheduleByName.get(scheduleName);
let scheduleId: number;
if (existingSchedule) {
logger.info(`Backup schedule '${scheduleName}' already exists`);
result.skipped++;
scheduleId = existingSchedule.id;
} else {
// Mount volume if needed for new schedule
if (volume.status !== "mounted") {
try {
await volumeService.mountVolume(volume.name);
volumeByName.set(volume.name, { ...volume, status: "mounted" });
logger.info(`Mounted volume ${volume.name} for backup schedule`);
} catch (e) {
logger.warn(`Could not mount volume ${volume.name}: ${toError(e).message}`);
result.warnings++;
continue;
}
}
try {
const createdSchedule = await backupServiceModule.backupsService.createSchedule(
{
name: scheduleName,
volumeId: volume.id,
repositoryId: repository.id,
enabled: s.enabled ?? true,
cronExpression: s.cronExpression,
retentionPolicy: s.retentionPolicy ?? undefined, // null -> undefined
excludePatterns: s.excludePatterns ?? [],
excludeIfPresent: s.excludeIfPresent ?? [],
includePatterns: s.includePatterns ?? [],
oneFileSystem: s.oneFileSystem,
},
s.shortId,
);
logger.info(`Initialized backup schedule from config: ${scheduleName}`);
result.succeeded++;
scheduleId = createdSchedule.id;
} catch (e) {
logger.warn(`Backup schedule '${scheduleName}' not created: ${toError(e).message}`);
result.warnings++;
continue;
}
}
// Attach notifications (checks if already attached)
if (Array.isArray(s.notifications) && s.notifications.length > 0) {
const notifResult = await attachScheduleNotifications(
scheduleId,
scheduleName,
s.notifications,
destinationBySlug,
notificationsServiceModule,
);
mergeResults(result, notifResult);
}
// Attach mirrors (checks if already attached)
if (Array.isArray(s.mirrors) && s.mirrors.length > 0) {
const mirrorResult = await attachScheduleMirrors(
scheduleId,
scheduleName,
s.mirrors,
repoByName,
backupServiceModule,
);
mergeResults(result, mirrorResult);
}
}
return result;
}
async function attachScheduleMirrors(
scheduleId: number,
scheduleName: string,
mirrors: ScheduleMirrorImport[],
repoByName: Map<string, { id: string; name: string; config: RepositoryConfig }>,
backupServiceModule: typeof import("../backups/backups.service"),
): Promise<ImportResult> {
const result: ImportResult = { succeeded: 0, skipped: 0, warnings: 0, errors: 0 };
try {
const existingMirrors = await backupServiceModule.backupsService.getMirrors(scheduleId);
const existingRepoIds = new Set(existingMirrors.map((m) => m.repositoryId));
const mirrorConfigs: Array<{
repositoryId: string;
repositoryName: string;
enabled: boolean;
}> = [];
for (const m of mirrors) {
// Schema ensures repository is a non-empty string
const repo = repoByName.get(m.repository.trim());
if (!repo) {
logger.warn(`Mirror repository '${m.repository}' not found for schedule '${scheduleName}'`);
result.warnings++;
continue;
}
mirrorConfigs.push({
repositoryId: repo.id,
repositoryName: m.repository,
enabled: m.enabled ?? true,
});
}
// Filter out already attached mirrors and track skipped
const newMirrors: typeof mirrorConfigs = [];
for (const m of mirrorConfigs) {
if (existingRepoIds.has(m.repositoryId)) {
logger.info(`Mirror '${m.repositoryName}' already attached to schedule '${scheduleName}'`);
result.skipped++;
} else {
newMirrors.push(m);
}
}
if (newMirrors.length === 0) return result;
// Merge existing with new (strip repositoryName for API call)
const mergedMirrors = [
...existingMirrors.map((m) => ({
repositoryId: m.repositoryId,
enabled: m.enabled,
})),
...newMirrors.map(({ repositoryName: _, ...rest }) => rest),
];
await backupServiceModule.backupsService.updateMirrors(scheduleId, { mirrors: mergedMirrors });
const mirrorNames = newMirrors.map((m) => m.repositoryName).join(", ");
logger.info(`Assigned mirror(s) [${mirrorNames}] to schedule '${scheduleName}'`);
result.succeeded += newMirrors.length;
} catch (e) {
logger.warn(`Failed to assign mirrors to schedule '${scheduleName}': ${toError(e).message}`);
result.warnings++;
}
return result;
}
async function importUsers(users: UserImport[], recoveryKey: string | undefined): Promise<ImportResult> {
const result: ImportResult = { succeeded: 0, skipped: 0, warnings: 0, errors: 0 };
try {
const { authService } = await import("../auth/auth.service");
const hasUsers = await authService.hasUsers();
if (hasUsers) {
if (users.length > 0) {
logger.info("Users already exist; skipping user import from config");
result.skipped++;
}
return result;
}
if (users.length === 0) return result;
if (users.length > 1) {
logger.warn(
"Multiple users provided in config. Zerobyte currently supports a single initial user; extra entries will be ignored.",
);
result.warnings++;
}
for (const u of users) {
if (u.passwordHash) {
try {
await db.insert(usersTable).values({
username: u.username,
passwordHash: u.passwordHash,
hasDownloadedResticPassword: u.hasDownloadedResticPassword ?? Boolean(recoveryKey),
});
logger.info(`User '${u.username}' imported with password hash from config.`);
result.succeeded++;
break;
} catch (error) {
const err = error instanceof Error ? error : new Error(String(error));
logger.warn(`User '${u.username}' not imported: ${err.message}`);
result.warnings++;
}
continue;
}
if (u.password) {
try {
const { user } = await authService.register(u.username, u.password);
const hasDownloadedResticPassword = u.hasDownloadedResticPassword ?? Boolean(recoveryKey);
if (hasDownloadedResticPassword) {
await db.update(usersTable).set({ hasDownloadedResticPassword }).where(eq(usersTable.id, user.id));
}
logger.info(`User '${u.username}' created from config.`);
result.succeeded++;
break;
} catch (error) {
const err = error instanceof Error ? error : new Error(String(error));
logger.warn(`User '${u.username}' not created: ${err.message}`);
result.warnings++;
}
continue;
}
logger.warn(`User '${u.username}' missing passwordHash/password; skipping`);
result.warnings++;
}
} catch (err) {
const e = err instanceof Error ? err : new Error(String(err));
logger.error(`Automated user setup failed: ${e.message}`);
result.errors++;
}
return result;
}
type ImportOptions = {
overwriteRecoveryKey?: boolean;
};
async function runImport(config: ImportConfig, options: ImportOptions = {}): Promise<ImportResult> {
const result: ImportResult = { succeeded: 0, skipped: 0, warnings: 0, errors: 0 };
mergeResults(result, await writeRecoveryKeyFromConfig(config.recoveryKey, options.overwriteRecoveryKey ?? false));
// Stop immediately if recovery key has errors (e.g., mismatch with existing key)
if (result.errors > 0) {
return result;
}
mergeResults(result, await importVolumes(config.volumes ?? []));
mergeResults(result, await importRepositories(config.repositories ?? []));
mergeResults(result, await importNotificationDestinations(config.notificationDestinations ?? []));
mergeResults(result, await importBackupSchedules(config.backupSchedules ?? []));
mergeResults(result, await importUsers(config.users ?? [], config.recoveryKey));
return result;
}
function logImportSummary(result: ImportResult): void {
const skippedMsg = result.skipped > 0 ? `, ${result.skipped} skipped` : "";
if (result.errors > 0) {
logger.error(
`Config import completed with ${result.errors} error(s) and ${result.warnings} warning(s), ${result.succeeded} imported${skippedMsg}`,
);
} else if (result.warnings > 0) {
logger.warn(
`Config import completed with ${result.warnings} warning(s), ${result.succeeded} imported${skippedMsg}`,
);
} else if (result.succeeded > 0 || result.skipped > 0) {
logger.info(`Config import completed: ${result.succeeded} imported${skippedMsg}`);
} else {
logger.info("Config import completed: no items to import");
}
}
export type ApplyConfigResult =
| { success: true; result: ImportResult }
| { success: false; validationErrors: ConfigValidationError[] };
/**
* Import configuration from a raw config object (used by CLI)
* Returns validation errors upfront if the config doesn't match the schema.
*/
export async function applyConfigImport(configRaw: unknown, options: ImportOptions = {}): Promise<ApplyConfigResult> {
logger.info("Starting config import...");
const parseResult = parseImportConfig(configRaw);
if (!parseResult.success) {
for (const error of parseResult.errors) {
logger.error(`Validation error at ${error.path}: ${error.message}`);
}
return { success: false, validationErrors: parseResult.errors };
}
const result = await runImport(parseResult.config, options);
logImportSummary(result);
return { success: true, result };
}
/**
* Validate configuration without importing (used by CLI --dry-run)
* Returns validation errors if the config doesn't match the schema.
*/
export function validateConfig(configRaw: unknown): ParseConfigResult {
return parseImportConfig(configRaw);
}