package form import ( "time" "github.com/ulule/deepcopier" ) type Details struct { PhotoID uint `json:"PhotoID" deepcopier:"skip"` Keywords string `json:"Keywords"` Notes string `json:"Notes"` Subject string `json:"Subject"` Artist string `json:"Artist"` Copyright string `json:"Copyright"` License string `json:"License"` } // Photo represents a photo edit form. type Photo struct { PhotoType string `json:"Type"` TakenAt time.Time `json:"TakenAt"` TakenAtLocal time.Time `json:"TakenAtLocal"` TakenSrc string `json:"TakenSrc"` TimeZone string `json:"TimeZone"` PhotoTitle string `json:"Title"` TitleSrc string `json:"TitleSrc"` PhotoDescription string `json:"Description"` DescriptionSrc string `json:"DescriptionSrc"` Details Details `json:"Details"` PhotoFavorite bool `json:"Favorite"` PhotoPrivate bool `json:"Private"` PhotoReview bool `json:"Review"` PhotoLat float32 `json:"Lat"` PhotoLng float32 `json:"Lng"` PhotoAltitude int `json:"Altitude"` PhotoIso int `json:"Iso"` PhotoFocalLength int `json:"FocalLength"` PhotoFNumber float32 `json:"FNumber"` PhotoExposure string `json:"Exposure"` PhotoCountry string `json:"Country"` LocUID string `json:"LocUID"` LocSrc string `json:"LocSrc"` PlaceUID string `json:"PlaceUID"` CameraID uint `json:"CameraID"` CameraSrc string `json:"CameraSrc"` LensID uint `json:"LensID"` } func NewPhoto(m interface{}) (f Photo, err error) { err = deepcopier.Copy(m).To(&f) return f, err }