| | import type { BackupSchedule } from "@dokploy/server/services/backup"; |
| | import { |
| | createDeploymentBackup, |
| | updateDeploymentStatus, |
| | } from "@dokploy/server/services/deployment"; |
| | import type { Mariadb } from "@dokploy/server/services/mariadb"; |
| | import { findProjectById } from "@dokploy/server/services/project"; |
| | import { sendDatabaseBackupNotifications } from "../notifications/database-backup"; |
| | import { execAsync, execAsyncRemote } from "../process/execAsync"; |
| | import { getBackupCommand, getS3Credentials, normalizeS3Path } from "./utils"; |
| |
|
| | export const runMariadbBackup = async ( |
| | mariadb: Mariadb, |
| | backup: BackupSchedule, |
| | ) => { |
| | const { projectId, name } = mariadb; |
| | const project = await findProjectById(projectId); |
| | const { prefix } = backup; |
| | const destination = backup.destination; |
| | const backupFileName = `${new Date().toISOString()}.sql.gz`; |
| | const bucketDestination = `${normalizeS3Path(prefix)}${backupFileName}`; |
| | const deployment = await createDeploymentBackup({ |
| | backupId: backup.backupId, |
| | title: "MariaDB Backup", |
| | description: "MariaDB Backup", |
| | }); |
| | try { |
| | const rcloneFlags = getS3Credentials(destination); |
| | const rcloneDestination = `:s3:${destination.bucket}/${bucketDestination}`; |
| | const rcloneCommand = `rclone rcat ${rcloneFlags.join(" ")} "${rcloneDestination}"`; |
| |
|
| | const backupCommand = getBackupCommand( |
| | backup, |
| | rcloneCommand, |
| | deployment.logPath, |
| | ); |
| | if (mariadb.serverId) { |
| | await execAsyncRemote(mariadb.serverId, backupCommand); |
| | } else { |
| | await execAsync(backupCommand, { |
| | shell: "/bin/bash", |
| | }); |
| | } |
| |
|
| | await sendDatabaseBackupNotifications({ |
| | applicationName: name, |
| | projectName: project.name, |
| | databaseType: "mariadb", |
| | type: "success", |
| | organizationId: project.organizationId, |
| | }); |
| | await updateDeploymentStatus(deployment.deploymentId, "done"); |
| | } catch (error) { |
| | console.log(error); |
| | await sendDatabaseBackupNotifications({ |
| | applicationName: name, |
| | projectName: project.name, |
| | databaseType: "mariadb", |
| | type: "error", |
| | |
| | errorMessage: error?.message || "Error message not provided", |
| | organizationId: project.organizationId, |
| | }); |
| | await updateDeploymentStatus(deployment.deploymentId, "error"); |
| | throw error; |
| | } |
| | }; |
| |
|