コード例 #1
0
ファイル: testimonial.go プロジェクト: ninnemana/API
func Save(rw http.ResponseWriter, req *http.Request, enc encoding.Encoder, params martini.Params, dtx *apicontext.DataContext) string {
	var a testimonials.Testimonial
	var err error
	idStr := params["id"]
	if idStr != "" {
		a.ID, err = strconv.Atoi(idStr)
		err = a.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, &a)
	if err != nil {
		apierror.GenerateError("Trouble unmarshalling request body for saving testimonial", err, rw, req)
	}
	//create or update
	if a.ID > 0 {
		err = a.Update()
	} else {
		err = a.Create()
	}

	if err != nil {
		apierror.GenerateError("Trouble saving testimonial", err, rw, req)
	}
	return encoding.Must(enc.Encode(a))
}
コード例 #2
0
ファイル: testimonial.go プロジェクト: ninnemana/API
func GetTestimonial(rw http.ResponseWriter, req *http.Request, params martini.Params, enc encoding.Encoder, dtx *apicontext.DataContext) string {
	var err error
	var test testimonials.Testimonial

	if test.ID, err = strconv.Atoi(params["id"]); err != nil {
		apierror.GenerateError("Trouble getting testimonial ID", err, rw, req)
	}
	if err := test.Get(dtx); err != nil {
		apierror.GenerateError("Trouble getting testimonial", err, rw, req)
	}
	return encoding.Must(enc.Encode(test))
}