bokoworker.go 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package bokoworker
  2. import (
  3. "path/filepath"
  4. "strings"
  5. "imuslab.com/bokofs/bokofsd/mod/bokofs/bokofile"
  6. )
  7. /*
  8. Boko Worker
  9. A boko worker is an instance of WebDAV file server that serves a specific
  10. disk partition or subpath in which the user can interact with the disk
  11. via WebDAV interface
  12. */
  13. type Worker struct {
  14. /* Worker Properties */
  15. RootPath string //The root path (also act as ID) request by this worker, e.g. /disk1
  16. DiskUUID string // Disk UUID, when provided, will be used instead of disk path
  17. DiskPath string // Disk device path (e.g. /dev/sda1), Disk UUID will have higher priority
  18. Subpath string // Subpath to serve, default is root
  19. ReadOnly bool //Label this worker as read only
  20. AutoMount bool //Automatically mount the disk if not mounted
  21. /* Private Properties */
  22. Filesystem *bokofile.RouterDir
  23. }
  24. // NewWorker Generate and return a webdav node that mounts a given path
  25. func NewWorker(nodeName string, mountPath string) (*Worker, error) {
  26. if !strings.HasPrefix(nodeName, "/") {
  27. nodeName = "/" + nodeName
  28. }
  29. mountPath, _ = filepath.Abs(mountPath)
  30. fs, err := bokofile.CreateRouterFromDir(mountPath, nodeName, false)
  31. if err != nil {
  32. return nil, err
  33. }
  34. return &Worker{
  35. RootPath: nodeName,
  36. DiskUUID: "",
  37. DiskPath: "",
  38. Subpath: mountPath,
  39. ReadOnly: false,
  40. AutoMount: false,
  41. Filesystem: fs,
  42. }, nil
  43. }
  44. /*
  45. func GetWorkerFromConfig(configFilePath string) (*Worker, error) {
  46. randomRootPath := uuid.New().String()
  47. thisWorker, _ := NewWorker("/" + randomRootPath)
  48. configFile, err := os.ReadFile(configFilePath)
  49. if err != nil {
  50. return nil, err
  51. }
  52. //parse the config file into thisWorker
  53. err = json.Unmarshal(configFile, &thisWorker)
  54. if err != nil {
  55. return nil, err
  56. }
  57. //TODO: Start the worker
  58. return thisWorker, nil
  59. }
  60. */