import type { BackendStatus } from "~/schemas/volumes"; import type { Volume } from "../../db/schema"; import { getVolumePath } from "../volumes/helpers"; import { makeDirectoryBackend } from "./directory/directory-backend"; import { makeNfsBackend } from "./nfs/nfs-backend"; import { makeSmbBackend } from "./smb/smb-backend"; import { makeWebdavBackend } from "./webdav/webdav-backend"; type OperationResult = { error?: string; status: BackendStatus; }; export type VolumeBackend = { mount: () => Promise; unmount: () => Promise; checkHealth: () => Promise; }; export const createVolumeBackend = (volume: Volume): VolumeBackend => { const path = getVolumePath(volume); switch (volume.config.backend) { case "nfs": { return makeNfsBackend(volume.config, path); } case "smb": { return makeSmbBackend(volume.config, path); } case "directory": { return makeDirectoryBackend(volume.config, path); } case "webdav": { return makeWebdavBackend(volume.config, path); } } };