main.go 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package main
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "os"
  6. "strings"
  7. smart "imuslab.com/bokofs/bokofsd/mod/middleware/SMART"
  8. )
  9. var dir string
  10. func main() {
  11. //Get all the devices under /dev that is either sd or nvme
  12. deviceFiles, err := os.ReadDir("/dev")
  13. if err != nil {
  14. panic(err)
  15. }
  16. for _, deviceFile := range deviceFiles {
  17. if deviceFile.IsDir() {
  18. continue
  19. }
  20. if strings.HasPrefix(deviceFile.Name(), "sd") || strings.HasPrefix(deviceFile.Name(), "nvme") {
  21. if strings.HasPrefix(deviceFile.Name(), "sd") && len(deviceFile.Name()) > 3 {
  22. continue
  23. }
  24. if strings.HasPrefix(deviceFile.Name(), "nvme") && strings.Contains(deviceFile.Name()[4:], "p") {
  25. continue
  26. }
  27. fullPath := "/dev/" + deviceFile.Name()
  28. fmt.Println(fullPath)
  29. if !smart.IsNVMeDevice(fullPath) && !smart.IsSATADevice(fullPath) {
  30. fmt.Println("Unsupported disk type")
  31. continue
  32. }
  33. //Get the SMART data printout in json
  34. smartdata, err := smart.GetSMARTData(fullPath)
  35. if err != nil {
  36. fmt.Println(err)
  37. }
  38. js, _ := json.MarshalIndent(smartdata, "", " ")
  39. fmt.Println(string(js))
  40. }
  41. }
  42. /*
  43. dirFlag := flag.String("d", "./", "Directory to serve from. Default is CWD")
  44. httpPort := flag.Int("p", 80, "Port to serve on (Plain HTTP)")
  45. httpsPort := flag.Int("ps", 443, "Port to serve TLS on")
  46. serveSecure := flag.Bool("s", false, "Serve HTTPS. Default false")
  47. flag.Parse()
  48. dir = *dirFlag
  49. srv := &webdav.Handler{
  50. FileSystem: webdav.Dir(dir),
  51. LockSystem: webdav.NewMemLS(),
  52. Logger: func(r *http.Request, err error) {
  53. if err != nil {
  54. log.Printf("WEBDAV [%s]: %s, ERROR: %s\n", r.Method, r.URL, err)
  55. } else {
  56. log.Printf("WEBDAV [%s]: %s \n", r.Method, r.URL)
  57. }
  58. },
  59. }
  60. http.Handle("/", srv)
  61. if *serveSecure == true {
  62. if _, err := os.Stat("./cert.pem"); err != nil {
  63. fmt.Println("[x] No cert.pem in current directory. Please provide a valid cert")
  64. return
  65. }
  66. if _, er := os.Stat("./key.pem"); er != nil {
  67. fmt.Println("[x] No key.pem in current directory. Please provide a valid cert")
  68. return
  69. }
  70. go http.ListenAndServeTLS(fmt.Sprintf(":%d", *httpsPort), "cert.pem", "key.pem", nil)
  71. }
  72. if err := http.ListenAndServe(fmt.Sprintf(":%d", *httpPort), nil); err != nil {
  73. log.Fatalf("Error with WebDAV server: %v", err)
  74. }
  75. */
  76. }