storageDao.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. GetFile(fileid string, stream io.Writer) error
  17. GetSchematics(query string, offset int, limit int, owner string) (int64, []model.Schematic, error)
  18. DeleteSchematic(schematicID string) error
  19. CreateTag(tag string) error
  20. GetTags() []string
  21. GetTagsCount() int
  22. CreateManufacturer(manufacturer string) error
  23. GetManufacturers() []string
  24. GetManufacturersCount() int
  25. CheckUser(username string, password string) bool
  26. GetUser(username string) (model.User, bool)
  27. AddUser(user model.User) error
  28. DeleteUser(username string) error
  29. ChangePWD(username string, newpassword string, oldpassword string) error
  30. DropAll()
  31. Ping() error
  32. Stop()
  33. }
  34. var Storage StorageDao
  35. func GetStorage() StorageDao {
  36. return Storage
  37. }
  38. func BuildPasswordHash(password string) string {
  39. if !strings.HasPrefix(password, "md5:") {
  40. hash := md5.Sum([]byte(password))
  41. password = fmt.Sprintf("md5:%x", hash)
  42. }
  43. return password
  44. }