Files
photoview/api/graphql/models/album.go
2020-11-25 23:06:47 +01:00

30 lines
472 B
Go

package models
import (
"crypto/md5"
"encoding/hex"
"gorm.io/gorm"
)
type Album struct {
gorm.Model
Title string
ParentAlbumID *uint
ParentAlbum *Album
OwnerID uint
Owner User
Path string
PathHash string `gorm:"unique"`
}
func (a *Album) FilePath() string {
return a.Path
}
func (a *Album) BeforeSave(tx *gorm.DB) (err error) {
hash := md5.Sum([]byte(a.Path))
a.PathHash = hex.EncodeToString(hash[:])
return nil
}