photoprism/internal/models/photo.go
Michael Mayer ded37fc486 Albums: Add BatchPhotosAlbum API #15
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2019-12-04 01:46:17 +01:00

56 lines
1.5 KiB
Go

package models
import (
"time"
"github.com/jinzhu/gorm"
uuid "github.com/satori/go.uuid"
)
// A photo can have multiple images and sidecar files
type Photo struct {
Model
PhotoUUID string `gorm:"unique_index;"`
PhotoPath string `gorm:"type:varchar(128);index;"`
PhotoName string
PhotoTitle string
PhotoTitleChanged bool
PhotoDescription string `gorm:"type:text;"`
PhotoNotes string `gorm:"type:text;"`
PhotoArtist string
PhotoFavorite bool
PhotoPrivate bool
PhotoSensitive bool
PhotoStory bool
PhotoLat float64 `gorm:"index;"`
PhotoLong float64 `gorm:"index;"`
PhotoAltitude int
PhotoFocalLength int
PhotoIso int
PhotoFNumber float64
PhotoExposure string
PhotoViews uint
Camera *Camera
CameraID uint `gorm:"index;"`
Lens *Lens
LensID uint `gorm:"index;"`
Country *Country
CountryID string `gorm:"index;"`
CountryChanged bool
Location *Location
LocationID uint
LocationChanged bool
LocationEstimated bool
TakenAt time.Time `gorm:"index;"`
TakenAtLocal time.Time
TakenAtChanged bool
TimeZone string
Labels []*PhotoLabel
Files []*File
Albums []*Album `gorm:"many2many:albums_photos;"`
}
func (m *Photo) BeforeCreate(scope *gorm.Scope) error {
return scope.SetColumn("PhotoUUID", uuid.NewV4().String())
}