photoprism/internal/entity/photo_album_fixtures.go

59 lines
1.6 KiB
Go
Raw Normal View History

2020-05-01 13:11:24 +02:00
package entity
import "time"
2020-05-11 14:41:20 +02:00
type PhotoAlbumMap map[string]PhotoAlbum
func (m PhotoAlbumMap) Get(name, photoUID, albumUID string) PhotoAlbum {
2020-05-11 14:41:20 +02:00
if result, ok := m[name]; ok {
return result
}
return *NewPhotoAlbum(photoUID, albumUID)
2020-05-11 14:41:20 +02:00
}
func (m PhotoAlbumMap) Pointer(name, photoUID, albumUID string) *PhotoAlbum {
2020-05-11 14:41:20 +02:00
if result, ok := m[name]; ok {
return &result
}
return NewPhotoAlbum(photoUID, albumUID)
2020-05-11 14:41:20 +02:00
}
var PhotoAlbumFixtures = PhotoAlbumMap{
2020-05-01 13:11:24 +02:00
"1": {
PhotoUID: "pt9jtdre2lvl0yh7",
AlbumUID: "at9lxuqxpogaaba8",
2020-05-01 13:11:24 +02:00
Order: 0,
CreatedAt: time.Date(2020, 3, 6, 2, 6, 51, 0, time.UTC),
UpdatedAt: time.Date(2020, 3, 28, 14, 6, 0, 0, time.UTC),
Photo: PhotoFixtures.Pointer("19800101_000002_D640C559"),
2020-05-11 14:41:20 +02:00
Album: AlbumFixtures.Pointer("holiday-2030"),
2020-05-01 13:11:24 +02:00
},
"2": {
PhotoUID: "pt9jtdre2lvl0y11",
AlbumUID: "at9lxuqxpogaaba9",
2020-05-01 13:11:24 +02:00
Order: 0,
CreatedAt: time.Date(2020, 2, 6, 2, 6, 51, 0, time.UTC),
UpdatedAt: time.Date(2020, 4, 28, 14, 6, 0, 0, time.UTC),
Photo: PhotoFixtures.Pointer("Photo04"),
2020-05-11 14:41:20 +02:00
Album: AlbumFixtures.Pointer("berlin-2019"),
2020-05-01 13:11:24 +02:00
},
2020-05-11 17:01:05 +02:00
"3": {
PhotoUID: "pt9jtdre2lvl0yh8",
AlbumUID: "at9lxuqxpogaaba9",
2020-05-11 17:01:05 +02:00
Order: 0,
CreatedAt: time.Date(2020, 2, 6, 2, 6, 51, 0, time.UTC),
UpdatedAt: time.Date(2020, 4, 28, 14, 6, 0, 0, time.UTC),
Photo: PhotoFixtures.Pointer("Photo01"),
Album: AlbumFixtures.Pointer("berlin-2019"),
},
2020-05-01 13:11:24 +02:00
}
// CreatePhotoAlbumFixtures inserts known entities into the database for testing.
func CreatePhotoAlbumFixtures() {
for _, entity := range PhotoAlbumFixtures {
Db().Create(&entity)
}
}