photoprism/internal/entity/photo_fixtures.go

1068 lines
37 KiB
Go
Raw Normal View History

2020-04-30 15:26:36 +00:00
package entity
import (
"time"
)
2020-05-08 12:18:11 +00:00
var editTime = time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC)
2020-05-14 12:17:12 +00:00
var deleteTime = time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC)
2020-05-08 12:18:11 +00:00
type PhotoMap map[string]Photo
func (m PhotoMap) Get(name string) Photo {
if result, ok := m[name]; ok {
return result
}
return Photo{PhotoName: name}
}
func (m PhotoMap) Pointer(name string) *Photo {
if result, ok := m[name]; ok {
return &result
}
return &Photo{PhotoName: name}
}
var PhotoFixtures = PhotoMap{
2020-04-30 15:26:36 +00:00
"19800101_000002_D640C559": {
ID: 1000000,
PhotoUID: "pt9jtdre2lvl0yh7",
2020-04-30 15:26:36 +00:00
TakenAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
TakenAtLocal: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
TakenSrc: "meta",
2020-04-30 15:26:36 +00:00
PhotoTitle: "",
TitleSrc: "",
PhotoDescription: "photo description lake",
2020-04-30 15:26:36 +00:00
PhotoPath: "2790/02",
PhotoName: "19800101_000002_D640C559",
2020-05-14 12:17:12 +00:00
PhotoQuality: 4,
2020-04-30 15:26:36 +00:00
PhotoResolution: 2,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoLat: 48.519234,
PhotoLng: 9.057997,
PhotoAltitude: 0,
2020-05-01 12:13:59 +00:00
PhotoIso: 0,
PhotoFocalLength: 0,
2020-05-13 17:46:49 +00:00
PhotoFNumber: 5,
2020-04-30 15:26:36 +00:00
PhotoExposure: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
CameraSerial: "",
CameraSrc: "",
PlaceSrc: "",
TimeZone: "",
PhotoYear: 2790,
PhotoMonth: 2,
Details: DetailsFixtures.Pointer("lake", 1000000),
DescriptionSrc: "",
CellID: UnknownLocation.ID,
Cell: &UnknownLocation,
PlaceID: UnknownPlace.ID,
Place: &UnknownPlace,
PhotoCountry: UnknownPlace.CountryCode(),
2020-05-14 12:17:12 +00:00
Keywords: []Keyword{
KeywordFixtures.Get("bridge"),
},
2020-05-11 12:41:20 +00:00
Albums: []Album{
AlbumFixtures.Get("holiday-2030"),
},
Files: []File{},
Labels: []PhotoLabel{
LabelFixtures.PhotoLabel(1000000, "flower", 38, "image"),
LabelFixtures.PhotoLabel(1000000, "cake", 38, "manual"),
},
CreatedAt: time.Date(2009, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
2020-04-30 15:26:36 +00:00
},
"Photo01": {
ID: 1000001,
PhotoUID: "pt9jtdre2lvl0yh8",
2020-05-08 12:18:11 +00:00
TakenAt: time.Date(2006, 1, 1, 2, 0, 0, 0, time.UTC),
TakenAtLocal: time.Date(2006, 1, 1, 2, 0, 0, 0, time.UTC),
TakenSrc: "meta",
2020-04-30 15:26:36 +00:00
PhotoTitle: "",
TitleSrc: "",
PhotoDescription: "photo description blacklist",
2020-04-30 15:26:36 +00:00
PhotoPath: "2790/02",
PhotoName: "Photo01",
PhotoQuality: 3,
PhotoResolution: 2,
2020-05-01 12:13:59 +00:00
PhotoFavorite: true,
2020-04-30 15:26:36 +00:00
PhotoPrivate: false,
PhotoLat: 48.519234,
PhotoLng: 9.057997,
PhotoAltitude: 0,
2020-05-01 12:13:59 +00:00
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
2020-04-30 15:26:36 +00:00
PhotoExposure: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2020-04-30 15:26:36 +00:00
CameraSerial: "",
CameraSrc: "",
Place: &UnknownPlace,
PlaceID: UnknownPlace.ID,
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
PlaceSrc: "",
2020-04-30 15:26:36 +00:00
TimeZone: "",
PhotoCountry: UnknownPlace.CountryCode(),
2020-04-30 15:26:36 +00:00
PhotoYear: 2790,
PhotoMonth: 2,
Details: DetailsFixtures.Pointer("lake", 1000001),
2020-04-30 15:26:36 +00:00
DescriptionSrc: "",
Keywords: []Keyword{},
Albums: []Album{},
2020-04-30 15:26:36 +00:00
Files: []File{},
Labels: []PhotoLabel{
LabelFixtures.PhotoLabel(1000001, "no-jpeg", 20, "image"),
},
CreatedAt: time.Date(2009, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
2020-04-30 15:26:36 +00:00
},
"Photo02": {
ID: 1000002,
PhotoUID: "pt9jtdre2lvl0yh9",
2020-04-30 15:26:36 +00:00
TakenAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
TakenAtLocal: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
TakenSrc: "meta",
2020-04-30 15:26:36 +00:00
PhotoTitle: "",
TitleSrc: "",
PhotoPath: "1990/03",
PhotoName: "Photo02",
PhotoQuality: 3,
PhotoResolution: 2,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoLat: 48.519234,
PhotoLng: 9.057997,
PhotoAltitude: 0,
2020-05-01 12:13:59 +00:00
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
2020-04-30 15:26:36 +00:00
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
PlaceSrc: "",
2020-04-30 15:26:36 +00:00
TimeZone: "",
PhotoCountry: UnknownPlace.CountryCode(),
PhotoYear: 1990,
PhotoMonth: 3,
Details: DetailsFixtures.Pointer("lake", 1000002),
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
Place: &UnknownPlace,
PlaceID: UnknownPlace.ID,
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000002, "cake", 20, "image")},
CreatedAt: time.Date(2009, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
2020-04-30 15:26:36 +00:00
},
"Photo03": {
ID: 1000003,
PhotoUID: "pt9jtdre2lvl0yh0",
TakenAt: time.Date(2008, 1, 1, 1, 0, 0, 0, time.UTC),
2020-05-11 15:01:05 +00:00
TakenAtLocal: time.Time{},
TakenSrc: "meta",
2020-04-30 15:26:36 +00:00
PhotoTitle: "",
TitleSrc: "",
PhotoPath: "1990/04",
PhotoName: "Photo03",
PhotoQuality: 4,
2020-04-30 15:26:36 +00:00
PhotoResolution: 2,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-04-30 15:26:36 +00:00
PhotoLat: 48.519234,
PhotoLng: 9.057997,
PhotoAltitude: 0,
2020-05-01 12:13:59 +00:00
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
2020-04-30 15:26:36 +00:00
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
Place: CellFixtures.Pointer("caravan park").Place,
PlaceID: CellFixtures.Pointer("caravan park").Place.ID,
Cell: CellFixtures.Pointer("caravan park"),
CellID: CellFixtures.Pointer("caravan park").ID,
PlaceSrc: "",
2020-04-30 15:26:36 +00:00
TimeZone: "",
PhotoCountry: CellFixtures.Pointer("caravan park").Place.CountryCode(),
2020-04-30 15:26:36 +00:00
PhotoYear: 1990,
PhotoMonth: 4,
Details: DetailsFixtures.Pointer("bridge", 1000003),
2020-04-30 15:26:36 +00:00
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2020-04-30 15:26:36 +00:00
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{
LabelFixtures.PhotoLabel(1000003, "cow", 20, "image"),
LabelFixtures.PhotoLabel(1000003, "updatePhotoLabel", 20, "manual"),
LabelFixtures.PhotoLabel(1000000, "landscape", 10, "location"),
},
CreatedAt: time.Date(2009, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
2020-04-30 15:26:36 +00:00
},
"Photo04": {
ID: 1000004,
PhotoUID: "pt9jtdre2lvl0y11",
2020-04-30 15:26:36 +00:00
TakenAt: time.Date(2014, 7, 17, 15, 42, 12, 0, time.UTC),
TakenAtLocal: time.Date(2014, 7, 17, 15, 42, 12, 0, time.UTC),
TakenSrc: "meta",
2020-04-30 15:26:36 +00:00
PhotoTitle: "Neckarbrücke",
TitleSrc: "",
PhotoPath: "2014/07",
PhotoName: "Photo04",
2020-04-30 15:26:36 +00:00
PhotoQuality: 3,
PhotoResolution: 2,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-04-30 15:26:36 +00:00
PhotoLat: 48.519234,
PhotoLng: 9.057997,
PhotoAltitude: 0,
2020-05-01 12:13:59 +00:00
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
2020-04-30 15:26:36 +00:00
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
PlaceSrc: "",
2020-04-30 15:26:36 +00:00
TimeZone: "",
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
2020-04-30 15:26:36 +00:00
PhotoYear: 2014,
PhotoMonth: 7,
Details: DetailsFixtures.Pointer("lake", 1000004),
2020-04-30 15:26:36 +00:00
DescriptionSrc: "",
2020-05-13 17:46:49 +00:00
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2020-05-13 17:46:49 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2020-05-11 12:41:20 +00:00
Keywords: []Keyword{
KeywordFixtures.Get("bridge"),
KeywordFixtures.Get("flower"),
2020-05-11 12:41:20 +00:00
},
Albums: []Album{
AlbumFixtures.Get("berlin-2019"),
},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000004, "batchdelete", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
2020-04-30 15:26:36 +00:00
},
"Photo05": {
ID: 1000005,
PhotoUID: "pt9jtdre2lvl0y12",
2020-04-30 15:26:36 +00:00
TakenAt: time.Date(2015, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2015, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "meta",
2020-04-30 15:26:36 +00:00
PhotoTitle: "Reunion",
TitleSrc: "",
PhotoPath: "2014/07",
PhotoName: "Photo05",
2020-04-30 15:26:36 +00:00
PhotoQuality: 3,
PhotoResolution: 2,
PhotoFavorite: false,
2020-05-14 12:17:12 +00:00
PhotoPrivate: true,
PhotoType: "image",
2020-04-30 15:26:36 +00:00
PhotoLat: -21.342636,
PhotoLng: 55.466944,
PhotoAltitude: 0,
2020-05-01 12:13:59 +00:00
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
2020-04-30 15:26:36 +00:00
PhotoExposure: "",
2020-05-11 15:01:05 +00:00
CameraSerial: "123",
2020-04-30 15:26:36 +00:00
CameraSrc: "",
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
PlaceSrc: "",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
2020-05-04 15:54:42 +00:00
TimeZone: "",
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
2020-05-04 15:54:42 +00:00
PhotoYear: 2014,
PhotoMonth: 7,
Details: DetailsFixtures.Pointer("lake", 1000005),
2020-05-04 15:54:42 +00:00
DescriptionSrc: "",
2020-05-13 17:46:49 +00:00
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2020-05-13 17:46:49 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2020-05-04 15:54:42 +00:00
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000005, "updateLabel", 20, "image")},
2020-05-04 15:54:42 +00:00
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
},
"Photo06": {
ID: 1000006,
PhotoUID: "pt9jtdre2lvl0y13",
2020-05-04 15:54:42 +00:00
TakenAt: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "meta",
2020-05-04 15:54:42 +00:00
PhotoTitle: "ToBeUpdated",
TitleSrc: "meta",
2020-05-04 15:54:42 +00:00
PhotoPath: "2016/11",
PhotoName: "Photo06",
2020-05-08 12:18:11 +00:00
PhotoQuality: 0,
2020-05-04 15:54:42 +00:00
PhotoResolution: 2,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-05-04 15:54:42 +00:00
PhotoLat: -21.342636,
PhotoLng: 55.466944,
PhotoAltitude: 0,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
PlaceSrc: "",
Place: &UnknownPlace,
PlaceID: UnknownPlace.ID,
2020-04-30 15:26:36 +00:00
TimeZone: "",
PhotoCountry: UnknownPlace.CountryCode(),
2020-04-30 15:26:36 +00:00
PhotoYear: 2014,
PhotoMonth: 7,
Details: DetailsFixtures.Pointer("lake", 1000006),
2020-04-30 15:26:36 +00:00
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2020-04-30 15:26:36 +00:00
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000006, "updatePhotoLabel", 20, "image")},
2020-04-30 15:26:36 +00:00
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
},
2020-05-08 12:18:11 +00:00
"Photo07": {
ID: 1000007,
PhotoUID: "pt9jtdre2lvl0y14",
2020-05-08 12:18:11 +00:00
TakenAt: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "",
PhotoTitle: "ToBeUpdated",
TitleSrc: "meta",
2020-05-08 12:18:11 +00:00
PhotoPath: "2016/11",
PhotoName: "Photo07",
2020-05-08 12:18:11 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-05-08 12:18:11 +00:00
PhotoLat: -21.342636,
PhotoLng: 55.466944,
PhotoAltitude: 0,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
PlaceSrc: "",
Place: &UnknownPlace,
PlaceID: UnknownPlace.ID,
2020-05-08 12:18:11 +00:00
TimeZone: "",
PhotoCountry: UnknownPlace.CountryCode(),
2020-05-08 12:18:11 +00:00
PhotoYear: 2014,
PhotoMonth: 7,
Details: DetailsFixtures.Pointer("lake", 1000007),
2020-05-08 12:18:11 +00:00
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2020-05-08 12:18:11 +00:00
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000007, "landscape", 20, "image")},
2020-05-08 12:18:11 +00:00
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: &editTime,
DeletedAt: nil,
},
2020-05-08 13:46:16 +00:00
"Photo08": {
ID: 1000008,
PhotoUID: "pt9jtdre2lvl0y15",
2020-05-08 13:46:16 +00:00
TakenAt: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "",
PhotoTitle: "Black beach",
TitleSrc: "meta",
2020-05-08 13:46:16 +00:00
PhotoPath: "2016/11",
PhotoName: "Photo08",
2020-05-08 13:46:16 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-05-11 15:01:05 +00:00
PhotoLat: 0,
PhotoLng: 0,
2020-05-08 13:46:16 +00:00
PhotoAltitude: 0,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
TimeZone: "",
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
PhotoYear: 2014,
PhotoMonth: 7,
Details: DetailsFixtures.Pointer("lake", 1000008),
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
PlaceSrc: "manual",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000008, "landscape", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
2020-05-08 13:46:16 +00:00
},
2020-05-11 15:01:05 +00:00
"Photo09": {
ID: 1000009,
PhotoUID: "pt9jtdre2lvl0y16",
2020-05-11 15:01:05 +00:00
TakenAt: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "",
PhotoTitle: "Title",
TitleSrc: "",
PhotoPath: "2016/11",
PhotoName: "Photo09",
2020-05-11 15:01:05 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-05-11 15:01:05 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoAltitude: 0,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
TimeZone: "",
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
PhotoYear: 2014,
PhotoMonth: 7,
Details: DetailsFixtures.Pointer("lake", 1000009),
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
PlaceSrc: "",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000008, "landscape", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
2020-05-11 15:01:05 +00:00
},
"Photo10": {
ID: 1000010,
PhotoUID: "pt9jtdre2lvl0y17",
2020-05-11 15:01:05 +00:00
TakenAt: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "",
PhotoTitle: "Title",
TitleSrc: "",
PhotoPath: "2016/11",
PhotoName: "Photo10",
2020-05-11 15:01:05 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-05-11 15:01:05 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoAltitude: 0,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
TimeZone: "",
PhotoCountry: PlaceFixtures.Pointer("holidaypark").CountryCode(),
PhotoYear: 2014,
PhotoMonth: 7,
Details: DetailsFixtures.Pointer("lake", 10000010),
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Cell: CellFixtures.Pointer("hassloch"),
CellID: CellFixtures.Pointer("hassloch").ID,
PlaceSrc: "",
Place: PlaceFixtures.Pointer("holidaypark"),
PlaceID: PlaceFixtures.Pointer("holidaypark").ID,
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000008, "landscape", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
2020-05-11 15:01:05 +00:00
},
"Photo11": {
ID: 1000011,
PhotoUID: "pt9jtdre2lvl0y18",
2020-05-11 15:01:05 +00:00
TakenAt: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "",
PhotoTitle: "Title",
TitleSrc: "",
PhotoPath: "2016/11",
PhotoName: "Photo11",
2020-05-11 15:01:05 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-05-11 15:01:05 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoAltitude: 0,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
TimeZone: "",
PhotoCountry: PlaceFixtures.Pointer("emptyNameLongCity").CountryCode(),
PhotoYear: 2014,
PhotoMonth: 7,
Details: DetailsFixtures.Pointer("lake", 10000011),
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Cell: CellFixtures.Pointer("emptyNameLongCity"),
CellID: CellFixtures.Pointer("emptyNameLongCity").ID,
PlaceSrc: "",
Place: PlaceFixtures.Pointer("emptyNameLongCity"),
PlaceID: PlaceFixtures.Pointer("emptyNameLongCity").ID,
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000008, "landscape", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
2020-05-11 15:01:05 +00:00
},
"Photo12": {
ID: 1000012,
PhotoUID: "pt9jtdre2lvl0y19",
2020-05-11 15:01:05 +00:00
TakenAt: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "",
PhotoTitle: "Title",
TitleSrc: "",
PhotoPath: "2016/11",
PhotoName: "Photo12",
2020-05-11 15:01:05 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-05-11 15:01:05 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoAltitude: 0,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
CameraSerial: "",
CameraSrc: "",
Cell: CellFixtures.Pointer("emptyNameShortCity"),
CellID: CellFixtures.Pointer("emptyNameShortCity").ID,
PlaceSrc: "",
Place: PlaceFixtures.Pointer("emptyNameShortCity"),
PlaceID: PlaceFixtures.Pointer("emptyNameShortCity").ID,
TimeZone: "",
PhotoCountry: PlaceFixtures.Pointer("emptyNameShortCity").CountryCode(),
PhotoYear: 2014,
PhotoMonth: 7,
Details: &Details{},
DescriptionSrc: "",
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
2020-05-11 15:01:05 +00:00
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000008, "landscape", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
},
"Photo13": {
ID: 1000013,
PhotoUID: "pt9jtdre2lvl0y20",
2020-05-11 15:01:05 +00:00
TakenAt: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "",
PhotoTitle: "Title",
TitleSrc: "",
PhotoPath: "2016/11",
PhotoName: "Photo13",
2020-05-11 15:01:05 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-05-11 15:01:05 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoAltitude: 0,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
Cell: CellFixtures.Pointer("veryLongLocName"),
CellID: CellFixtures.Pointer("veryLongLocName").ID,
PlaceSrc: "",
Place: PlaceFixtures.Pointer("veryLongLocName"),
PlaceID: PlaceFixtures.Pointer("veryLongLocName").ID,
2020-05-11 15:01:05 +00:00
TimeZone: "",
PhotoCountry: PlaceFixtures.Pointer("veryLongLocName").CountryCode(),
2020-05-11 15:01:05 +00:00
PhotoYear: 2014,
PhotoMonth: 7,
Details: &Details{},
2020-05-11 15:01:05 +00:00
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2020-05-11 15:01:05 +00:00
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000008, "landscape", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
},
"Photo14": {
ID: 1000014,
PhotoUID: "pt9jtdre2lvl0y21",
2020-05-11 15:01:05 +00:00
TakenAt: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "",
PhotoTitle: "Title",
TitleSrc: "",
PhotoPath: "2016/11",
PhotoName: "Photo14",
2020-05-11 15:01:05 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-05-11 15:01:05 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoAltitude: 0,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
TimeZone: "",
PhotoCountry: PlaceFixtures.Pointer("mediumLongLocName").CountryCode(),
PhotoYear: 2014,
PhotoMonth: 7,
Details: &Details{},
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Cell: CellFixtures.Pointer("mediumLongLocName"),
CellID: CellFixtures.Pointer("mediumLongLocName").ID,
PlaceSrc: "",
Place: PlaceFixtures.Pointer("mediumLongLocName"),
PlaceID: PlaceFixtures.Pointer("mediumLongLocName").ID,
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000014, "landscape", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
2020-05-12 09:51:28 +00:00
},
"Photo15": {
ID: 1000015,
PhotoUID: "pt9jtdre2lvl0y22",
2020-05-12 09:51:28 +00:00
TakenAt: time.Date(2013, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2013, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "name",
2020-05-12 09:51:28 +00:00
PhotoTitle: "TitleToBeSet",
TitleSrc: "location",
PhotoDescription: "photo description blacklist",
DescriptionSrc: "meta",
PhotoPath: "1990",
PhotoName: "Photo15",
2020-05-12 09:51:28 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-05-12 09:51:28 +00:00
PhotoLat: 1.234,
PhotoLng: 4.321,
PhotoAltitude: 3,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
Place: &UnknownPlace,
Cell: &UnknownLocation,
PlaceID: UnknownPlace.ID,
CellID: UnknownLocation.ID,
PlaceSrc: "location",
2020-05-12 09:51:28 +00:00
TimeZone: "",
PhotoCountry: UnknownCountry.ID,
2020-05-12 09:51:28 +00:00
PhotoYear: 0,
PhotoMonth: 0,
Details: DetailsFixtures.Pointer("blacklist", 1000015),
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2020-05-12 09:51:28 +00:00
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(10000015, "landscape", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
},
"Photo16": {
ID: 1000016,
PhotoUID: "pt9jtdre2lvl0y23",
2020-05-12 09:51:28 +00:00
TakenAt: time.Date(2013, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2013, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "",
PhotoTitle: "ForDeletion",
TitleSrc: "",
PhotoPath: "1990",
PhotoName: "Photo16",
2020-05-12 09:51:28 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
2020-05-12 09:51:28 +00:00
PhotoLat: 1.234,
PhotoLng: 4.321,
PhotoAltitude: 3,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
CameraSerial: "",
CameraSrc: "",
Place: &UnknownPlace,
Cell: &UnknownLocation,
PlaceID: UnknownPlace.ID,
CellID: UnknownLocation.ID,
PlaceSrc: "location",
TimeZone: "",
PhotoCountry: UnknownCountry.ID,
PhotoYear: 0,
PhotoMonth: 0,
Details: DetailsFixtures.Pointer("lake", 1000015),
DescriptionSrc: "location",
Keywords: []Keyword{},
Albums: []Album{},
2020-05-13 09:51:51 +00:00
Files: []File{},
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(10000015, "landscape", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
},
"Photo17": {
ID: 1000017,
PhotoUID: "pt9jtdre2lvl0y24",
2020-05-13 09:51:51 +00:00
TakenAt: time.Date(2013, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2013, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "",
PhotoTitle: "Quality1FavoriteTrue",
TitleSrc: "",
PhotoPath: "1990/04",
PhotoName: "Photo17",
2020-05-13 09:51:51 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: true,
PhotoPrivate: false,
PhotoType: "image",
2020-05-13 09:51:51 +00:00
PhotoLat: 1.234,
PhotoLng: 4.321,
PhotoAltitude: 3,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
PlaceSrc: "location",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
TimeZone: "",
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
PhotoYear: 0,
PhotoMonth: 0,
Details: DetailsFixtures.Pointer("lake", 1000015),
DescriptionSrc: "location",
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
2020-05-14 12:17:12 +00:00
Labels: []PhotoLabel{
LabelFixtures.PhotoLabel(10000015, "landscape", 20, "image"),
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
},
"Photo18": {
ID: 1000018,
PhotoUID: "pt9jtdre2lvl0y25",
2020-05-14 12:17:12 +00:00
TakenAt: time.Date(2013, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2013, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: "",
PhotoTitle: "ArchivedChroma0",
TitleSrc: "",
PhotoPath: "1990/04",
PhotoName: "Photo18",
2020-05-14 12:17:12 +00:00
PhotoQuality: 0,
PhotoResolution: 0,
PhotoFavorite: true,
PhotoPrivate: false,
PhotoType: "image",
2020-05-14 12:17:12 +00:00
PhotoLat: 1.234,
PhotoLng: 4.321,
PhotoAltitude: 3,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
PlaceSrc: "location",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
TimeZone: "",
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
PhotoYear: 0,
PhotoMonth: 0,
Details: DetailsFixtures.Pointer("lake", 1000015),
DescriptionSrc: "location",
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
2020-05-14 12:17:12 +00:00
Labels: []PhotoLabel{
LabelFixtures.PhotoLabel(10000018, "landscape", 20, "image"),
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
CreatedAt: time.Date(2019, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: &deleteTime,
2020-05-11 15:01:05 +00:00
},
"Photo19": {
ID: 1000019,
2020-12-12 21:02:14 +00:00
UUID: "123e4567-e89b-12d3-a456-426614174000",
PhotoUID: "pt9jtxrexxvl0yh0",
TakenAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
TakenAtLocal: time.Time{},
TakenSrc: "",
PhotoTitle: "",
TitleSrc: "",
PhotoPath: "1990/04",
2020-12-12 21:02:14 +00:00
PhotoName: "Photo19",
PhotoQuality: -1,
PhotoResolution: 2,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
PhotoLat: 0,
PhotoLng: 0,
PhotoAltitude: 0,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
Place: &UnknownPlace,
Cell: &UnknownLocation,
PlaceID: UnknownPlace.ID,
CellID: UnknownLocation.ID,
PlaceSrc: "",
TimeZone: "",
PhotoCountry: UnknownPlace.CountryCode(),
PhotoYear: 1990,
PhotoMonth: 4,
Details: DetailsFixtures.Pointer("bridge", 1000019),
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{},
CreatedAt: time.Date(2009, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
},
"Photo20": {
ID: 1000020,
PhotoUID: "pt9jtxrexxvl0y20",
TakenAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
TakenAtLocal: time.Time{},
TakenSrc: "",
PhotoTitle: "",
TitleSrc: "",
PhotoPath: "1990/04",
2020-12-12 21:02:14 +00:00
PhotoName: "Photo20",
PhotoQuality: 1,
PhotoResolution: 2,
PhotoFavorite: false,
PhotoPrivate: false,
PhotoType: "image",
PhotoLat: 0,
PhotoLng: 0,
PhotoAltitude: 0,
PhotoIso: 0,
PhotoFocalLength: 0,
PhotoFNumber: 0,
PhotoExposure: "",
CameraSerial: "",
CameraSrc: "",
Place: &UnknownPlace,
Cell: &UnknownLocation,
PlaceID: UnknownPlace.ID,
CellID: UnknownLocation.ID,
PlaceSrc: "",
TimeZone: "",
PhotoCountry: UnknownPlace.CountryCode(),
PhotoYear: 1990,
PhotoMonth: 4,
Details: DetailsFixtures.Pointer("bridge", 1000019),
DescriptionSrc: "",
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{},
CreatedAt: time.Date(2009, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
DeletedAt: nil,
},
2020-04-30 15:26:36 +00:00
}
// CreatePhotoFixtures inserts known entities into the database for testing.
2020-05-01 12:13:59 +00:00
func CreatePhotoFixtures() {
2020-04-30 15:26:36 +00:00
for _, entity := range PhotoFixtures {
2020-05-01 12:13:59 +00:00
Db().Create(&entity)
2020-04-30 15:26:36 +00:00
}
}