router.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. package bokofs
  2. import (
  3. "context"
  4. "fmt"
  5. "os"
  6. "path/filepath"
  7. "strings"
  8. "time"
  9. "golang.org/x/net/webdav"
  10. "imuslab.com/bokofs/bokofsd/mod/bokofs/bokoworker"
  11. )
  12. type RootRouter struct {
  13. pathPrefix string
  14. parent *Server
  15. }
  16. // InitiateRootRouter create and prepare a virtual root file system for
  17. // this bokoFS instance
  18. func (s *Server) InitiateRootRouter() error {
  19. s.RootRouter = &RootRouter{
  20. pathPrefix: s.prefix,
  21. parent: s,
  22. }
  23. return nil
  24. }
  25. // fixpath fix the path to be relative to the root path of this router
  26. func (r *RootRouter) fixpath(name string) string {
  27. if name == r.pathPrefix || name == "" {
  28. return "/"
  29. }
  30. //Trim off the prefix path
  31. name = strings.TrimPrefix(name, r.pathPrefix)
  32. if !strings.HasPrefix(name, "/") {
  33. name = "/" + name
  34. }
  35. return name
  36. }
  37. func (r *RootRouter) GetRootDir(name string) string {
  38. if name == "" || name == "/" {
  39. return "/"
  40. }
  41. name = filepath.ToSlash(filepath.Clean(name))
  42. pathChunks := strings.Split(name, "/")
  43. reqRootPath := "/" + pathChunks[1]
  44. fmt.Println("Requesting Root Path: ", reqRootPath)
  45. name = strings.TrimSuffix(reqRootPath, "/")
  46. return name
  47. }
  48. func (r *RootRouter) GetWorkerByPath(name string) (*bokoworker.Worker, error) {
  49. reqRootPath := r.GetRootDir(name)
  50. targetWorker, ok := r.parent.LoadedWorkers.Load(reqRootPath)
  51. if !ok {
  52. return nil, os.ErrNotExist
  53. }
  54. return targetWorker.(*bokoworker.Worker), nil
  55. }
  56. func (r *RootRouter) Mkdir(ctx context.Context, name string, perm os.FileMode) error {
  57. // Implement the Mkdir method
  58. name = r.fixpath(name)
  59. fmt.Println("Mkdir called to " + name)
  60. return nil
  61. }
  62. func (r *RootRouter) OpenFile(ctx context.Context, name string, flag int, perm os.FileMode) (webdav.File, error) {
  63. // Implement the OpenFile method
  64. name = r.fixpath(name)
  65. fmt.Println("OpenFile called to " + name)
  66. if filepath.ToSlash(filepath.Base(name)) == "/" {
  67. //Request to the vObject base path
  68. thisVirtualObject := r.newVirtualObject(&vObjectProperties{
  69. name: name,
  70. size: 0,
  71. mode: os.ModeDir,
  72. modTime: time.Now(),
  73. isDir: true,
  74. })
  75. return thisVirtualObject, nil
  76. }
  77. targetWorker, err := r.GetWorkerByPath(name)
  78. if err != nil {
  79. return nil, err
  80. }
  81. return targetWorker.Filesystem.OpenFile(ctx, name, flag, perm)
  82. }
  83. func (r *RootRouter) RemoveAll(ctx context.Context, name string) error {
  84. // Implement the RemoveAll method
  85. name = r.fixpath(name)
  86. fmt.Println("RemoveAll called to " + name)
  87. return nil
  88. }
  89. func (r *RootRouter) Rename(ctx context.Context, oldName, newName string) error {
  90. // Implement the Rename method
  91. oldName = r.fixpath(oldName)
  92. newName = r.fixpath(newName)
  93. fmt.Println("Rename called from " + oldName + " to " + newName)
  94. return nil
  95. }
  96. func (r *RootRouter) Stat(ctx context.Context, name string) (os.FileInfo, error) {
  97. // Implement the Stat method
  98. name = r.fixpath(name)
  99. fmt.Println("Stat called to " + name)
  100. if filepath.ToSlash(filepath.Base(name)) == "/" {
  101. //Create an emulated file system to serve the mounted workers
  102. thisVirtualObject := r.newVirtualObject(&vObjectProperties{
  103. name: name,
  104. size: 0,
  105. mode: os.ModeDir,
  106. modTime: time.Now(),
  107. isDir: true,
  108. })
  109. thisVirtualObjectFileInfo := thisVirtualObject.GetFileInfo()
  110. return thisVirtualObjectFileInfo, nil
  111. }
  112. //Load the target worker from the path
  113. targetWorker, err := r.GetWorkerByPath(name)
  114. fmt.Println("Target Worker: ", targetWorker, name)
  115. if err != nil {
  116. return nil, err
  117. }
  118. return targetWorker.Filesystem.Stat(ctx, name)
  119. }
  120. // Ensure RootRouter implements the FileSystem interface
  121. var _ webdav.FileSystem = (*RootRouter)(nil)