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"` PhotoNSFW bool `json:"PhotoNSFW"` PhotoStory bool `json:"PhotoStory"` PhotoReview bool `json:"PhotoReview"` PhotoLat float64 `json:"PhotoLat"` PhotoLng float64 `json:"PhotoLng"` PhotoAltitude int `json:"PhotoAltitude"` PhotoIso int `json:"PhotoIso"` PhotoFocalLength int `json:"PhotoFocalLength"` PhotoFNumber float64 `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 }