1724 lines
58 KiB
Go
1724 lines
58 KiB
Go
package entity
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
var editTime = time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC)
|
|
var deleteTime = time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC)
|
|
var checkedTime = time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC)
|
|
|
|
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{
|
|
"19800101_000002_D640C559": { //JPG, Imported, No Geo-information
|
|
ID: 1000000,
|
|
// UUID:
|
|
PhotoUID: "pt9jtdre2lvl0yh7",
|
|
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",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "Lake / 2790",
|
|
TitleSrc: "",
|
|
PhotoDescription: "photo description lake",
|
|
DescriptionSrc: "meta",
|
|
PhotoPath: "2790/07",
|
|
PhotoName: "27900704_070228_D6D51B6C",
|
|
OriginalName: "Vacation/exampleFileNameOriginal",
|
|
PhotoFavorite: false,
|
|
//PhotoSingle
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "Europe/Berlin",
|
|
Place: &UnknownPlace,
|
|
PlaceID: UnknownPlace.ID,
|
|
PlaceSrc: "",
|
|
Cell: &UnknownLocation,
|
|
CellID: UnknownLocation.ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: UnknownPlace.CountryCode(),
|
|
PhotoYear: 2790,
|
|
PhotoMonth: 7,
|
|
PhotoDay: 4,
|
|
PhotoIso: 200,
|
|
PhotoExposure: "1/80",
|
|
PhotoFNumber: 5,
|
|
PhotoFocalLength: 50,
|
|
PhotoQuality: 3,
|
|
PhotoResolution: 2,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "meta",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: DetailsFixtures.Pointer("lake", 1000000),
|
|
Keywords: []Keyword{
|
|
KeywordFixtures.Get("bridge"),
|
|
},
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 9,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 5,
|
|
},
|
|
"Photo01": { //DNG + XMP, Indexed, lat/lng manually set
|
|
ID: 1000001,
|
|
PhotoUID: "pt9jtdre2lvl0yh8",
|
|
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",
|
|
PhotoType: "raw",
|
|
TypeSrc: "",
|
|
PhotoTitle: "",
|
|
TitleSrc: "",
|
|
PhotoDescription: "photo description blacklist",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2790/02",
|
|
PhotoName: "Photo01",
|
|
OriginalName: "",
|
|
PhotoFavorite: true,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: PlaceFixtures.Pointer("Germany"),
|
|
PlaceID: PlaceFixtures.Pointer("Germany").ID,
|
|
PlaceSrc: "manual",
|
|
Cell: CellFixtures.Pointer("Neckarbrücke"),
|
|
CellID: CellFixtures.Pointer("Neckarbrücke").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 48.519234,
|
|
PhotoLng: 9.057997,
|
|
PhotoCountry: "de",
|
|
PhotoYear: 2790,
|
|
PhotoMonth: 2,
|
|
PhotoDay: 12,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 3,
|
|
PhotoResolution: 2,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: DetailsFixtures.Pointer("lake", 1000001),
|
|
Keywords: []Keyword{},
|
|
Albums: []Album{},
|
|
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(2020, 3, 28, 14, 6, 0, 0, time.UTC),
|
|
EditedAt: nil,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 3,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 5,
|
|
},
|
|
"Photo02": { //JPG, Indexed, No Geo-information
|
|
ID: 1000002,
|
|
PhotoUID: "pt9jtdre2lvl0yh9",
|
|
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",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "London",
|
|
PhotoName: "bridge1",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: &UnknownPlace,
|
|
PlaceID: UnknownPlace.ID,
|
|
PlaceSrc: "",
|
|
Cell: &UnknownLocation,
|
|
CellID: UnknownLocation.ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: UnknownPlace.CountryCode(),
|
|
PhotoYear: 1990,
|
|
PhotoMonth: 3,
|
|
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,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
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),
|
|
UpdatedAt: time.Date(2010, 1, 1, 0, 0, 0, 0, time.UTC),
|
|
EditedAt: nil,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 12,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo03": { // JPG + JPG (same instance ID) + MP4, Indexed, Place from metadata
|
|
ID: 1000003,
|
|
PhotoUID: "pt9jtdre2lvl0yh0",
|
|
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",
|
|
PhotoType: "video",
|
|
TypeSrc: "",
|
|
PhotoTitle: "",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "1990/04",
|
|
PhotoName: "bridge2",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: CellFixtures.Pointer("caravan park").Place,
|
|
PlaceID: CellFixtures.Pointer("caravan park").Place.ID,
|
|
PlaceSrc: "meta",
|
|
Cell: CellFixtures.Pointer("caravan park"),
|
|
CellID: CellFixtures.Pointer("caravan park").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 48.519234,
|
|
PhotoLng: 9.057997,
|
|
PhotoCountry: CellFixtures.Pointer("caravan park").Place.CountryCode(),
|
|
PhotoYear: 1990,
|
|
PhotoMonth: 4,
|
|
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,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: DetailsFixtures.Pointer("bridge", 1000003),
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 12,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 4,
|
|
},
|
|
"Photo04": { //JPG, Indexed, Place estimated
|
|
ID: 1000004,
|
|
PhotoUID: "pt9jtdre2lvl0y11",
|
|
TakenAt: time.Date(2014, 7, 17, 15, 42, 12, 0, time.UTC),
|
|
TakenAtLocal: time.Date(2014, 7, 17, 17, 42, 12, 0, time.UTC),
|
|
TakenSrc: "meta",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "Neckarbrücke",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "Germany",
|
|
PhotoName: "bridge",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "Europe/Berlin",
|
|
Place: PlaceFixtures.Pointer("Germany"),
|
|
PlaceID: PlaceFixtures.Pointer("Germany").ID,
|
|
PlaceSrc: "estimate",
|
|
Cell: &UnknownLocation,
|
|
CellID: UnknownLocation.ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: PlaceFixtures.Pointer("Germany").CountryCode(),
|
|
PhotoYear: 2014,
|
|
PhotoMonth: 7,
|
|
PhotoDay: 10,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 3,
|
|
PhotoResolution: 2,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: DetailsFixtures.Pointer("lake", 1000004),
|
|
Keywords: []Keyword{
|
|
KeywordFixtures.Get("bridge"),
|
|
KeywordFixtures.Get("flower"),
|
|
},
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 12,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo05": { //JPG, Imported, File error, TakenAtSrc Name, titleSrc Name
|
|
ID: 1000005,
|
|
PhotoUID: "pt9jtdre2lvl0y12",
|
|
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",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "Reunion",
|
|
TitleSrc: "name",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2015/11",
|
|
PhotoName: "20151101_000000_51C501B5",
|
|
OriginalName: "2015/11/reunion",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: true,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "America/Mexico_City",
|
|
Place: PlaceFixtures.Pointer("mexico"),
|
|
PlaceID: PlaceFixtures.Pointer("mexico").ID,
|
|
PlaceSrc: "meta",
|
|
Cell: CellFixtures.Pointer("mexico"),
|
|
CellID: CellFixtures.Pointer("mexico").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: -21.342636,
|
|
PhotoLng: 55.466944,
|
|
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
|
|
PhotoYear: 2015,
|
|
PhotoMonth: 11,
|
|
PhotoDay: 0,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 3,
|
|
PhotoResolution: 2,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "123",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: DetailsFixtures.Pointer("lake", 1000005),
|
|
Keywords: []Keyword{},
|
|
Albums: []Album{},
|
|
Files: []File{},
|
|
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000005, "updateLabel", 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,
|
|
PhotoColor: 6,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo06": {
|
|
ID: 1000006,
|
|
PhotoUID: "pt9jtdre2lvl0y13",
|
|
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",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "ToBeUpdated",
|
|
TitleSrc: "meta",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2016/11",
|
|
PhotoName: "Photo06",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: &UnknownPlace,
|
|
PlaceID: UnknownPlace.ID,
|
|
PlaceSrc: "",
|
|
Cell: &UnknownLocation,
|
|
CellID: UnknownLocation.ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: -21.342636,
|
|
PhotoLng: 55.466944,
|
|
PhotoCountry: UnknownPlace.CountryCode(),
|
|
PhotoYear: 2014,
|
|
PhotoMonth: 7,
|
|
PhotoDay: 4,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 2,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: DetailsFixtures.Pointer("lake", 1000006),
|
|
Keywords: []Keyword{},
|
|
Albums: []Album{},
|
|
Files: []File{},
|
|
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000006, "updatePhotoLabel", 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,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo07": {
|
|
ID: 1000007,
|
|
PhotoUID: "pt9jtdre2lvl0y14",
|
|
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: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "ToBeUpdated",
|
|
TitleSrc: "meta",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2016/11",
|
|
PhotoName: "Photo07",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: &UnknownPlace,
|
|
PlaceID: UnknownPlace.ID,
|
|
PlaceSrc: "",
|
|
Cell: &UnknownLocation,
|
|
CellID: UnknownLocation.ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: -21.342636,
|
|
PhotoLng: 55.466944,
|
|
PhotoCountry: UnknownPlace.CountryCode(),
|
|
PhotoYear: 2014,
|
|
PhotoMonth: 7,
|
|
PhotoDay: 4,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: DetailsFixtures.Pointer("lake", 1000007),
|
|
Keywords: []Keyword{},
|
|
Albums: []Album{},
|
|
Files: []File{},
|
|
Labels: []PhotoLabel{LabelFixtures.PhotoLabel(1000007, "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: &editTime,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo08": {
|
|
ID: 1000008,
|
|
PhotoUID: "pt9jtdre2lvl0y15",
|
|
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: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "Black beach",
|
|
TitleSrc: "meta",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2016/11",
|
|
PhotoName: "Photo08",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: PlaceFixtures.Pointer("mexico"),
|
|
PlaceID: PlaceFixtures.Pointer("mexico").ID,
|
|
PlaceSrc: "manual",
|
|
Cell: CellFixtures.Pointer("mexico"),
|
|
CellID: CellFixtures.Pointer("mexico").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 19.681944,
|
|
PhotoLng: -98.84659,
|
|
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
|
|
PhotoYear: 2014,
|
|
PhotoMonth: 7,
|
|
PhotoDay: 4,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo09": {
|
|
ID: 1000009,
|
|
PhotoUID: "pt9jtdre2lvl0y16",
|
|
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: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "Title",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2016/11",
|
|
PhotoName: "Photo09",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
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,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
|
|
PhotoYear: 2014,
|
|
PhotoMonth: 7,
|
|
PhotoDay: 4,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo10": { //mp4 + mp4 with error + jpg in sidecar, Indexed
|
|
ID: 1000010,
|
|
PhotoUID: "pt9jtdre2lvl0y17",
|
|
TakenAt: time.Date(2016, 11, 11, 9, 7, 18, 0, time.UTC),
|
|
TakenAtLocal: time.Date(2016, 11, 11, 11, 7, 18, 0, time.UTC),
|
|
TakenSrc: "manual",
|
|
PhotoType: "video",
|
|
TypeSrc: "",
|
|
PhotoTitle: "Title",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "Holiday",
|
|
PhotoName: "Video",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "Europe/Berlin",
|
|
Place: PlaceFixtures.Pointer("holidaypark"),
|
|
PlaceID: PlaceFixtures.Pointer("holidaypark").ID,
|
|
PlaceSrc: "meta",
|
|
Cell: CellFixtures.Pointer("hassloch"),
|
|
CellID: CellFixtures.Pointer("hassloch").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 49.31,
|
|
PhotoLng: 8.30,
|
|
PhotoCountry: PlaceFixtures.Pointer("holidaypark").CountryCode(),
|
|
PhotoYear: 2016,
|
|
PhotoMonth: 11,
|
|
PhotoDay: 11,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 9,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo11": {
|
|
ID: 1000011,
|
|
PhotoUID: "pt9jtdre2lvl0y18",
|
|
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: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "Title",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2016/11",
|
|
PhotoName: "Photo11",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
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,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: PlaceFixtures.Pointer("emptyNameLongCity").CountryCode(),
|
|
PhotoYear: 2014,
|
|
PhotoMonth: 7,
|
|
PhotoDay: 4,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo12": {
|
|
ID: 1000012,
|
|
PhotoUID: "pt9jtdre2lvl0y19",
|
|
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: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "Title",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2016/11",
|
|
PhotoName: "Photo12",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
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,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: PlaceFixtures.Pointer("emptyNameShortCity").CountryCode(),
|
|
PhotoYear: 2014,
|
|
PhotoMonth: 7,
|
|
PhotoDay: 4,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: &Details{},
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 3,
|
|
},
|
|
"Photo13": {
|
|
ID: 1000013,
|
|
PhotoUID: "pt9jtdre2lvl0y20",
|
|
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: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "Title",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2016/11",
|
|
PhotoName: "Photo13",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: PlaceFixtures.Pointer("veryLongLocName"),
|
|
PlaceID: PlaceFixtures.Pointer("veryLongLocName").ID,
|
|
PlaceSrc: "",
|
|
Cell: CellFixtures.Pointer("veryLongLocName"),
|
|
CellID: CellFixtures.Pointer("veryLongLocName").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: PlaceFixtures.Pointer("veryLongLocName").CountryCode(),
|
|
PhotoYear: 2014,
|
|
PhotoMonth: 7,
|
|
PhotoDay: 4,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: &Details{},
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 1,
|
|
},
|
|
"Photo14": {
|
|
ID: 1000014,
|
|
PhotoUID: "pt9jtdre2lvl0y21",
|
|
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: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "Title",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2016/11",
|
|
PhotoName: "Photo14",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
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,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: PlaceFixtures.Pointer("mediumLongLocName").CountryCode(),
|
|
PhotoYear: 2014,
|
|
PhotoMonth: 7,
|
|
PhotoDay: 4,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 2,
|
|
},
|
|
"Photo15": { // JPG FileMissing = true, Indexed
|
|
ID: 1000015,
|
|
PhotoUID: "pt9jtdre2lvl0y22",
|
|
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",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "TitleToBeSet",
|
|
TitleSrc: SrcName,
|
|
PhotoDescription: "photo description blacklist",
|
|
DescriptionSrc: SrcMeta,
|
|
PhotoPath: "1990",
|
|
PhotoName: "missing",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: PlaceFixtures.Pointer("Germany"),
|
|
PlaceID: PlaceFixtures.Pointer("Germany").ID,
|
|
PlaceSrc: SrcMeta,
|
|
Cell: CellFixtures.Pointer("Neckarbrücke"),
|
|
CellID: CellFixtures.Pointer("Neckarbrücke").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 3,
|
|
PhotoLat: 1.234,
|
|
PhotoLng: 4.321,
|
|
PhotoCountry: "de",
|
|
PhotoYear: 2013,
|
|
PhotoMonth: 11,
|
|
PhotoDay: 11,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: DetailsFixtures.Pointer("blacklist", 1000015),
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 6,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo16": {
|
|
ID: 1000016,
|
|
PhotoUID: "pt9jtdre2lvl0y23",
|
|
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: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "ForDeletion",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "location",
|
|
PhotoPath: "1990",
|
|
PhotoName: "Photo16",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: &UnknownPlace,
|
|
PlaceID: UnknownPlace.ID,
|
|
PlaceSrc: "location",
|
|
Cell: &UnknownLocation,
|
|
CellID: UnknownLocation.ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 3,
|
|
PhotoLat: 1.234,
|
|
PhotoLng: 4.321,
|
|
PhotoCountry: UnknownCountry.ID,
|
|
PhotoYear: 0,
|
|
PhotoMonth: 0,
|
|
PhotoDay: 4,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
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{},
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo17": { // JPG, Indexed, Favorite, Quality 1, Places from metadata
|
|
ID: 1000017,
|
|
PhotoUID: "pt9jtdre2lvl0y24",
|
|
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: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "Quality1FavoriteTrue",
|
|
TitleSrc: SrcName,
|
|
PhotoDescription: "",
|
|
DescriptionSrc: SrcAuto,
|
|
PhotoPath: "1990/04",
|
|
PhotoName: "Quality1FavoriteTrue",
|
|
OriginalName: "",
|
|
PhotoFavorite: true,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: PlaceFixtures.Pointer("mexico"),
|
|
PlaceID: PlaceFixtures.Pointer("mexico").ID,
|
|
PlaceSrc: SrcMeta,
|
|
Cell: CellFixtures.Pointer("mexico"),
|
|
CellID: CellFixtures.Pointer("mexico").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 3,
|
|
PhotoLat: 1.234,
|
|
PhotoLng: 4.321,
|
|
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
|
|
PhotoYear: 2013,
|
|
PhotoMonth: 11,
|
|
PhotoDay: 11,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
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{},
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 6,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo18": { // JPG, Indexed, Archived, Chroma 0
|
|
ID: 1000018,
|
|
PhotoUID: "pt9jtdre2lvl0y25",
|
|
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: SrcMeta,
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "ArchivedChroma0",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "Archived",
|
|
PhotoName: "Photo18",
|
|
OriginalName: "",
|
|
PhotoFavorite: true,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: PlaceFixtures.Pointer("mexico"),
|
|
PlaceID: PlaceFixtures.Pointer("mexico").ID,
|
|
PlaceSrc: SrcMeta,
|
|
Cell: CellFixtures.Pointer("mexico"),
|
|
CellID: CellFixtures.Pointer("mexico").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 3,
|
|
PhotoLat: 1.234,
|
|
PhotoLng: 4.321,
|
|
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
|
|
PhotoYear: 2013,
|
|
PhotoMonth: 11,
|
|
PhotoDay: 11,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 0,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
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{},
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: &deleteTime,
|
|
PhotoColor: 9,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo19": { // JPG, Indexed, Low Quality
|
|
ID: 1000019,
|
|
UUID: "123e4567-e89b-12d3-a456-426614174000",
|
|
PhotoUID: "pt9jtxrexxvl0yh0",
|
|
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: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "1990/04",
|
|
PhotoName: "Photo19",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: &UnknownPlace,
|
|
PlaceID: UnknownPlace.ID,
|
|
PlaceSrc: "",
|
|
Cell: &UnknownLocation,
|
|
CellID: UnknownLocation.ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: UnknownPlace.CountryCode(),
|
|
PhotoYear: 2008,
|
|
PhotoMonth: 1,
|
|
PhotoDay: 1,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: -1,
|
|
PhotoResolution: 2,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
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(2010, 1, 1, 0, 0, 0, 0, time.UTC),
|
|
EditedAt: nil,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 12,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo20": {
|
|
ID: 1000020,
|
|
PhotoUID: "pt9jtxrexxvl0y20",
|
|
TakenAt: time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC),
|
|
TakenAtLocal: time.Time{},
|
|
TakenSrc: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "1990/04",
|
|
PhotoName: "Photo20",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: &UnknownPlace,
|
|
PlaceID: UnknownPlace.ID,
|
|
PlaceSrc: "",
|
|
Cell: &UnknownLocation,
|
|
CellID: UnknownLocation.ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: UnknownPlace.CountryCode(),
|
|
PhotoYear: 1990,
|
|
PhotoMonth: 4,
|
|
PhotoDay: 4,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 1,
|
|
PhotoResolution: 2,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo21": { // mp4 + mp4.jpg, Imported, Estimated Location
|
|
ID: 1000021,
|
|
PhotoUID: "pt9jtxrexxvl0y21",
|
|
TakenAt: time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC),
|
|
TakenAtLocal: time.Time{},
|
|
TakenSrc: "",
|
|
PhotoType: "video",
|
|
TypeSrc: "",
|
|
PhotoTitle: "",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2018/01",
|
|
PhotoName: "20180101_130410_418COOO0",
|
|
OriginalName: "my-videos/IMG_88888",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "Europe/Berlin",
|
|
Place: PlaceFixtures.Pointer("Germany"),
|
|
PlaceID: PlaceFixtures.Pointer("Germany").ID,
|
|
PlaceSrc: "estimate",
|
|
Cell: &UnknownLocation,
|
|
CellID: UnknownLocation.ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: PlaceFixtures.Pointer("Germany").CountryCode(),
|
|
PhotoYear: 2018,
|
|
PhotoMonth: 1,
|
|
PhotoDay: 1,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 1,
|
|
PhotoResolution: 2,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: DetailsFixtures.Pointer("bridge", 1000019),
|
|
Keywords: []Keyword{},
|
|
Albums: []Album{},
|
|
Files: []File{},
|
|
Labels: []PhotoLabel{},
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo22": { // JPG + JPG (place&time stack)
|
|
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),
|
|
TakenSrc: "",
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "",
|
|
TitleSrc: "",
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "Mexico-With-Family",
|
|
PhotoName: "Photo22",
|
|
OriginalName: "",
|
|
PhotoFavorite: false,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: PlaceFixtures.Pointer("mexico"),
|
|
PlaceID: PlaceFixtures.Pointer("mexico").ID,
|
|
PlaceSrc: SrcMeta,
|
|
Cell: CellFixtures.Pointer("mexico"),
|
|
CellID: CellFixtures.Pointer("mexico").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 0,
|
|
PhotoLat: 0,
|
|
PhotoLng: 0,
|
|
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
|
|
PhotoYear: 2001,
|
|
PhotoMonth: 1,
|
|
PhotoDay: 1,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 1,
|
|
PhotoResolution: 2,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
CameraSerial: "",
|
|
CameraSrc: "",
|
|
Lens: LensFixtures.Pointer("lens-f-380"),
|
|
LensID: LensFixtures.Pointer("lens-f-380").ID,
|
|
Details: &Details{},
|
|
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,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 14,
|
|
PhotoStack: 0,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo23": { //JPG, Favorite
|
|
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,
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "ForMerge",
|
|
TitleSrc: SrcManual,
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2020/vacation",
|
|
PhotoName: "PhotoMerge",
|
|
OriginalName: "",
|
|
PhotoFavorite: true,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: PlaceFixtures.Pointer("mexico"),
|
|
PlaceID: PlaceFixtures.Pointer("mexico").ID,
|
|
PlaceSrc: SrcMeta,
|
|
Cell: CellFixtures.Pointer("mexico"),
|
|
CellID: CellFixtures.Pointer("mexico").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 3,
|
|
PhotoLat: 1.234,
|
|
PhotoLng: 4.321,
|
|
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
|
|
PhotoYear: 2020,
|
|
PhotoMonth: 11,
|
|
PhotoDay: 11,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFocalLength: 0,
|
|
PhotoFNumber: 0,
|
|
PhotoQuality: 5,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
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{},
|
|
Labels: []PhotoLabel{
|
|
LabelFixtures.PhotoLabel(10000018, "landscape", 20, "image"),
|
|
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
|
|
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,
|
|
},
|
|
"Photo24": { // CR2 + JPG in Sidecar, Indexed
|
|
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,
|
|
PhotoType: "raw",
|
|
TypeSrc: "",
|
|
PhotoTitle: "ForMerge2",
|
|
TitleSrc: SrcManual,
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2020/vacation",
|
|
PhotoName: "PhotoMerge2",
|
|
OriginalName: "",
|
|
PhotoFavorite: true,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "",
|
|
Place: PlaceFixtures.Pointer("mexico"),
|
|
PlaceID: PlaceFixtures.Pointer("mexico").ID,
|
|
PlaceSrc: SrcMeta,
|
|
Cell: CellFixtures.Pointer("mexico"),
|
|
CellID: CellFixtures.Pointer("mexico").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 3,
|
|
PhotoLat: 1.234,
|
|
PhotoLng: 4.321,
|
|
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
|
|
PhotoYear: 2020,
|
|
PhotoMonth: 11,
|
|
PhotoDay: 11,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 5,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
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{},
|
|
Labels: []PhotoLabel{
|
|
LabelFixtures.PhotoLabel(10000018, "landscape", 20, "image"),
|
|
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
|
|
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,
|
|
},
|
|
"Photo25": { // JPG, Indexed, Photo edited, Panorama true, Unstacked
|
|
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,
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "photowitheditedatdate",
|
|
TitleSrc: SrcManual,
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2007/12",
|
|
PhotoName: "PhotoWithEditedAt",
|
|
OriginalName: "",
|
|
PhotoFavorite: true,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: true,
|
|
TimeZone: "",
|
|
Place: PlaceFixtures.Pointer("mexico"),
|
|
PlaceID: PlaceFixtures.Pointer("mexico").ID,
|
|
PlaceSrc: SrcMeta,
|
|
Cell: CellFixtures.Pointer("mexico"),
|
|
CellID: CellFixtures.Pointer("mexico").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 3,
|
|
PhotoLat: 1.234,
|
|
PhotoLng: 4.321,
|
|
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
|
|
PhotoYear: 0,
|
|
PhotoMonth: 0,
|
|
PhotoDay: 4,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 5,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
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{},
|
|
Labels: []PhotoLabel{
|
|
LabelFixtures.PhotoLabel(10000018, "landscape", 20, "image"),
|
|
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
|
|
CreatedAt: time.Date(2007, 1, 1, 0, 0, 0, 0, time.UTC),
|
|
UpdatedAt: time.Date(2007, 3, 1, 0, 0, 0, 0, time.UTC),
|
|
EditedAt: &editTime,
|
|
CheckedAt: &checkedTime,
|
|
DeletedAt: nil,
|
|
PhotoColor: 12,
|
|
PhotoStack: IsUnstacked,
|
|
PhotoFaces: 0,
|
|
},
|
|
"Photo26": { // JPG, Indexed, Panorama, Unstacked
|
|
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,
|
|
PhotoType: "image",
|
|
TypeSrc: "",
|
|
PhotoTitle: "phototobebatchapproved",
|
|
TitleSrc: SrcAuto,
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2007/12",
|
|
PhotoName: "PhotoWithEditedAt_2",
|
|
OriginalName: "",
|
|
PhotoFavorite: true,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: true,
|
|
TimeZone: "",
|
|
Place: PlaceFixtures.Pointer("mexico"),
|
|
PlaceID: PlaceFixtures.Pointer("mexico").ID,
|
|
PlaceSrc: SrcMeta,
|
|
Cell: CellFixtures.Pointer("mexico"),
|
|
CellID: CellFixtures.Pointer("mexico").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 3,
|
|
PhotoLat: 1.234,
|
|
PhotoLng: 4.321,
|
|
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
|
|
PhotoYear: 2007,
|
|
PhotoMonth: 1,
|
|
PhotoDay: 11,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 1,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
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{},
|
|
Labels: []PhotoLabel{
|
|
LabelFixtures.PhotoLabel(10000018, "landscape", 20, "image"),
|
|
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
|
|
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,
|
|
},
|
|
"Photo27": { // live (mp4 + jpg)
|
|
ID: 1000027,
|
|
PhotoUID: "pt9jtdre2lvl0y50",
|
|
TakenAt: time.Date(2000, 12, 11, 9, 7, 18, 0, time.UTC),
|
|
TakenAtLocal: time.Date(2000, 12, 11, 4, 7, 18, 0, time.UTC),
|
|
TakenSrc: SrcMeta,
|
|
PhotoType: "live",
|
|
TypeSrc: "",
|
|
PhotoTitle: "phototobebatchapproved2",
|
|
TitleSrc: SrcName,
|
|
PhotoDescription: "",
|
|
DescriptionSrc: "",
|
|
PhotoPath: "2000/12",
|
|
PhotoName: "PhotoToBeBatchApproved2",
|
|
OriginalName: "",
|
|
PhotoFavorite: true,
|
|
PhotoPrivate: false,
|
|
PhotoScan: false,
|
|
PhotoPanorama: false,
|
|
TimeZone: "America/Mexico",
|
|
Place: PlaceFixtures.Pointer("mexico"),
|
|
PlaceID: PlaceFixtures.Pointer("mexico").ID,
|
|
PlaceSrc: SrcMeta,
|
|
Cell: CellFixtures.Pointer("mexico"),
|
|
CellID: CellFixtures.Pointer("mexico").ID,
|
|
CellAccuracy: 0,
|
|
PhotoAltitude: 3,
|
|
PhotoLat: 19.682,
|
|
PhotoLng: -98.84,
|
|
PhotoCountry: PlaceFixtures.Pointer("mexico").CountryCode(),
|
|
PhotoYear: 2000,
|
|
PhotoMonth: 12,
|
|
PhotoDay: 11,
|
|
PhotoIso: 0,
|
|
PhotoExposure: "",
|
|
PhotoFNumber: 0,
|
|
PhotoFocalLength: 0,
|
|
PhotoQuality: 1,
|
|
PhotoResolution: 0,
|
|
Camera: CameraFixtures.Pointer("canon-eos-6d"),
|
|
CameraID: CameraFixtures.Pointer("canon-eos-6d").ID,
|
|
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{},
|
|
Labels: []PhotoLabel{
|
|
LabelFixtures.PhotoLabel(10000018, "landscape", 20, "image"),
|
|
LabelFixtures.PhotoLabel(10000018, "likeLabel", 20, "image")},
|
|
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: 12,
|
|
PhotoStack: IsStackable,
|
|
PhotoFaces: 0,
|
|
},
|
|
}
|
|
|
|
// CreatePhotoFixtures inserts known entities into the database for testing.
|
|
func CreatePhotoFixtures() {
|
|
for _, entity := range PhotoFixtures {
|
|
Db().Create(&entity)
|
|
}
|
|
}
|