router.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package webdav
  2. import (
  3. "context"
  4. "fmt"
  5. "os"
  6. "golang.org/x/net/webdav"
  7. "imuslab.com/bokofs/bokofsd/mod/bokofile"
  8. )
  9. /*
  10. router.go
  11. This implement a emulated file system abstraction
  12. that routes the request to the correct worker
  13. */
  14. type RouterDir struct {
  15. }
  16. func (r *RouterDir) Mkdir(ctx context.Context, name string, perm os.FileMode) error {
  17. // Implement the Mkdir method
  18. fmt.Println("Mkdir called to " + name)
  19. return nil
  20. }
  21. func (r *RouterDir) OpenFile(ctx context.Context, name string, flag int, perm os.FileMode) (webdav.File, error) {
  22. // Implement the OpenFile method
  23. fmt.Println("OpenFile called to " + name)
  24. thisFile := &bokofile.File{}
  25. return thisFile, nil
  26. }
  27. func (r *RouterDir) RemoveAll(ctx context.Context, name string) error {
  28. // Implement the RemoveAll method
  29. fmt.Println("RemoveAll called to " + name)
  30. return nil
  31. }
  32. func (r *RouterDir) Rename(ctx context.Context, oldName, newName string) error {
  33. // Implement the Rename method
  34. fmt.Println("Rename called from " + oldName + " to " + newName)
  35. return nil
  36. }
  37. func (r *RouterDir) Stat(ctx context.Context, name string) (os.FileInfo, error) {
  38. // Implement the Stat method
  39. fmt.Println("Stat called to " + name)
  40. return nil, nil
  41. }
  42. // Ensure RouterDir implements the FileSystem interface
  43. var _ webdav.FileSystem = (*RouterDir)(nil)