main.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. fullPath := "/dev/" + deviceFile.Name()
  22. fmt.Println(fullPath)
  23. if !smart.IsNVMeDevice(fullPath) && !smart.IsSATADevice(fullPath) {
  24. fmt.Println("Unsupported disk type")
  25. continue
  26. }
  27. //Get the SMART data printout in json
  28. smartdata, err := smart.GetSMARTData(fullPath)
  29. if err != nil {
  30. fmt.Println(err)
  31. }
  32. js, _ := json.MarshalIndent(smartdata, "", " ")
  33. fmt.Println(string(js))
  34. }
  35. }
  36. /*
  37. dirFlag := flag.String("d", "./", "Directory to serve from. Default is CWD")
  38. httpPort := flag.Int("p", 80, "Port to serve on (Plain HTTP)")
  39. httpsPort := flag.Int("ps", 443, "Port to serve TLS on")
  40. serveSecure := flag.Bool("s", false, "Serve HTTPS. Default false")
  41. flag.Parse()
  42. dir = *dirFlag
  43. srv := &webdav.Handler{
  44. FileSystem: webdav.Dir(dir),
  45. LockSystem: webdav.NewMemLS(),
  46. Logger: func(r *http.Request, err error) {
  47. if err != nil {
  48. log.Printf("WEBDAV [%s]: %s, ERROR: %s\n", r.Method, r.URL, err)
  49. } else {
  50. log.Printf("WEBDAV [%s]: %s \n", r.Method, r.URL)
  51. }
  52. },
  53. }
  54. http.Handle("/", srv)
  55. if *serveSecure == true {
  56. if _, err := os.Stat("./cert.pem"); err != nil {
  57. fmt.Println("[x] No cert.pem in current directory. Please provide a valid cert")
  58. return
  59. }
  60. if _, er := os.Stat("./key.pem"); er != nil {
  61. fmt.Println("[x] No key.pem in current directory. Please provide a valid cert")
  62. return
  63. }
  64. go http.ListenAndServeTLS(fmt.Sprintf(":%d", *httpsPort), "cert.pem", "key.pem", nil)
  65. }
  66. if err := http.ListenAndServe(fmt.Sprintf(":%d", *httpPort), nil); err != nil {
  67. log.Fatalf("Error with WebDAV server: %v", err)
  68. }
  69. */
  70. }