photoprism/internal/entity/share.go
Michael Mayer f8a45b14d9 Backend: Move reusable packages to pkg/
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-01-12 14:00:56 +01:00

36 lines
791 B
Go

package entity
import (
"time"
"github.com/jinzhu/gorm"
"github.com/photoprism/photoprism/pkg/rnd"
)
// Shared photos and/or albums
type Share struct {
UUID string `gorm:"type:varbinary(36);primary_key;auto_increment:false"`
ShareUUID string `gorm:"type:varbinary(36);index;"`
ShareViews uint
ShareUrl string `gorm:"type:varchar(64);"`
SharePassword string `gorm:"type:varbinary(200);"`
ShareExpires time.Time
Photo *Photo
Album *Album
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt *time.Time `sql:"index"`
}
func (Share) TableName() string {
return "shares"
}
func (s *Share) BeforeCreate(scope *gorm.Scope) error {
if err := scope.SetColumn("ShareUUID", rnd.PPID('s')); err != nil {
return err
}
return nil
}