storageDao.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package dao
  2. import (
  3. "crypto/md5"
  4. "fmt"
  5. "io"
  6. "strings"
  7. "github.com/willie68/schematic-service-go/model"
  8. )
  9. /*
  10. StorageDao this is the interface which all method implementation of a storage engine has to fulfill
  11. */
  12. type StorageDao interface {
  13. AddFile(filename string, reader io.Reader) (string, error)
  14. CreateSchematic(schematic model.Schematic) (string, error)
  15. GetSchematic(schematicID string) (model.Schematic, error)
  16. UpdateSchematic(schematic model.Schematic) (string, error)
  17. GetFilename(fileid string) (string, error)
  18. GetFile(fileid string, stream io.Writer) error
  19. GetSchematics(query string, offset int, limit int, owner string) (int64, []model.Schematic, error)
  20. GetSchematicsCount(query string, owner string) (int64, error)
  21. DeleteSchematic(schematicID string) error
  22. CreateTag(tag string) error
  23. GetTags() []model.Tag
  24. GetTagsCount() int
  25. CreateManufacturer(manufacturer string) error
  26. GetManufacturers() []model.Manufacturer
  27. GetManufacturersCount() int
  28. CheckUser(username string, password string) bool
  29. GetUser(username string) (model.User, bool)
  30. AddUser(user model.User) error
  31. DeleteUser(username string) error
  32. ChangePWD(username string, newpassword string, oldpassword string) error
  33. DropAll()
  34. Ping() error
  35. Stop()
  36. }
  37. var Storage StorageDao
  38. func GetStorage() StorageDao {
  39. return Storage
  40. }
  41. func BuildPasswordHash(password string) string {
  42. if !strings.HasPrefix(password, "md5:") {
  43. hash := md5.Sum([]byte(password))
  44. password = fmt.Sprintf("md5:%x", hash)
  45. }
  46. return password
  47. }