bokofs.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package bokofs
  2. import (
  3. "log"
  4. "net/http"
  5. "os"
  6. "sync"
  7. "golang.org/x/net/webdav"
  8. "imuslab.com/bokofs/bokofsd/mod/bokofs/bokoworker"
  9. )
  10. /*
  11. WebDAV module
  12. This module handle the interfacing to the underlying file system
  13. through the middle ware
  14. */
  15. type Server struct {
  16. LoadedWorkers sync.Map //Storing uuid to bokoworker pointer (*bokoworker.Worker)
  17. RootRouter FlowRouter
  18. prefix string
  19. }
  20. /* NewWebdavInterfaceServer creates a new WebDAV server instance */
  21. func NewWebdavInterfaceServer(pathPrfix string) (*Server, error) {
  22. thisServer := Server{
  23. LoadedWorkers: sync.Map{},
  24. prefix: pathPrfix,
  25. }
  26. //Initiate the root router file system
  27. err := thisServer.InitiateRootRouter()
  28. if err != nil {
  29. return nil, err
  30. }
  31. return &thisServer, nil
  32. }
  33. func (s *Server) AddWorker(worker *bokoworker.Worker) error {
  34. //Check if the worker root path is already loaded
  35. if _, ok := s.LoadedWorkers.Load(worker.RootPath); ok {
  36. return os.ErrExist
  37. }
  38. s.LoadedWorkers.Store(worker.RootPath, worker)
  39. return nil
  40. }
  41. func (s *Server) RemoveWorker(workerRootPath string) {
  42. s.LoadedWorkers.Delete(workerRootPath)
  43. }
  44. func (s *Server) Handler() http.Handler {
  45. srv := &webdav.Handler{
  46. FileSystem: s.RootRouter,
  47. LockSystem: webdav.NewMemLS(),
  48. Logger: func(r *http.Request, err error) {
  49. if err != nil {
  50. log.Printf("WEBDAV [%s]: %s, ERROR: %s\n", r.Method, r.URL, err)
  51. } else {
  52. log.Printf("WEBDAV [%s]: %s \n", r.Method, r.URL)
  53. }
  54. },
  55. }
  56. return srv
  57. }