photoprism/internal/entity/photo_fixtures.go

1725 lines
58 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)
2021-08-04 16:43:39 +00:00
var checkedTime = time.Date(2021, 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{
2021-08-16 13:17:43 +00:00
"19800101_000002_D640C559": { //JPG, Imported, No Geo-information
2021-08-05 08:30:08 +00:00
ID: 1000000,
2021-08-04 16:43:39 +00:00
// UUID:
PhotoUID: "pt9jtdre2lvl0yh7",
2021-08-05 10:33:02 +00:00
TakenAt: time.Date(2008, 7, 1, 10, 0, 0, 0, time.UTC),
TakenAtLocal: time.Date(2008, 7, 1, 12, 0, 0, 0, time.UTC),
TakenSrc: "meta",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
2021-08-04 16:43:39 +00:00
TypeSrc: "",
2021-08-05 10:33:02 +00:00
PhotoTitle: "Lake / 2790",
2020-04-30 15:26:36 +00:00
TitleSrc: "",
PhotoDescription: "photo description lake",
2021-08-05 10:33:02 +00:00
DescriptionSrc: "meta",
PhotoPath: "2790/07",
PhotoName: "27900704_070228_D6D51B6C",
OriginalName: "Vacation/exampleFileNameOriginal",
2020-04-30 15:26:36 +00:00
PhotoFavorite: false,
2021-08-04 16:43:39 +00:00
//PhotoSingle
2020-04-30 15:26:36 +00:00
PhotoPrivate: false,
2021-08-04 16:43:39 +00:00
PhotoScan: false,
PhotoPanorama: false,
2021-08-05 10:33:02 +00:00
TimeZone: "Europe/Berlin",
2021-08-04 16:43:39 +00:00
Place: &UnknownPlace,
PlaceID: UnknownPlace.ID,
PlaceSrc: "",
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
CellAccuracy: 0,
PhotoAltitude: 0,
2021-08-05 10:33:02 +00:00
PhotoLat: 0,
PhotoLng: 0,
2021-08-04 16:43:39 +00:00
PhotoCountry: UnknownPlace.CountryCode(),
PhotoYear: 2790,
2021-08-05 10:33:02 +00:00
PhotoMonth: 7,
PhotoDay: 4,
PhotoIso: 200,
PhotoExposure: "1/80",
2021-08-04 16:43:39 +00:00
PhotoFNumber: 5,
2021-08-05 10:33:02 +00:00
PhotoFocalLength: 50,
PhotoQuality: 3,
2021-08-04 16:43:39 +00:00
PhotoResolution: 2,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
CameraSerial: "",
2021-08-05 10:33:02 +00:00
CameraSrc: "meta",
2021-08-04 16:43:39 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Details: DetailsFixtures.Pointer("lake", 1000000),
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"),
},
2021-08-05 08:30:08 +00:00
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,
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-08-05 10:33:02 +00:00
PhotoColor: 9,
2021-08-04 16:43:39 +00:00
PhotoStack: 0,
2021-09-02 15:43:46 +00:00
PhotoFaces: 3,
2020-04-30 15:26:36 +00:00
},
2021-08-16 13:17:43 +00:00
"Photo01": { //DNG + XMP, Indexed, lat/lng manually set
2020-04-30 15:26:36 +00:00
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",
2021-08-16 13:17:43 +00:00
PhotoType: "raw",
2021-08-04 16:43:39 +00:00
TypeSrc: "",
2020-04-30 15:26:36 +00:00
PhotoTitle: "",
TitleSrc: "",
PhotoDescription: "photo description blacklist",
2021-08-04 16:43:39 +00:00
DescriptionSrc: "",
2020-04-30 15:26:36 +00:00
PhotoPath: "2790/02",
PhotoName: "Photo01",
2021-08-04 16:43:39 +00:00
OriginalName: "",
2020-05-01 12:13:59 +00:00
PhotoFavorite: true,
2020-04-30 15:26:36 +00:00
PhotoPrivate: false,
2021-08-04 16:43:39 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
2021-08-16 13:17:43 +00:00
Place: PlaceFixtures.Pointer("Germany"),
PlaceID: PlaceFixtures.Pointer("Germany").ID,
PlaceSrc: "manual",
Cell: CellFixtures.Pointer("Neckarbrücke"),
CellID: CellFixtures.Pointer("Neckarbrücke").ID,
2021-08-04 16:43:39 +00:00
CellAccuracy: 0,
PhotoAltitude: 0,
2020-04-30 15:26:36 +00:00
PhotoLat: 48.519234,
PhotoLng: 9.057997,
2021-08-16 13:17:43 +00:00
PhotoCountry: "de",
2021-08-04 16:43:39 +00:00
PhotoYear: 2790,
PhotoMonth: 2,
PhotoDay: 12,
2020-05-01 12:13:59 +00:00
PhotoIso: 0,
2020-04-30 15:26:36 +00:00
PhotoExposure: "",
2021-08-04 16:43:39 +00:00
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 3,
PhotoResolution: 2,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2020-04-30 15:26:36 +00:00
CameraSerial: "",
CameraSrc: "",
2021-08-04 16:43:39 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Details: DetailsFixtures.Pointer("lake", 1000001),
Keywords: []Keyword{},
Albums: []Album{},
2020-04-30 15:26:36 +00:00
Files: []File{},
Labels: []PhotoLabel{
LabelFixtures.PhotoLabel(1000001, "no-jpeg", 20, "image"),
},
2021-08-05 08:30:08 +00:00
CreatedAt: time.Date(2009, 1, 1, 0, 0, 0, 0, time.UTC),
2021-08-16 13:17:43 +00:00
UpdatedAt: time.Date(2020, 3, 28, 14, 6, 0, 0, time.UTC),
2021-08-05 08:30:08 +00:00
EditedAt: nil,
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-08-16 13:17:43 +00:00
PhotoColor: 3,
2021-08-04 16:43:39 +00:00
PhotoStack: 0,
2021-09-02 15:43:46 +00:00
PhotoFaces: 0,
2020-04-30 15:26:36 +00:00
},
2021-08-16 13:17:43 +00:00
"Photo02": { //JPG, Indexed, No Geo-information
2020-04-30 15:26:36 +00:00
ID: 1000002,
PhotoUID: "pt9jtdre2lvl0yh9",
2021-08-16 13:17:43 +00:00
TakenAt: time.Date(1990, 3, 2, 0, 0, 0, 0, time.UTC),
TakenAtLocal: time.Date(1990, 3, 2, 0, 0, 0, 0, time.UTC),
TakenSrc: "manual",
2021-08-04 16:43:39 +00:00
PhotoType: "image",
TypeSrc: "",
2020-04-30 15:26:36 +00:00
PhotoTitle: "",
TitleSrc: "",
2021-08-04 16:43:39 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2021-08-16 13:17:43 +00:00
PhotoPath: "London",
PhotoName: "bridge1",
2021-08-04 16:43:39 +00:00
OriginalName: "",
2020-04-30 15:26:36 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-04 16:43:39 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: &UnknownPlace,
PlaceID: UnknownPlace.ID,
PlaceSrc: "",
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
CellAccuracy: 0,
PhotoAltitude: 0,
2021-08-16 13:17:43 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoCountry: UnknownPlace.CountryCode(),
PhotoYear: 1990,
PhotoMonth: 3,
2021-08-04 16:43:39 +00:00
PhotoDay: 2,
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 3,
PhotoResolution: 2,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-04 16:43:39 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-04 16:43:39 +00:00
Details: DetailsFixtures.Pointer("lake", 1000002),
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),
2021-08-16 15:14:18 +00:00
UpdatedAt: time.Date(2010, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
2021-08-04 16:43:39 +00:00
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-08-16 13:17:43 +00:00
PhotoColor: 12,
2021-08-04 16:43:39 +00:00
PhotoStack: 0,
2021-09-02 15:43:46 +00:00
PhotoFaces: 1,
2020-04-30 15:26:36 +00:00
},
2021-08-16 15:14:18 +00:00
"Photo03": { // JPG + JPG (same instance ID) + MP4, Indexed, Place from metadata
2020-04-30 15:26:36 +00:00
ID: 1000003,
PhotoUID: "pt9jtdre2lvl0yh0",
2021-08-16 15:14:18 +00:00
TakenAt: time.Date(1990, 4, 18, 1, 0, 0, 0, time.UTC),
TakenAtLocal: time.Date(1990, 4, 18, 1, 0, 0, 0, time.UTC),
TakenSrc: "meta",
2021-08-16 15:14:18 +00:00
PhotoType: "video",
2021-08-04 16:43:39 +00:00
TypeSrc: "",
2020-04-30 15:26:36 +00:00
PhotoTitle: "",
TitleSrc: "",
2021-08-04 16:43:39 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2020-04-30 15:26:36 +00:00
PhotoPath: "1990/04",
2021-08-16 15:14:18 +00:00
PhotoName: "bridge2",
2021-08-04 16:43:39 +00:00
OriginalName: "",
2020-04-30 15:26:36 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-04 16:43:39 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: CellFixtures.Pointer("caravan park").Place,
PlaceID: CellFixtures.Pointer("caravan park").Place.ID,
2021-08-16 15:14:18 +00:00
PlaceSrc: "meta",
Cell: CellFixtures.Pointer("caravan park"),
CellID: CellFixtures.Pointer("caravan park").ID,
2021-08-04 16:43:39 +00:00
CellAccuracy: 0,
PhotoAltitude: 0,
PhotoLat: 48.519234,
PhotoLng: 9.057997,
PhotoCountry: CellFixtures.Pointer("caravan park").Place.CountryCode(),
2020-04-30 15:26:36 +00:00
PhotoYear: 1990,
PhotoMonth: 4,
2021-08-04 16:43:39 +00:00
PhotoDay: 18,
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 4,
PhotoResolution: 2,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-04 16:43:39 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-04 16:43:39 +00:00
Details: DetailsFixtures.Pointer("bridge", 1000003),
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"),
},
2021-08-05 08:30:08 +00:00
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,
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-08-16 15:14:18 +00:00
PhotoColor: 12,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
2021-09-02 15:43:46 +00:00
PhotoFaces: 1,
2020-04-30 15:26:36 +00:00
},
2021-08-16 15:14:18 +00:00
"Photo04": { //JPG, Indexed, Place estimated
2020-04-30 15:26:36 +00:00
ID: 1000004,
PhotoUID: "pt9jtdre2lvl0y11",
2020-04-30 15:26:36 +00:00
TakenAt: time.Date(2014, 7, 17, 15, 42, 12, 0, time.UTC),
2021-08-16 15:14:18 +00:00
TakenAtLocal: time.Date(2014, 7, 17, 17, 42, 12, 0, time.UTC),
TakenSrc: "meta",
2021-08-04 16:43:39 +00:00
PhotoType: "image",
TypeSrc: "",
2020-04-30 15:26:36 +00:00
PhotoTitle: "Neckarbrücke",
TitleSrc: "",
2021-08-04 16:43:39 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2021-08-16 15:14:18 +00:00
PhotoPath: "Germany",
PhotoName: "bridge",
2021-08-04 16:43:39 +00:00
OriginalName: "",
2020-04-30 15:26:36 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-04 16:43:39 +00:00
PhotoScan: false,
PhotoPanorama: false,
2021-08-16 15:14:18 +00:00
TimeZone: "Europe/Berlin",
Place: PlaceFixtures.Pointer("Germany"),
PlaceID: PlaceFixtures.Pointer("Germany").ID,
PlaceSrc: "estimate",
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
2021-08-04 16:43:39 +00:00
CellAccuracy: 0,
PhotoAltitude: 0,
2021-08-16 15:14:18 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoCountry: PlaceFixtures.Pointer("Germany").CountryCode(),
2020-04-30 15:26:36 +00:00
PhotoYear: 2014,
PhotoMonth: 7,
2021-08-04 16:43:39 +00:00
PhotoDay: 10,
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 3,
PhotoResolution: 2,
2020-05-13 17:46:49 +00:00
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-04 16:43:39 +00:00
CameraSerial: "",
CameraSrc: "",
2020-05-13 17:46:49 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-04 16:43:39 +00:00
Details: DetailsFixtures.Pointer("lake", 1000004),
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"),
},
2021-08-05 08:30:08 +00:00
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,
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-08-16 15:14:18 +00:00
PhotoColor: 12,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
2021-09-02 15:43:46 +00:00
PhotoFaces: 6,
2020-04-30 15:26:36 +00:00
},
2021-08-16 15:14:18 +00:00
"Photo05": { //JPG, Imported, File error, TakenAtSrc Name, titleSrc Name
2020-04-30 15:26:36 +00:00
ID: 1000005,
PhotoUID: "pt9jtdre2lvl0y12",
2021-08-16 15:14:18 +00:00
TakenAt: time.Date(2015, 11, 1, 0, 0, 0, 0, time.UTC),
TakenAtLocal: time.Date(2015, 11, 1, 0, 0, 0, 0, time.UTC),
TakenSrc: "name",
2021-08-04 16:43:39 +00:00
PhotoType: "image",
TypeSrc: "",
2020-04-30 15:26:36 +00:00
PhotoTitle: "Reunion",
2021-08-16 15:14:18 +00:00
TitleSrc: "name",
2021-08-04 16:43:39 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2021-08-16 15:14:18 +00:00
PhotoPath: "2015/11",
PhotoName: "20151101_000000_51C501B5",
OriginalName: "2015/11/reunion",
2020-04-30 15:26:36 +00:00
PhotoFavorite: false,
2020-05-14 12:17:12 +00:00
PhotoPrivate: true,
2021-08-04 16:43:39 +00:00
PhotoScan: false,
PhotoPanorama: false,
2021-08-16 15:14:18 +00:00
TimeZone: "America/Mexico_City",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
2021-08-16 15:14:18 +00:00
PlaceSrc: "meta",
2021-08-04 16:43:39 +00:00
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
CellAccuracy: 0,
PhotoAltitude: 0,
PhotoLat: -21.342636,
PhotoLng: 55.466944,
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
2021-08-16 15:14:18 +00:00
PhotoYear: 2015,
PhotoMonth: 11,
PhotoDay: 0,
2021-08-04 16:43:39 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 3,
PhotoResolution: 2,
2020-05-13 17:46:49 +00:00
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-04 16:43:39 +00:00
CameraSerial: "123",
CameraSrc: "",
2020-05-13 17:46:49 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-04 16:43:39 +00:00
Details: DetailsFixtures.Pointer("lake", 1000005),
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,
2021-08-04 16:43:39 +00:00
CheckedAt: &checkedTime,
2020-05-04 15:54:42 +00:00
DeletedAt: nil,
2021-08-16 15:14:18 +00:00
PhotoColor: 6,
2021-08-04 16:43:39 +00:00
PhotoStack: 0,
2021-09-02 15:43:46 +00:00
PhotoFaces: 1,
2020-05-04 15:54:42 +00:00
},
2021-09-02 15:43:46 +00:00
"Photo06": { // PNG + JPG, Private, Indexed
2020-05-04 15:54:42 +00:00
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",
2021-08-04 16:43:39 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-04 15:54:42 +00:00
PhotoTitle: "ToBeUpdated",
2021-09-02 15:43:46 +00:00
TitleSrc: SrcMeta,
2021-08-04 16:43:39 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2020-05-04 15:54:42 +00:00
PhotoPath: "2016/11",
PhotoName: "Photo06",
2021-08-04 16:43:39 +00:00
OriginalName: "",
2020-05-04 15:54:42 +00:00
PhotoFavorite: false,
2021-09-02 15:43:46 +00:00
PhotoPrivate: true,
2021-08-04 16:43:39 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: &UnknownPlace,
PlaceID: UnknownPlace.ID,
2021-08-04 16:43:39 +00:00
PlaceSrc: "",
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
CellAccuracy: 0,
PhotoAltitude: 0,
PhotoLat: -21.342636,
PhotoLng: 55.466944,
PhotoCountry: UnknownPlace.CountryCode(),
2021-09-02 15:43:46 +00:00
PhotoYear: 2016,
PhotoMonth: 11,
PhotoDay: 11,
2021-08-04 16:43:39 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 2,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-04 16:43:39 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-04 16:43:39 +00:00
Details: DetailsFixtures.Pointer("lake", 1000006),
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,
2021-08-04 16:43:39 +00:00
CheckedAt: &checkedTime,
2020-04-30 15:26:36 +00:00
DeletedAt: nil,
2021-09-02 15:43:46 +00:00
PhotoColor: 4,
2021-08-04 16:43:39 +00:00
PhotoStack: 0,
PhotoFaces: 0,
2020-04-30 15:26:36 +00:00
},
2021-09-02 15:43:46 +00:00
"Photo07": { // Heif, Hei.JPG, Indexed
2020-05-08 12:18:11 +00:00
ID: 1000007,
PhotoUID: "pt9jtdre2lvl0y14",
2021-09-02 15:43:46 +00:00
TakenAt: time.Date(2016, 11, 12, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 11, 12, 9, 7, 18, 0, time.UTC),
2020-05-08 12:18:11 +00:00
TakenSrc: "",
2021-08-04 16:43:39 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-08 12:18:11 +00:00
PhotoTitle: "ToBeUpdated",
2021-09-02 15:43:46 +00:00
TitleSrc: SrcMeta,
2021-08-04 16:43:39 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2020-05-08 12:18:11 +00:00
PhotoPath: "2016/11",
PhotoName: "Photo07",
2021-08-04 16:43:39 +00:00
OriginalName: "",
2020-05-08 12:18:11 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-04 16:43:39 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: &UnknownPlace,
PlaceID: UnknownPlace.ID,
2021-08-04 16:43:39 +00:00
PlaceSrc: "",
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
CellAccuracy: 0,
PhotoAltitude: 0,
2021-09-02 15:43:46 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoCountry: UnknownPlace.CountryCode(),
2021-09-02 15:43:46 +00:00
PhotoYear: 2016,
PhotoMonth: 11,
PhotoDay: 12,
2021-08-04 16:43:39 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-04 16:43:39 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-04 16:43:39 +00:00
Details: DetailsFixtures.Pointer("lake", 1000007),
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,
2021-08-04 16:43:39 +00:00
CheckedAt: &checkedTime,
2020-05-08 12:18:11 +00:00
DeletedAt: nil,
2021-09-02 15:43:46 +00:00
PhotoColor: 4,
2021-08-04 16:43:39 +00:00
PhotoStack: 0,
PhotoFaces: 0,
2020-05-08 12:18:11 +00:00
},
2021-09-02 15:43:46 +00:00
"Photo08": { // JPG, Indexed, Monochrome, Places meta
2020-05-08 13:46:16 +00:00
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: "",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-08 13:46:16 +00:00
PhotoTitle: "Black beach",
2021-09-02 15:43:46 +00:00
TitleSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2020-05-08 13:46:16 +00:00
PhotoPath: "2016/11",
PhotoName: "Photo08",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2020-05-08 13:46:16 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
2021-09-02 15:43:46 +00:00
PlaceSrc: SrcManual,
2021-08-05 08:30:08 +00:00
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
CellAccuracy: 0,
PhotoAltitude: 0,
PhotoLat: 19.681944,
PhotoLng: -98.84659,
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
2021-09-02 15:43:46 +00:00
PhotoYear: 2016,
PhotoMonth: 11,
PhotoDay: 11,
2021-08-05 08:30:08 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-05 08:30:08 +00:00
Details: DetailsFixtures.Pointer("lake", 1000008),
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,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-09-02 15:43:46 +00:00
PhotoColor: 1,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
PhotoFaces: 0,
2020-05-08 13:46:16 +00:00
},
2021-09-02 15:43:46 +00:00
"Photo09": { // jpg + jpg, stack sequential name, indexed
2020-05-11 15:01:05 +00:00
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: "",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-11 15:01:05 +00:00
PhotoTitle: "Title",
TitleSrc: "",
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2020-05-11 15:01:05 +00:00
PhotoPath: "2016/11",
PhotoName: "Photo09",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2020-05-11 15:01:05 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
PlaceSrc: "",
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
CellAccuracy: 0,
PhotoAltitude: 0,
2020-05-11 15:01:05 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
2021-09-02 15:43:46 +00:00
PhotoYear: 2016,
PhotoMonth: 11,
PhotoDay: 11,
2021-08-05 08:30:08 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-05 08:30:08 +00:00
Details: DetailsFixtures.Pointer("lake", 1000009),
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,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-09-02 15:43:46 +00:00
PhotoColor: 1,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
PhotoFaces: 0,
2020-05-11 15:01:05 +00:00
},
2021-08-16 15:14:18 +00:00
"Photo10": { //mp4 + mp4 with error + jpg in sidecar, Indexed
2020-05-11 15:01:05 +00:00
ID: 1000010,
PhotoUID: "pt9jtdre2lvl0y17",
2020-05-11 15:01:05 +00:00
TakenAt: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
2021-08-16 15:14:18 +00:00
TakenAtLocal: time.Date(2016, 11, 11, 11, 7, 18, 0, time.UTC),
TakenSrc: "manual",
PhotoType: "video",
2021-08-05 08:30:08 +00:00
TypeSrc: "",
2020-05-11 15:01:05 +00:00
PhotoTitle: "Title",
TitleSrc: "",
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2021-08-16 15:14:18 +00:00
PhotoPath: "Holiday",
PhotoName: "Video",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2020-05-11 15:01:05 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
2021-08-16 15:14:18 +00:00
TimeZone: "Europe/Berlin",
2021-08-05 08:30:08 +00:00
Place: PlaceFixtures.Pointer("holidaypark"),
PlaceID: PlaceFixtures.Pointer("holidaypark").ID,
2021-08-16 15:14:18 +00:00
PlaceSrc: "meta",
2021-08-05 08:30:08 +00:00
Cell: CellFixtures.Pointer("hassloch"),
CellID: CellFixtures.Pointer("hassloch").ID,
CellAccuracy: 0,
PhotoAltitude: 0,
2021-08-16 15:14:18 +00:00
PhotoLat: 49.31,
PhotoLng: 8.30,
PhotoCountry: PlaceFixtures.Pointer("holidaypark").CountryCode(),
2021-08-16 15:14:18 +00:00
PhotoYear: 2016,
PhotoMonth: 11,
PhotoDay: 11,
2021-08-05 08:30:08 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-05 08:30:08 +00:00
Details: DetailsFixtures.Pointer("lake", 10000010),
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,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-08-16 15:14:18 +00:00
PhotoColor: 9,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
2021-09-02 15:43:46 +00:00
PhotoFaces: 1,
2020-05-11 15:01:05 +00:00
},
2021-09-02 15:43:46 +00:00
"Photo11": { // JPG
2020-05-11 15:01:05 +00:00
ID: 1000011,
PhotoUID: "pt9jtdre2lvl0y18",
2021-09-02 15:43:46 +00:00
TakenAt: time.Date(2016, 12, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 12, 11, 9, 7, 18, 0, time.UTC),
2020-05-11 15:01:05 +00:00
TakenSrc: "",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-11 15:01:05 +00:00
PhotoTitle: "Title",
TitleSrc: "",
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2021-09-02 15:43:46 +00:00
PhotoPath: "2016/12",
PhotoName: "Photo11",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2020-05-11 15:01:05 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: PlaceFixtures.Pointer("emptyNameLongCity"),
PlaceID: PlaceFixtures.Pointer("emptyNameLongCity").ID,
PlaceSrc: "",
Cell: CellFixtures.Pointer("emptyNameLongCity"),
CellID: CellFixtures.Pointer("emptyNameLongCity").ID,
CellAccuracy: 0,
PhotoAltitude: 0,
2020-05-11 15:01:05 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoCountry: PlaceFixtures.Pointer("emptyNameLongCity").CountryCode(),
2021-09-02 15:43:46 +00:00
PhotoYear: 2016,
PhotoMonth: 12,
PhotoDay: 11,
2021-08-05 08:30:08 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-05 08:30:08 +00:00
Details: DetailsFixtures.Pointer("lake", 10000011),
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,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-09-02 15:43:46 +00:00
PhotoColor: 11,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
PhotoFaces: 0,
2020-05-11 15:01:05 +00:00
},
2021-09-02 15:43:46 +00:00
"Photo12": { //JPG
2020-05-11 15:01:05 +00:00
ID: 1000012,
PhotoUID: "pt9jtdre2lvl0y19",
2021-09-02 15:43:46 +00:00
TakenAt: time.Date(2016, 01, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 01, 11, 9, 7, 18, 0, time.UTC),
2020-05-11 15:01:05 +00:00
TakenSrc: "",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-11 15:01:05 +00:00
PhotoTitle: "Title",
TitleSrc: "",
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2021-09-02 15:43:46 +00:00
PhotoPath: "2016/01",
PhotoName: "Photo12",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2020-05-11 15:01:05 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: PlaceFixtures.Pointer("emptyNameShortCity"),
PlaceID: PlaceFixtures.Pointer("emptyNameShortCity").ID,
PlaceSrc: "",
Cell: CellFixtures.Pointer("emptyNameShortCity"),
CellID: CellFixtures.Pointer("emptyNameShortCity").ID,
CellAccuracy: 0,
PhotoAltitude: 0,
2020-05-11 15:01:05 +00:00
PhotoLat: 0,
PhotoLng: 0,
2021-08-05 08:30:08 +00:00
PhotoCountry: PlaceFixtures.Pointer("emptyNameShortCity").CountryCode(),
2021-09-02 15:43:46 +00:00
PhotoYear: 2016,
PhotoMonth: 1,
PhotoDay: 11,
2020-05-11 15:01:05 +00:00
PhotoIso: 0,
PhotoExposure: "",
2021-08-05 08:30:08 +00:00
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
CameraSerial: "",
CameraSrc: "",
2021-08-05 08:30:08 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Details: &Details{},
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,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
2020-05-11 15:01:05 +00:00
DeletedAt: nil,
2021-09-02 15:43:46 +00:00
PhotoColor: 1,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
2021-09-02 15:43:46 +00:00
PhotoFaces: 0,
2020-05-11 15:01:05 +00:00
},
2021-09-02 15:43:46 +00:00
"Photo13": { //JPG
2020-05-11 15:01:05 +00:00
ID: 1000013,
PhotoUID: "pt9jtdre2lvl0y20",
2021-09-02 15:43:46 +00:00
TakenAt: time.Date(2016, 06, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2016, 06, 11, 9, 7, 18, 0, time.UTC),
2020-05-11 15:01:05 +00:00
TakenSrc: "",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-11 15:01:05 +00:00
PhotoTitle: "Title",
TitleSrc: "",
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2021-09-02 15:43:46 +00:00
PhotoPath: "2016/06",
PhotoName: "Photo13",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2020-05-11 15:01:05 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: PlaceFixtures.Pointer("veryLongLocName"),
PlaceID: PlaceFixtures.Pointer("veryLongLocName").ID,
2021-08-05 08:30:08 +00:00
PlaceSrc: "",
Cell: CellFixtures.Pointer("veryLongLocName"),
CellID: CellFixtures.Pointer("veryLongLocName").ID,
CellAccuracy: 0,
PhotoAltitude: 0,
PhotoLat: 0,
PhotoLng: 0,
PhotoCountry: PlaceFixtures.Pointer("veryLongLocName").CountryCode(),
2021-09-02 15:43:46 +00:00
PhotoYear: 2016,
PhotoMonth: 6,
PhotoDay: 11,
2021-08-05 08:30:08 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-05 08:30:08 +00:00
Details: &Details{},
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,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
2020-05-11 15:01:05 +00:00
DeletedAt: nil,
2021-09-02 15:43:46 +00:00
PhotoColor: 1,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
2021-09-02 15:43:46 +00:00
PhotoFaces: 0,
2020-05-11 15:01:05 +00:00
},
2021-09-02 15:43:46 +00:00
"Photo14": { //JPG
2020-05-11 15:01:05 +00:00
ID: 1000014,
PhotoUID: "pt9jtdre2lvl0y21",
2021-09-02 15:43:46 +00:00
TakenAt: time.Date(2018, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2018, 11, 11, 9, 7, 18, 0, time.UTC),
2020-05-11 15:01:05 +00:00
TakenSrc: "",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-11 15:01:05 +00:00
PhotoTitle: "Title",
TitleSrc: "",
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2021-09-02 15:43:46 +00:00
PhotoPath: "2018/11",
PhotoName: "Photo14",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2020-05-11 15:01:05 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: PlaceFixtures.Pointer("mediumLongLocName"),
PlaceID: PlaceFixtures.Pointer("mediumLongLocName").ID,
PlaceSrc: "",
Cell: CellFixtures.Pointer("mediumLongLocName"),
CellID: CellFixtures.Pointer("mediumLongLocName").ID,
CellAccuracy: 0,
PhotoAltitude: 0,
2020-05-11 15:01:05 +00:00
PhotoLat: 0,
PhotoLng: 0,
PhotoCountry: PlaceFixtures.Pointer("mediumLongLocName").CountryCode(),
2021-09-02 15:43:46 +00:00
PhotoYear: 2018,
PhotoMonth: 11,
PhotoDay: 11,
2021-08-05 08:30:08 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-05 08:30:08 +00:00
Details: &Details{},
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,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-09-02 15:43:46 +00:00
PhotoColor: 1,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
2021-09-02 15:43:46 +00:00
PhotoFaces: 0,
2020-05-12 09:51:28 +00:00
},
2021-08-16 16:18:37 +00:00
"Photo15": { // JPG FileMissing = true, Indexed
2020-05-12 09:51:28 +00:00
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",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-12 09:51:28 +00:00
PhotoTitle: "TitleToBeSet",
2021-08-16 16:18:37 +00:00
TitleSrc: SrcName,
PhotoDescription: "photo description blacklist",
2021-08-16 16:18:37 +00:00
DescriptionSrc: SrcMeta,
PhotoPath: "1990",
2021-08-16 16:18:37 +00:00
PhotoName: "missing",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2020-05-12 09:51:28 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
2021-08-16 16:18:37 +00:00
Place: PlaceFixtures.Pointer("Germany"),
PlaceID: PlaceFixtures.Pointer("Germany").ID,
PlaceSrc: SrcMeta,
Cell: CellFixtures.Pointer("Neckarbrücke"),
CellID: CellFixtures.Pointer("Neckarbrücke").ID,
2021-08-05 08:30:08 +00:00
CellAccuracy: 0,
PhotoAltitude: 3,
PhotoLat: 1.234,
PhotoLng: 4.321,
2021-08-16 16:18:37 +00:00
PhotoCountry: "de",
PhotoYear: 2013,
PhotoMonth: 11,
PhotoDay: 11,
2021-08-05 08:30:08 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-05 08:30:08 +00:00
Details: DetailsFixtures.Pointer("blacklist", 1000015),
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,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
2020-05-12 09:51:28 +00:00
DeletedAt: nil,
2021-08-16 16:18:37 +00:00
PhotoColor: 6,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
PhotoFaces: 0,
2020-05-12 09:51:28 +00:00
},
2021-09-02 15:43:46 +00:00
"Photo16": { //JPG
2020-05-12 09:51:28 +00:00
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: "",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-12 09:51:28 +00:00
PhotoTitle: "ForDeletion",
2021-09-02 15:43:46 +00:00
TitleSrc: SrcName,
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
2021-09-02 15:43:46 +00:00
DescriptionSrc: "",
PhotoPath: "1990",
PhotoName: "Photo16",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2020-05-12 09:51:28 +00:00
PhotoFavorite: false,
PhotoPrivate: false,
2021-09-20 12:05:44 +00:00
PhotoScan: true,
2021-08-05 08:30:08 +00:00
PhotoPanorama: false,
TimeZone: "",
Place: &UnknownPlace,
PlaceID: UnknownPlace.ID,
2021-09-02 15:43:46 +00:00
PlaceSrc: "",
2021-08-05 08:30:08 +00:00
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
CellAccuracy: 0,
PhotoAltitude: 3,
2020-05-12 09:51:28 +00:00
PhotoLat: 1.234,
PhotoLng: 4.321,
2021-08-05 08:30:08 +00:00
PhotoCountry: UnknownCountry.ID,
2021-09-02 15:43:46 +00:00
PhotoYear: 2013,
PhotoMonth: 11,
PhotoDay: 11,
2020-05-12 09:51:28 +00:00
PhotoIso: 0,
PhotoExposure: "",
2021-08-05 08:30:08 +00:00
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
CameraSerial: "",
CameraSrc: "",
2021-08-05 08:30:08 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Details: DetailsFixtures.Pointer("lake", 1000015),
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,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
2020-05-13 09:51:51 +00:00
DeletedAt: nil,
2021-09-02 15:43:46 +00:00
PhotoColor: 1,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
PhotoFaces: 0,
2020-05-13 09:51:51 +00:00
},
2021-08-17 14:40:24 +00:00
"Photo17": { // JPG, Indexed, Favorite, Quality 1, Places from metadata
2020-05-13 09:51:51 +00:00
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: "",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-13 09:51:51 +00:00
PhotoTitle: "Quality1FavoriteTrue",
2021-08-16 16:18:37 +00:00
TitleSrc: SrcName,
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
2021-08-16 16:18:37 +00:00
DescriptionSrc: SrcAuto,
PhotoPath: "1990/04",
2021-08-16 16:18:37 +00:00
PhotoName: "Quality1FavoriteTrue",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2020-05-13 09:51:51 +00:00
PhotoFavorite: true,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
2021-08-16 16:18:37 +00:00
PlaceSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
CellAccuracy: 0,
PhotoAltitude: 3,
2020-05-13 09:51:51 +00:00
PhotoLat: 1.234,
PhotoLng: 4.321,
2021-08-05 08:30:08 +00:00
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
2021-08-16 16:18:37 +00:00
PhotoYear: 2013,
PhotoMonth: 11,
PhotoDay: 11,
2020-05-13 09:51:51 +00:00
PhotoIso: 0,
PhotoExposure: "",
2021-08-05 08:30:08 +00:00
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Details: DetailsFixtures.Pointer("lake", 1000015),
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")},
2021-08-05 08:30:08 +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,
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-08-16 16:18:37 +00:00
PhotoColor: 6,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
PhotoFaces: 0,
2020-05-14 12:17:12 +00:00
},
2021-08-17 14:40:24 +00:00
"Photo18": { // JPG, Indexed, Archived, Chroma 0
2020-05-14 12:17:12 +00:00
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),
2021-08-17 14:40:24 +00:00
TakenSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2020-05-14 12:17:12 +00:00
PhotoTitle: "ArchivedChroma0",
TitleSrc: "",
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
2021-08-17 14:40:24 +00:00
DescriptionSrc: "",
PhotoPath: "Archived",
PhotoName: "Photo18",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2020-05-14 12:17:12 +00:00
PhotoFavorite: true,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
2021-08-17 14:40:24 +00:00
PlaceSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
CellAccuracy: 0,
PhotoAltitude: 3,
2020-05-14 12:17:12 +00:00
PhotoLat: 1.234,
PhotoLng: 4.321,
2021-08-05 08:30:08 +00:00
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
2021-08-17 14:40:24 +00:00
PhotoYear: 2013,
PhotoMonth: 11,
PhotoDay: 11,
2020-05-14 12:17:12 +00:00
PhotoIso: 0,
PhotoExposure: "",
2021-08-05 08:30:08 +00:00
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 0,
PhotoResolution: 0,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Details: DetailsFixtures.Pointer("lake", 1000015),
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")},
2021-08-05 08:30:08 +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,
CheckedAt: &checkedTime,
DeletedAt: &deleteTime,
2021-08-17 14:40:24 +00:00
PhotoColor: 9,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
PhotoFaces: 0,
2020-05-11 15:01:05 +00:00
},
2021-08-17 14:40:24 +00:00
"Photo19": { // JPG, Indexed, Low Quality
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),
2021-08-17 14:40:24 +00:00
TakenAtLocal: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
TakenSrc: "",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
PhotoTitle: "",
TitleSrc: "",
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
DescriptionSrc: "",
PhotoPath: "1990/04",
2020-12-12 21:02:14 +00:00
PhotoName: "Photo19",
2021-08-05 08:30:08 +00:00
OriginalName: "",
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: &UnknownPlace,
PlaceID: UnknownPlace.ID,
PlaceSrc: "",
2021-08-05 08:30:08 +00:00
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
CellAccuracy: 0,
PhotoAltitude: 0,
PhotoLat: 0,
PhotoLng: 0,
PhotoCountry: UnknownPlace.CountryCode(),
2021-08-17 14:40:24 +00:00
PhotoYear: 2008,
PhotoMonth: 1,
PhotoDay: 1,
2021-08-05 08:30:08 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: -1,
PhotoResolution: 2,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-05 08:30:08 +00:00
Details: DetailsFixtures.Pointer("bridge", 1000019),
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{},
CreatedAt: time.Date(2009, 1, 1, 0, 0, 0, 0, time.UTC),
2021-08-17 14:40:24 +00:00
UpdatedAt: time.Date(2010, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-08-17 14:40:24 +00:00
PhotoColor: 12,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
PhotoFaces: 0,
},
2021-09-02 15:43:46 +00:00
"Photo20": { // JPG
ID: 1000020,
PhotoUID: "pt9jtxrexxvl0y20",
TakenAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
TakenAtLocal: time.Time{},
TakenSrc: "",
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
PhotoTitle: "",
TitleSrc: "",
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
DescriptionSrc: "",
PhotoPath: "1990/04",
2020-12-12 21:02:14 +00:00
PhotoName: "Photo20",
2021-08-05 08:30:08 +00:00
OriginalName: "",
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: &UnknownPlace,
PlaceID: UnknownPlace.ID,
PlaceSrc: "",
2021-08-05 08:30:08 +00:00
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
CellAccuracy: 0,
PhotoAltitude: 0,
PhotoLat: 0,
PhotoLng: 0,
PhotoCountry: UnknownPlace.CountryCode(),
2021-09-02 15:43:46 +00:00
PhotoYear: 2008,
PhotoMonth: 1,
PhotoDay: 1,
2021-08-05 08:30:08 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 1,
PhotoResolution: 2,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-05 08:30:08 +00:00
Details: DetailsFixtures.Pointer("bridge", 1000019),
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,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-09-02 15:43:46 +00:00
PhotoColor: 1,
2021-08-05 08:30:08 +00:00
PhotoStack: 0,
PhotoFaces: 0,
},
2021-08-23 15:20:03 +00:00
"Photo21": { // mp4 + mp4.jpg, Imported, Estimated Location
ID: 1000021,
PhotoUID: "pt9jtxrexxvl0y21",
2021-08-23 15:20:03 +00:00
TakenAt: time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC),
TakenAtLocal: time.Time{},
TakenSrc: "",
2021-08-23 15:20:03 +00:00
PhotoType: "video",
2021-08-05 08:30:08 +00:00
TypeSrc: "",
PhotoTitle: "",
TitleSrc: "",
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
DescriptionSrc: "",
2021-08-23 15:20:03 +00:00
PhotoPath: "2018/01",
PhotoName: "20180101_130410_418COOO0",
OriginalName: "my-videos/IMG_88888",
PhotoFavorite: false,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
2021-08-23 15:20:03 +00:00
TimeZone: "Europe/Berlin",
Place: PlaceFixtures.Pointer("Germany"),
PlaceID: PlaceFixtures.Pointer("Germany").ID,
PlaceSrc: "estimate",
2021-08-05 08:30:08 +00:00
Cell: &UnknownLocation,
CellID: UnknownLocation.ID,
CellAccuracy: 0,
PhotoAltitude: 0,
PhotoLat: 0,
PhotoLng: 0,
2021-08-23 15:20:03 +00:00
PhotoCountry: PlaceFixtures.Pointer("Germany").CountryCode(),
PhotoYear: 2018,
PhotoMonth: 1,
PhotoDay: 1,
2021-08-05 08:30:08 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 1,
PhotoResolution: 2,
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-05 08:30:08 +00:00
Details: DetailsFixtures.Pointer("bridge", 1000019),
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{},
2021-08-23 15:20:03 +00:00
CreatedAt: time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-08-05 08:30:08 +00:00
PhotoColor: 14,
PhotoStack: 0,
PhotoFaces: 0,
},
2021-08-23 15:20:03 +00:00
"Photo22": { // JPG + JPG (place&time stack)
2021-02-25 14:17:47 +00:00
ID: 1000022,
PhotoUID: "pt9jtxrexxvl0y22",
TakenAt: time.Date(2001, 1, 1, 7, 0, 0, 0, time.UTC),
TakenAtLocal: time.Date(2001, 1, 1, 7, 0, 0, 0, time.UTC),
2021-08-23 15:20:03 +00:00
TakenSrc: "",
2021-02-25 14:17:47 +00:00
PhotoType: "image",
2021-08-05 08:30:08 +00:00
TypeSrc: "",
PhotoTitle: "",
TitleSrc: "",
PhotoDescription: "",
DescriptionSrc: "",
2021-08-23 15:20:03 +00:00
PhotoPath: "Mexico-With-Family",
2021-08-05 08:30:08 +00:00
PhotoName: "Photo22",
OriginalName: "",
PhotoFavorite: false,
PhotoPrivate: false,
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
2021-08-23 15:20:03 +00:00
Place: PlaceFixtures.Pointer("mexico"),
2021-02-25 14:17:47 +00:00
PlaceID: PlaceFixtures.Pointer("mexico").ID,
2021-08-23 15:20:03 +00:00
PlaceSrc: SrcMeta,
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
2021-08-05 08:30:08 +00:00
CellAccuracy: 0,
PhotoAltitude: 0,
PhotoLat: 0,
PhotoLng: 0,
2021-08-23 15:20:03 +00:00
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
PhotoYear: 2001,
2021-02-25 14:17:47 +00:00
PhotoMonth: 1,
2021-08-23 15:20:03 +00:00
PhotoDay: 1,
2021-08-05 08:30:08 +00:00
PhotoIso: 0,
PhotoExposure: "",
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 1,
PhotoResolution: 2,
2021-02-25 14:17:47 +00:00
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
2021-02-25 14:17:47 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
2021-08-05 08:30:08 +00:00
Details: &Details{},
2021-02-25 14:17:47 +00:00
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{},
CreatedAt: time.Date(2010, 1, 1, 8, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2010, 1, 1, 8, 0, 0, 0, time.UTC),
EditedAt: nil,
2021-08-05 08:30:08 +00:00
CheckedAt: &checkedTime,
2021-02-25 14:17:47 +00:00
DeletedAt: nil,
2021-08-05 08:30:08 +00:00
PhotoColor: 14,
PhotoStack: 0,
PhotoFaces: 0,
2021-02-25 14:17:47 +00:00
},
2021-08-23 15:20:03 +00:00
"Photo23": { //JPG, Favorite
2021-02-25 14:17:47 +00:00
ID: 1000023,
PhotoUID: "pt9jtdre2lvl0y43",
TakenAt: time.Date(2020, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2020, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2021-02-25 14:17:47 +00:00
PhotoTitle: "ForMerge",
2021-08-23 15:20:03 +00:00
TitleSrc: SrcManual,
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
2021-08-23 15:20:03 +00:00
DescriptionSrc: "",
2021-02-25 14:17:47 +00:00
PhotoPath: "2020/vacation",
PhotoName: "PhotoMerge",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2021-02-25 14:17:47 +00:00
PhotoFavorite: true,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
2021-08-23 15:20:03 +00:00
PlaceSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
CellAccuracy: 0,
PhotoAltitude: 3,
2021-02-25 14:17:47 +00:00
PhotoLat: 1.234,
PhotoLng: 4.321,
2021-08-05 08:30:08 +00:00
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
2021-08-23 15:20:03 +00:00
PhotoYear: 2020,
PhotoMonth: 11,
PhotoDay: 11,
2021-02-25 14:17:47 +00:00
PhotoIso: 0,
2021-08-05 08:30:08 +00:00
PhotoExposure: "",
2021-02-25 14:17:47 +00:00
PhotoFocalLength: 0,
PhotoFNumber: 0,
2021-08-05 08:30:08 +00:00
PhotoQuality: 5,
PhotoResolution: 0,
2021-02-25 14:17:47 +00:00
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
2021-02-25 14:17:47 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Details: DetailsFixtures.Pointer("lake", 1000015),
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{
LabelFixtures.PhotoLabel(10000018, "landscape", 20, "image"),
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
2021-08-05 08:30:08 +00:00
CreatedAt: time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
CheckedAt: &checkedTime,
DeletedAt: nil,
PhotoColor: 14,
PhotoStack: 0,
PhotoFaces: 0,
2021-02-25 14:17:47 +00:00
},
2021-08-23 15:20:03 +00:00
"Photo24": { // CR2 + JPG in Sidecar, Indexed
2021-02-25 14:17:47 +00:00
ID: 1000024,
PhotoUID: "pt9jtdre2lvl0y44",
TakenAt: time.Date(2020, 11, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2020, 11, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: SrcMeta,
2021-08-23 15:20:03 +00:00
PhotoType: "raw",
2021-08-05 08:30:08 +00:00
TypeSrc: "",
2021-02-25 14:17:47 +00:00
PhotoTitle: "ForMerge2",
2021-08-23 15:20:03 +00:00
TitleSrc: SrcManual,
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
2021-08-23 15:20:03 +00:00
DescriptionSrc: "",
2021-02-25 14:17:47 +00:00
PhotoPath: "2020/vacation",
2021-08-23 15:20:03 +00:00
PhotoName: "PhotoMerge2",
2021-08-05 08:30:08 +00:00
OriginalName: "",
2021-02-25 14:17:47 +00:00
PhotoFavorite: true,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: false,
TimeZone: "",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
2021-08-23 15:20:03 +00:00
PlaceSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
CellAccuracy: 0,
PhotoAltitude: 3,
2021-02-25 14:17:47 +00:00
PhotoLat: 1.234,
PhotoLng: 4.321,
2021-08-05 08:30:08 +00:00
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
2021-08-23 15:20:03 +00:00
PhotoYear: 2020,
PhotoMonth: 11,
PhotoDay: 11,
2021-02-25 14:17:47 +00:00
PhotoIso: 0,
PhotoExposure: "",
2021-08-05 08:30:08 +00:00
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 5,
PhotoResolution: 0,
2021-02-25 14:17:47 +00:00
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
2021-02-25 14:17:47 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Details: DetailsFixtures.Pointer("lake", 1000015),
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{
LabelFixtures.PhotoLabel(10000018, "landscape", 20, "image"),
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
2021-08-05 08:30:08 +00:00
CreatedAt: time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
CheckedAt: &checkedTime,
DeletedAt: nil,
PhotoColor: 14,
PhotoStack: 0,
PhotoFaces: 0,
2021-02-25 14:17:47 +00:00
},
2021-08-17 14:40:24 +00:00
"Photo25": { // JPG, Indexed, Photo edited, Panorama true, Unstacked
2021-03-03 10:49:32 +00:00
ID: 1000025,
PhotoUID: "pt9jtdre2lvl0y45",
TakenAt: time.Date(2007, 1, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2007, 1, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2021-03-03 10:49:32 +00:00
PhotoTitle: "photowitheditedatdate",
2021-08-17 14:40:24 +00:00
TitleSrc: SrcManual,
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
2021-08-17 14:40:24 +00:00
DescriptionSrc: "",
2021-03-10 10:30:09 +00:00
PhotoPath: "2007/12",
2021-03-03 10:49:32 +00:00
PhotoName: "PhotoWithEditedAt",
2021-08-17 14:40:24 +00:00
OriginalName: "",
2021-03-03 10:49:32 +00:00
PhotoFavorite: true,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: true,
TimeZone: "",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
2021-08-17 14:40:24 +00:00
PlaceSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
CellAccuracy: 0,
PhotoAltitude: 3,
2021-03-03 10:49:32 +00:00
PhotoLat: 1.234,
PhotoLng: 4.321,
2021-08-05 08:30:08 +00:00
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
PhotoYear: 0,
PhotoMonth: 0,
PhotoDay: 4,
2021-03-03 10:49:32 +00:00
PhotoIso: 0,
PhotoExposure: "",
2021-08-05 08:30:08 +00:00
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 5,
PhotoResolution: 0,
2021-03-03 10:49:32 +00:00
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
2021-03-03 10:49:32 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Details: DetailsFixtures.Pointer("lake", 1000015),
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{
LabelFixtures.PhotoLabel(10000018, "landscape", 20, "image"),
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
2021-08-17 14:40:24 +00:00
CreatedAt: time.Date(2007, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2007, 3, 1, 0, 0, 0, 0, time.UTC),
2021-08-05 08:30:08 +00:00
EditedAt: &editTime,
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-08-17 14:40:24 +00:00
PhotoColor: 12,
2021-08-05 08:30:08 +00:00
PhotoStack: IsUnstacked,
PhotoFaces: 0,
2021-03-03 10:49:32 +00:00
},
2021-08-23 15:20:03 +00:00
"Photo26": { // JPG, Indexed, Panorama, Unstacked
2021-03-10 14:52:38 +00:00
ID: 1000026,
PhotoUID: "pt9jtdre2lvl0y90",
TakenAt: time.Date(2007, 1, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2007, 1, 11, 9, 7, 18, 0, time.UTC),
TakenSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
PhotoType: "image",
TypeSrc: "",
2021-03-10 14:52:38 +00:00
PhotoTitle: "phototobebatchapproved",
2021-08-17 14:40:24 +00:00
TitleSrc: SrcAuto,
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
2021-08-17 14:40:24 +00:00
DescriptionSrc: "",
PhotoPath: "2007/12",
PhotoName: "PhotoWithEditedAt_2",
2021-03-10 14:52:38 +00:00
OriginalName: "",
PhotoFavorite: true,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
PhotoPanorama: true,
TimeZone: "",
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
2021-08-17 14:40:24 +00:00
PlaceSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
CellAccuracy: 0,
PhotoAltitude: 3,
2021-03-10 14:52:38 +00:00
PhotoLat: 1.234,
PhotoLng: 4.321,
2021-08-05 08:30:08 +00:00
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
2021-08-17 14:40:24 +00:00
PhotoYear: 2007,
PhotoMonth: 1,
PhotoDay: 11,
2021-03-10 14:52:38 +00:00
PhotoIso: 0,
PhotoExposure: "",
2021-08-05 08:30:08 +00:00
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 1,
PhotoResolution: 0,
2021-03-10 14:52:38 +00:00
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
2021-03-10 14:52:38 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Details: DetailsFixtures.Pointer("lake", 1000015),
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{
LabelFixtures.PhotoLabel(10000018, "landscape", 20, "image"),
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
2021-08-05 08:30:08 +00:00
CreatedAt: time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
CheckedAt: &checkedTime,
DeletedAt: nil,
PhotoColor: 14,
PhotoStack: IsUnstacked,
PhotoFaces: 0,
2021-03-10 14:52:38 +00:00
},
2021-08-17 15:26:39 +00:00
"Photo27": { // live (mp4 + jpg)
2021-03-10 14:52:38 +00:00
ID: 1000027,
PhotoUID: "pt9jtdre2lvl0y50",
2021-08-17 15:26:39 +00:00
TakenAt: time.Date(2000, 12, 11, 9, 7, 18, 0, time.UTC),
TakenAtLocal: time.Date(2000, 12, 11, 4, 7, 18, 0, time.UTC),
2021-03-10 14:52:38 +00:00
TakenSrc: SrcMeta,
2021-08-17 15:26:39 +00:00
PhotoType: "live",
2021-08-05 08:30:08 +00:00
TypeSrc: "",
2021-03-10 14:52:38 +00:00
PhotoTitle: "phototobebatchapproved2",
2021-08-17 15:26:39 +00:00
TitleSrc: SrcName,
2021-08-05 08:30:08 +00:00
PhotoDescription: "",
2021-08-17 15:26:39 +00:00
DescriptionSrc: "",
2021-03-10 14:52:38 +00:00
PhotoPath: "2000/12",
PhotoName: "PhotoToBeBatchApproved2",
OriginalName: "",
PhotoFavorite: true,
PhotoPrivate: false,
2021-08-05 08:30:08 +00:00
PhotoScan: false,
2021-08-17 15:26:39 +00:00
PhotoPanorama: false,
TimeZone: "America/Mexico",
2021-08-05 08:30:08 +00:00
Place: PlaceFixtures.Pointer("mexico"),
PlaceID: PlaceFixtures.Pointer("mexico").ID,
2021-08-17 15:26:39 +00:00
PlaceSrc: SrcMeta,
2021-08-05 08:30:08 +00:00
Cell: CellFixtures.Pointer("mexico"),
CellID: CellFixtures.Pointer("mexico").ID,
CellAccuracy: 0,
PhotoAltitude: 3,
2021-08-17 15:26:39 +00:00
PhotoLat: 19.682,
PhotoLng: -98.84,
2021-08-05 08:30:08 +00:00
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
2021-08-17 15:26:39 +00:00
PhotoYear: 2000,
PhotoMonth: 12,
PhotoDay: 11,
2021-03-10 14:52:38 +00:00
PhotoIso: 0,
PhotoExposure: "",
2021-08-05 08:30:08 +00:00
PhotoFNumber: 0,
PhotoFocalLength: 0,
PhotoQuality: 1,
PhotoResolution: 0,
2021-03-10 14:52:38 +00:00
Camera: CameraFixtures.Pointer("canon-eos-6d"),
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
2021-08-05 08:30:08 +00:00
CameraSerial: "",
CameraSrc: "",
2021-03-10 14:52:38 +00:00
Lens: LensFixtures.Pointer("lens-f-380"),
LensID: LensFixtures.Pointer("lens-f-380").ID,
Details: DetailsFixtures.Pointer("lake", 1000015),
Keywords: []Keyword{},
Albums: []Album{},
Files: []File{},
Labels: []PhotoLabel{
LabelFixtures.PhotoLabel(10000018, "landscape", 20, "image"),
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
2021-08-05 08:30:08 +00:00
CreatedAt: time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC),
UpdatedAt: time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC),
EditedAt: nil,
CheckedAt: &checkedTime,
DeletedAt: nil,
2021-08-17 15:26:39 +00:00
PhotoColor: 12,
PhotoStack: IsStackable,
2021-09-02 15:43:46 +00:00
PhotoFaces: 3,
2021-03-10 14:52:38 +00:00
},
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
}
}