main.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package main
  2. import (
  3. "flag"
  4. "strconv"
  5. "imuslab.com/bokofs/bokofsd/mod/webdav"
  6. )
  7. func main() {
  8. httpPort := flag.Int("p", 80, "Port to serve on (Plain HTTP)")
  9. serveSecure := flag.Bool("s", false, "Serve HTTPS. Default false")
  10. flag.Parse()
  11. webdavHandler := webdav.NewWebdavInterfaceServer(webdav.Options{
  12. ListeningAddress: ":" + strconv.Itoa(*httpPort),
  13. SecureServe: *serveSecure,
  14. })
  15. err := webdavHandler.Start()
  16. if err != nil {
  17. panic(err)
  18. }
  19. select {}
  20. }
  21. /*
  22. //Get all the devices under /dev that is either sd or nvme
  23. deviceFiles, err := os.ReadDir("/dev")
  24. if err != nil {
  25. panic(err)
  26. }
  27. for _, deviceFile := range deviceFiles {
  28. if deviceFile.IsDir() {
  29. continue
  30. }
  31. fullPath := "/dev/" + deviceFile.Name()
  32. if !smart.IsRootDisk(fullPath) {
  33. continue
  34. }
  35. if !smart.IsDiskSupportedType(fullPath) {
  36. fmt.Println("Unsupported disk type")
  37. continue
  38. }
  39. fmt.Println(fullPath)
  40. //Get the SMART data printout in json
  41. smartdata, err := smart.GetSMARTData(fullPath)
  42. if err != nil {
  43. fmt.Println(err)
  44. }
  45. js, _ := json.MarshalIndent(smartdata, "", " ")
  46. fmt.Println(string(js))
  47. }
  48. */