func Save(rw http.ResponseWriter, req *http.Request, enc encoding.Encoder, params martini.Params, dtx *apicontext.DataContext) string { var show showcase.Showcase var err error idStr := params["id"] if idStr != "" { show.ID, err = strconv.Atoi(idStr) err = show.Get(dtx) if err != nil { apierror.GenerateError("Trouble getting testimonial", err, rw, req) } } //json requestBody, err := ioutil.ReadAll(req.Body) if err != nil { apierror.GenerateError("Trouble reading request body for saving testimonial", err, rw, req) } err = json.Unmarshal(requestBody, &show) if err != nil { apierror.GenerateError("Trouble unmarshalling request body for saving testimonial", err, rw, req) } //create or update if show.ID > 0 { err = show.Update() } else { err = show.Create() } if err != nil { apierror.GenerateError("Trouble saving testimonial", err, rw, req) } return encoding.Must(enc.Encode(show)) }