mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import type { BackendStatus } from "@ironmount/schemas";
|
|
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<OperationResult>;
|
|
unmount: () => Promise<OperationResult>;
|
|
checkHealth: () => Promise<OperationResult>;
|
|
};
|
|
|
|
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);
|
|
}
|
|
}
|
|
};
|