From 47c03ae3376dea2d7bfab8fdae6e71af9e465653 Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Fri, 22 Sep 2017 03:54:24 -0600 Subject: adding data to struct in Update procedure --- system/api/update.go | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'system') diff --git a/system/api/update.go b/system/api/update.go index 31f29c1..91fbd8e 100644 --- a/system/api/update.go +++ b/system/api/update.go @@ -58,6 +58,20 @@ func updateContentHandler(res http.ResponseWriter, req *http.Request) { post := p() + j, err := db.Content(t + ":" + id) + if err != nil { + log.Println("[Update] error getting content for type:", t, err) + res.WriteHeader(http.StatusInternalServerError) + return + } + + err = json.Unmarshal(j, post) + if err != nil { + log.Println("[Update] error populating data in type:", t, err) + res.WriteHeader(http.StatusInternalServerError) + return + } + ext, ok := post.(Updateable) if !ok { log.Println("[Update] rejected non-updateable type:", t, "from:", req.RemoteAddr) @@ -221,7 +235,7 @@ func updateContentHandler(res http.ResponseWriter, req *http.Request) { }, } - j, err := json.Marshal(resp) + j, err = json.Marshal(resp) if err != nil { log.Println("[Update] error marshalling response to JSON:", err) res.WriteHeader(http.StatusInternalServerError) -- cgit v1.2.3