Files
zerobyte/app/server/modules/backups/backups.service.ts
Nico 33601dde24 feat(agent): add standalone agent runtime (#776)
* feat(agent): add standalone agent runtime

* fix(agent): add Bun and DOM types to agent tsconfig

* refactor: wrap backup error in a tagged effect error

* feat(controller): add agent manager and session handling

* feat(backups): execute backups through the agent

* fix(agent): harden disconnect and send-failure handling

* fix: rebase conflicts

* test: simplify mocks

* refactor: split agent runtime state

* fix(backup): keep old path when agent is disabled

* fix: pr feedbacks
2026-04-13 23:29:10 +02:00

491 lines
15 KiB
TypeScript

import { and, eq, inArray } from "drizzle-orm";
import { NotFoundError, BadRequestError, ConflictError } from "http-errors-enhanced";
import { logger } from "@zerobyte/core/node";
import { checkMirrorCompatibility, getIncompatibleMirrorError } from "~/server/utils/backend-compatibility";
import { generateShortId } from "~/server/utils/id";
import { getOrganizationId } from "~/server/core/request-context";
import { asShortId, type ShortId } from "~/server/utils/branded";
import { validateCustomResticParams } from "@zerobyte/core/restic/server";
import { db } from "../../db/db";
import { backupScheduleMirrorsTable, backupScheduleNotificationsTable, backupSchedulesTable } from "../../db/schema";
import { cache, cacheKeys } from "../../utils/cache";
import { repoMutex } from "../../core/repository-mutex";
import { backupExecutor } from "./backup-executor";
import { calculateNextRun, isValidCron } from "./backup.helpers";
import { scheduleQueries } from "./backups.queries";
import type { CreateBackupScheduleBody, UpdateBackupScheduleBody, UpdateScheduleMirrorsBody } from "./backups.dto";
import {
emitBackupStarted,
finalizeSuccessfulBackup,
getBackupProgress,
handleBackupCancellation,
handleBackupFailure,
handleValidationResult,
updateBackupProgress,
validateBackupExecution,
} from "./helpers/backup-lifecycle";
import { getScheduleByIdOrShortId } from "./helpers/backup-schedule-lookups";
import { copyToMirrors, runForget } from "./helpers/backup-maintenance";
const listSchedules = async () => {
const organizationId = getOrganizationId();
const schedules = await db.query.backupSchedulesTable.findMany({
where: { organizationId },
with: { volume: true, repository: true },
orderBy: { sortOrder: "asc", id: "asc" },
});
return schedules.filter((schedule) => schedule.volume && schedule.repository);
};
const createSchedule = async (data: CreateBackupScheduleBody) => {
const organizationId = getOrganizationId();
if (data.cronExpression && !isValidCron(data.cronExpression)) {
throw new BadRequestError("Invalid cron expression");
}
if (data.enabled && !data.cronExpression) {
throw new BadRequestError("Enabled schedules require a cron expression");
}
const existingName = await db.query.backupSchedulesTable.findFirst({
where: {
AND: [{ name: data.name }, { organizationId }],
},
});
if (existingName) {
throw new ConflictError("A backup schedule with this name already exists");
}
const volume = await db.query.volumesTable.findFirst({
where: {
AND: [
{ OR: [{ id: Number(data.volumeId) }, { shortId: { eq: asShortId(String(data.volumeId)) } }] },
{ organizationId },
],
},
});
if (!volume) {
throw new NotFoundError("Volume not found");
}
const repository = await db.query.repositoriesTable.findFirst({
where: {
AND: [{ OR: [{ id: data.repositoryId }, { shortId: { eq: asShortId(data.repositoryId) } }] }, { organizationId }],
},
});
if (!repository) {
throw new NotFoundError("Repository not found");
}
if (data.customResticParams && data.customResticParams.length > 0) {
const paramError = validateCustomResticParams(data.customResticParams);
if (paramError) throw new BadRequestError(paramError);
}
const nextBackupAt = data.cronExpression ? calculateNextRun(data.cronExpression) : null;
const [newSchedule] = await db
.insert(backupSchedulesTable)
.values({
name: data.name,
volumeId: volume.id,
repositoryId: repository.id,
enabled: data.enabled,
cronExpression: data.cronExpression,
retentionPolicy: data.retentionPolicy ?? null,
excludePatterns: data.excludePatterns ?? [],
excludeIfPresent: data.excludeIfPresent ?? [],
includePaths: data.includePaths ?? [],
includePatterns: data.includePatterns ?? [],
oneFileSystem: data.oneFileSystem,
customResticParams: data.customResticParams ?? [],
nextBackupAt: nextBackupAt,
shortId: generateShortId(),
maxRetries: data.maxRetries,
retryDelay: data.retryDelay,
organizationId,
})
.returning();
if (!newSchedule) {
throw new Error("Failed to create backup schedule");
}
return newSchedule;
};
const updateSchedule = async (scheduleIdOrShortId: number | string, data: UpdateBackupScheduleBody) => {
const organizationId = getOrganizationId();
const schedule = await getScheduleByIdOrShortId(scheduleIdOrShortId);
if (data.cronExpression && !isValidCron(data.cronExpression)) {
throw new BadRequestError("Invalid cron expression");
}
if ((data.enabled ?? schedule.enabled) && data.cronExpression === "") {
throw new BadRequestError("Enabled schedules require a cron expression");
}
if (data.customResticParams && data.customResticParams.length > 0) {
const paramError = validateCustomResticParams(data.customResticParams);
if (paramError) throw new BadRequestError(paramError);
}
if (data.name) {
const existingName = await db.query.backupSchedulesTable.findFirst({
where: {
AND: [{ name: data.name }, { NOT: { id: schedule.id } }, { organizationId }],
},
});
if (existingName) {
throw new ConflictError("A backup schedule with this name already exists");
}
}
const repository = await db.query.repositoriesTable.findFirst({
where: {
AND: [{ OR: [{ id: data.repositoryId }, { shortId: { eq: asShortId(data.repositoryId) } }] }, { organizationId }],
},
});
if (!repository) {
throw new NotFoundError("Repository not found");
}
const cronExpression = data.cronExpression ?? schedule.cronExpression;
const nextBackupAt =
data.cronExpression === "" ? null : data.cronExpression ? calculateNextRun(cronExpression) : schedule.nextBackupAt;
const [updated] = await db
.update(backupSchedulesTable)
.set({ ...data, repositoryId: repository.id, nextBackupAt, updatedAt: Date.now() })
.where(and(eq(backupSchedulesTable.id, schedule.id), eq(backupSchedulesTable.organizationId, organizationId)))
.returning();
if (!updated) {
throw new Error("Failed to update backup schedule");
}
return updated;
};
const deleteSchedule = async (scheduleIdOrShortId: number | string) => {
const organizationId = getOrganizationId();
const schedule = await getScheduleByIdOrShortId(scheduleIdOrShortId);
await db
.delete(backupSchedulesTable)
.where(and(eq(backupSchedulesTable.id, schedule.id), eq(backupSchedulesTable.organizationId, organizationId)));
};
const getScheduleForVolume = async (volumeIdOrShortId: number | string) => {
const organizationId = getOrganizationId();
const volume = await db.query.volumesTable.findFirst({
where: {
AND: [
{ OR: [{ id: Number(volumeIdOrShortId) }, { shortId: { eq: asShortId(String(volumeIdOrShortId)) } }] },
{ organizationId },
],
},
columns: { id: true },
});
if (!volume) {
return null;
}
const schedule = await db.query.backupSchedulesTable.findFirst({
where: {
AND: [{ volumeId: volume.id }, { organizationId }],
},
with: { volume: true, repository: true },
});
if (schedule && (!schedule.volume || !schedule.repository)) {
return null;
}
return schedule ?? null;
};
const getMirrors = async (scheduleIdOrShortId: number | string) => {
const schedule = await getScheduleByIdOrShortId(scheduleIdOrShortId);
const mirrors = await db.query.backupScheduleMirrorsTable.findMany({
where: {
scheduleId: schedule.id,
},
with: { repository: true },
});
return mirrors.map((mirror) => ({
id: mirror.id,
scheduleId: schedule.shortId,
repositoryId: mirror.repository.shortId,
enabled: mirror.enabled,
lastCopyAt: mirror.lastCopyAt,
lastCopyStatus: mirror.lastCopyStatus,
lastCopyError: mirror.lastCopyError,
createdAt: mirror.createdAt,
repository: mirror.repository,
}));
};
const updateMirrors = async (scheduleIdOrShortId: number | string, data: UpdateScheduleMirrorsBody) => {
const organizationId = getOrganizationId();
const schedule = await getScheduleByIdOrShortId(scheduleIdOrShortId);
const normalizedMirrors = await Promise.all(
data.mirrors.map(async (mirror) => {
const repo = await db.query.repositoriesTable.findFirst({
where: {
AND: [
{ OR: [{ id: mirror.repositoryId }, { shortId: { eq: asShortId(mirror.repositoryId) } }] },
{ organizationId },
],
},
});
if (!repo) {
throw new NotFoundError(`Repository ${mirror.repositoryId} not found`);
}
if (repo.id === schedule.repositoryId) {
throw new BadRequestError("Cannot add the primary repository as a mirror");
}
const compatibility = await checkMirrorCompatibility(schedule.repository.config, repo.config, repo.id);
if (!compatibility.compatible) {
throw new BadRequestError(
getIncompatibleMirrorError(repo.name, schedule.repository.config.backend, repo.config.backend),
);
}
return { repositoryId: repo.id, enabled: mirror.enabled };
}),
);
const existingMirrors = await db.query.backupScheduleMirrorsTable.findMany({
where: { scheduleId: schedule.id },
});
const existingMirrorsMap = new Map(
existingMirrors.map((m) => [
m.repositoryId,
{ lastCopyAt: m.lastCopyAt, lastCopyStatus: m.lastCopyStatus, lastCopyError: m.lastCopyError },
]),
);
await db.delete(backupScheduleMirrorsTable).where(eq(backupScheduleMirrorsTable.scheduleId, schedule.id));
if (normalizedMirrors.length > 0) {
await db.insert(backupScheduleMirrorsTable).values(
normalizedMirrors.map((mirror) => {
const existing = existingMirrorsMap.get(mirror.repositoryId);
return {
scheduleId: schedule.id,
repositoryId: mirror.repositoryId,
enabled: mirror.enabled,
lastCopyAt: existing?.lastCopyAt ?? null,
lastCopyStatus: existing?.lastCopyStatus ?? null,
lastCopyError: existing?.lastCopyError ?? null,
};
}),
);
}
return getMirrors(schedule.id);
};
const getMirrorCompatibility = async (scheduleIdOrShortId: number | string) => {
const organizationId = getOrganizationId();
const schedule = await getScheduleByIdOrShortId(scheduleIdOrShortId);
const allRepositories = await db.query.repositoriesTable.findMany({ where: { organizationId } });
const repos = allRepositories.filter((repo) => repo.id !== schedule.repositoryId);
const compatibility = await Promise.all(
repos.map((repo) => checkMirrorCompatibility(schedule.repository.config, repo.config, repo.shortId)),
);
return compatibility;
};
const reorderSchedules = async (scheduleShortIds: ShortId[]) => {
const organizationId = getOrganizationId();
const uniqueIds = new Set(scheduleShortIds);
if (uniqueIds.size !== scheduleShortIds.length) {
throw new BadRequestError("Duplicate schedule IDs in reorder request");
}
const existingSchedules = await db.query.backupSchedulesTable.findMany({
where: { organizationId },
columns: { id: true, shortId: true },
});
const shortIdToId = new Map(existingSchedules.map((s) => [s.shortId, s.id]));
const scheduleIds: number[] = [];
for (const shortId of scheduleShortIds) {
const id = shortIdToId.get(shortId);
if (id === undefined) {
throw new NotFoundError(`Backup schedule with short ID ${shortId} not found`);
}
scheduleIds.push(id);
}
db.transaction((tx) => {
const now = Date.now();
for (const [index, scheduleId] of scheduleIds.entries()) {
tx.update(backupSchedulesTable)
.set({ sortOrder: index, updatedAt: now })
.where(and(eq(backupSchedulesTable.id, scheduleId), eq(backupSchedulesTable.organizationId, organizationId)))
.run();
}
});
};
const cleanupOrphanedSchedules = async () => {
const schedules = await db.query.backupSchedulesTable.findMany({
with: { volume: true, repository: true },
columns: { id: true },
});
const orphanScheduleIds = schedules
.filter((schedule) => schedule.volume === null || schedule.repository === null)
.map((schedule) => schedule.id);
if (orphanScheduleIds.length === 0) {
return { deletedSchedules: 0 };
}
db.transaction((tx) => {
tx.delete(backupScheduleNotificationsTable)
.where(inArray(backupScheduleNotificationsTable.scheduleId, orphanScheduleIds))
.run();
tx.delete(backupScheduleMirrorsTable)
.where(inArray(backupScheduleMirrorsTable.scheduleId, orphanScheduleIds))
.run();
tx.delete(backupSchedulesTable).where(inArray(backupSchedulesTable.id, orphanScheduleIds)).run();
});
return { deletedSchedules: orphanScheduleIds.length };
};
const executeBackup = async (scheduleId: number, manual = false) => {
const result = await validateBackupExecution(scheduleId, manual);
if (result.type !== "success") {
return handleValidationResult(scheduleId, result, manual);
}
const { context: ctx } = result;
cache.del(cacheKeys.backup.progress(scheduleId));
emitBackupStarted(ctx, scheduleId);
await scheduleQueries.updateStatus(scheduleId, ctx.organizationId, {
lastBackupStatus: "in_progress",
lastBackupError: null,
...(ctx.schedule.cronExpression ? { nextBackupAt: calculateNextRun(ctx.schedule.cronExpression) } : {}),
});
const abortController = backupExecutor.track(scheduleId);
try {
const releaseLock = await repoMutex.acquireShared(
ctx.repository.id,
`backup:${ctx.volume.name}`,
abortController.signal,
);
try {
const executionResult = await backupExecutor.execute({
scheduleId,
schedule: ctx.schedule,
volume: ctx.volume,
repository: ctx.repository,
organizationId: ctx.organizationId,
signal: abortController.signal,
onProgress: (progress) => {
updateBackupProgress(ctx, progress);
},
});
switch (executionResult.status) {
case "unavailable":
return handleBackupFailure(scheduleId, ctx.organizationId, executionResult.error, manual, ctx);
case "completed":
return finalizeSuccessfulBackup(
ctx,
executionResult.exitCode,
executionResult.result,
executionResult.warningDetails,
);
case "failed":
return handleBackupFailure(scheduleId, ctx.organizationId, executionResult.error, manual, ctx);
case "cancelled":
return handleBackupCancellation(scheduleId, ctx.organizationId, executionResult.message);
}
} finally {
releaseLock();
}
} catch (error) {
if (abortController.signal.aborted) {
return;
}
return handleBackupFailure(scheduleId, ctx.organizationId, error, manual, ctx);
} finally {
backupExecutor.untrack(scheduleId, abortController);
cache.del(cacheKeys.backup.progress(scheduleId));
}
};
const getSchedulesToExecute = async () => {
const organizationId = getOrganizationId();
return scheduleQueries.findExecutable(organizationId);
};
const stopBackup = async (scheduleId: number) => {
const organizationId = getOrganizationId();
const schedule = await scheduleQueries.findById(scheduleId, organizationId);
if (!schedule) {
throw new NotFoundError("Backup schedule not found");
}
try {
if (!(await backupExecutor.cancel(scheduleId))) {
throw new ConflictError("No backup is currently running for this schedule");
}
logger.info(`Stopping backup for schedule ${scheduleId}`);
} finally {
await handleBackupCancellation(scheduleId, organizationId, undefined, false);
}
};
export const backupsService = {
listSchedules,
createSchedule,
updateSchedule,
deleteSchedule,
getScheduleForVolume,
getMirrors,
updateMirrors,
getMirrorCompatibility,
reorderSchedules,
cleanupOrphanedSchedules,
getBackupProgress,
validateBackupExecution,
executeBackup,
getSchedulesToExecute,
stopBackup,
runForget,
copyToMirrors,
};