Ejemplo n.º 1
0
func (this *StoryHandler) Get(w http.ResponseWriter, r *http.Request) {
	ctx := xhttp.GetContext(r)
	id := ctx.Params.ByName("id")
	xhttp.ResponseJson(w, 200, map[string]interface{}{
		"id": id,
	})
}
Ejemplo n.º 2
0
Archivo: user.go Proyecto: ngthorg/grox
func (this *UserCtrl) Delete(w http.ResponseWriter, r *http.Request) {
	if err := this.userStore.Delete(xhttp.GetContext(r).Params.ByName("id")); err != nil {
		xhttp.ResponseJson(w, 500, M{
			"error": err.Error(),
		})
		return
	}
	xhttp.ResponseJson(w, 200, M{"message": "deleted"})
}
Ejemplo n.º 3
0
Archivo: user.go Proyecto: ngthorg/grox
func (this *UserCtrl) Get(w http.ResponseWriter, r *http.Request) {
	user, err := this.userStore.Get(xhttp.GetContext(r).Params.ByName("id"))
	if err != nil {
		xhttp.ResponseJson(w, 500, M{
			"error": err.Error(),
		})
		return
	}
	xhttp.ResponseJson(w, 200, user)
}
Ejemplo n.º 4
0
Archivo: user.go Proyecto: ngthorg/grox
func (this *UserCtrl) Update(w http.ResponseWriter, r *http.Request) {
	type updateUserData struct {
		Name string `json:"name",gorethink:"name"`
	}
	var data updateUserData
	if err := xhttp.BindJSON(r, &data); err != nil {
		xhttp.ResponseJson(w, 500, M{
			"error": err.Error(),
		})
		return
	}

	if err := this.userStore.Update(xhttp.GetContext(r).Params.ByName("id"), M{"name": data.Name}); err != nil {
		xhttp.ResponseJson(w, 500, M{
			"error": err.Error(),
		})
		return
	}
	xhttp.ResponseJson(w, 200, M{"message": "updated"})
}