photoprism/internal/entity/lens_fixtures.go
Michael Mayer 9a5d4fa719 Backend: Indexing improvements #154
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-05-29 18:04:30 +02:00

47 lines
915 B
Go

package entity
import (
"time"
)
type LensMap map[string]Lens
func (m LensMap) Get(name string) Lens {
if result, ok := m[name]; ok {
return result
}
return *NewLens(name, "")
}
func (m LensMap) Pointer(name string) *Lens {
if result, ok := m[name]; ok {
return &result
}
return NewLens(name, "")
}
var LensFixtures = LensMap{
"lens-f-380": {
ID: 1000000,
LensSlug: "lens-f-380",
LensName: "Apple F380",
LensMake: "Apple",
LensModel: "F380",
LensType: "",
LensDescription: "",
LensNotes: "Notes",
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
DeletedAt: nil,
},
}
// CreateLensFixtures inserts known entities into the database for testing.
func CreateLensFixtures() {
for _, entity := range LensFixtures {
Db().Create(&entity)
}
}