366c70d992
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
51 lines
1 KiB
Go
51 lines
1 KiB
Go
package entity
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/gosimple/slug"
|
|
"github.com/jinzhu/gorm"
|
|
)
|
|
|
|
// Camera lens (as extracted from UpdateExif metadata)
|
|
type Lens struct {
|
|
ID uint `gorm:"primary_key"`
|
|
LensSlug string
|
|
LensModel string
|
|
LensMake string
|
|
LensType string
|
|
LensOwner string
|
|
LensDescription string `gorm:"type:text;"`
|
|
LensNotes string `gorm:"type:text;"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
DeletedAt *time.Time `sql:"index"`
|
|
}
|
|
|
|
func (Lens) TableName() string {
|
|
return "lenses"
|
|
}
|
|
|
|
func NewLens(modelName string, makeName string) *Lens {
|
|
if modelName == "" {
|
|
modelName = "Unknown"
|
|
}
|
|
|
|
lensSlug := slug.MakeLang(modelName, "en")
|
|
|
|
result := &Lens{
|
|
LensModel: modelName,
|
|
LensMake: makeName,
|
|
LensSlug: lensSlug,
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
func (m *Lens) FirstOrCreate(db *gorm.DB) *Lens {
|
|
if err := db.FirstOrCreate(m, "lens_model = ? AND lens_make = ?", m.LensModel, m.LensMake).Error; err != nil {
|
|
log.Errorf("lens: %s", err)
|
|
}
|
|
|
|
return m
|
|
}
|