3edf30ab3a
This is the practical limit of commercial data and should be more than enough for our use case while ideally providing better index performance. Signed-off-by: Michael Mayer <michael@liquidbytes.net>
52 lines
1.8 KiB
Go
52 lines
1.8 KiB
Go
package form
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/ulule/deepcopier"
|
|
)
|
|
|
|
// Photo represents a photo edit form.
|
|
type Photo struct {
|
|
TakenAt time.Time `json:"TakenAt"`
|
|
TakenAtLocal time.Time `json:"TakenAtLocal"`
|
|
TakenSrc string `json:"TakenSrc"`
|
|
TimeZone string `json:"TimeZone"`
|
|
PhotoTitle string `json:"PhotoTitle"`
|
|
TitleSrc string `json:"TitleSrc"`
|
|
Description struct {
|
|
PhotoID uint `json:"PhotoID" deepcopier:"skip"`
|
|
PhotoDescription string `json:"PhotoDescription"`
|
|
PhotoKeywords string `json:"PhotoKeywords"`
|
|
PhotoNotes string `json:"PhotoNotes"`
|
|
PhotoSubject string `json:"PhotoSubject"`
|
|
PhotoArtist string `json:"PhotoArtist"`
|
|
PhotoCopyright string `json:"PhotoCopyright"`
|
|
PhotoLicense string `json:"PhotoLicense"`
|
|
} `json:"Description"`
|
|
DescriptionSrc string `json:"DescriptionSrc"`
|
|
PhotoFavorite bool `json:"PhotoFavorite"`
|
|
PhotoPrivate bool `json:"PhotoPrivate"`
|
|
PhotoStory bool `json:"PhotoStory"`
|
|
PhotoReview bool `json:"PhotoReview"`
|
|
PhotoLat float32 `json:"PhotoLat"`
|
|
PhotoLng float32 `json:"PhotoLng"`
|
|
PhotoAltitude int `json:"PhotoAltitude"`
|
|
PhotoIso int `json:"PhotoIso"`
|
|
PhotoFocalLength int `json:"PhotoFocalLength"`
|
|
PhotoFNumber float32 `json:"PhotoFNumber"`
|
|
PhotoExposure string `json:"PhotoExposure"`
|
|
CameraID uint `json:"CameraID"`
|
|
CameraSrc string `json:"CameraSrc"`
|
|
LensID uint `json:"LensID"`
|
|
LocationID string `json:"LocationID"`
|
|
LocationSrc string `json:"LocationSrc"`
|
|
PlaceID string `json:"PlaceID"`
|
|
PhotoCountry string `json:"PhotoCountry"`
|
|
}
|
|
|
|
func NewPhoto(m interface{}) (f Photo, err error) {
|
|
err = deepcopier.Copy(m).To(&f)
|
|
|
|
return f, err
|
|
}
|