diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-09-22 03:54:24 -0600 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-09-22 03:54:24 -0600 |
commit | 47c03ae3376dea2d7bfab8fdae6e71af9e465653 (patch) | |
tree | b0550542baca227061b0a312c37cb1e6e42ef895 /system | |
parent | 6a9f86e1dea6be32d15f2ec520abc1fcfe78ad9e (diff) |
adding data to struct in Update procedure
Diffstat (limited to 'system')
-rw-r--r-- | system/api/update.go | 16 |
1 files changed, 15 insertions, 1 deletions
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) |