photoprism/internal/entity/details.go
Michael Mayer b24d5c03a1 Use YAML files to save and restore photo metadata
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-05-18 22:18:58 +02:00

43 lines
1.4 KiB
Go

package entity
// Details stores additional metadata fields for each photo to improve search performance.
type Details struct {
PhotoID uint `gorm:"primary_key;auto_increment:false" yaml:"-"`
Keywords string `gorm:"type:text;" json:"Keywords" yaml:"Keywords"`
Notes string `gorm:"type:text;" json:"Notes" yaml:"Notes,omitempty"`
Subject string `gorm:"type:varchar(255);" json:"Subject" yaml:"Subject,omitempty"`
Artist string `gorm:"type:varchar(255);" json:"Artist" yaml:"Artist,omitempty"`
Copyright string `gorm:"type:varchar(255);" json:"Copyright" yaml:"Copyright,omitempty"`
License string `gorm:"type:varchar(255);" json:"License" yaml:"License,omitempty"`
}
// FirstOrCreate returns the matching entity or creates a new one.
func (m *Details) FirstOrCreate() error {
return Db().FirstOrCreate(m, "photo_id = ?", m.PhotoID).Error
}
// NoKeywords checks if the photo has no Keywords
func (m *Details) NoKeywords() bool {
return m.Keywords == ""
}
// NoSubject checks if the photo has no Subject
func (m *Details) NoSubject() bool {
return m.Subject == ""
}
// NoNotes checks if the photo has no Notes
func (m *Details) NoNotes() bool {
return m.Notes == ""
}
// NoArtist checks if the photo has no Artist
func (m *Details) NoArtist() bool {
return m.Artist == ""
}
// NoCopyright checks if the photo has no Copyright
func (m *Details) NoCopyright() bool {
return m.Copyright == ""
}