diff options
author | xengineering <me@xengineering.eu> | 2024-04-07 10:42:03 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-04-07 10:47:36 +0200 |
commit | c4a4a8b5f60a568abd2af614ca4a5d06855bc3a1 (patch) | |
tree | 864d9022dc9a1ad6f832f1c97201af817c7b883b /view/recipe.go | |
parent | 537bbcea3b2477eeae7d86422a073558185cf4eb (diff) | |
download | ceres-c4a4a8b5f60a568abd2af614ca4a5d06855bc3a1.tar ceres-c4a4a8b5f60a568abd2af614ca4a5d06855bc3a1.tar.zst ceres-c4a4a8b5f60a568abd2af614ca4a5d06855bc3a1.zip |
model: Add helper function for safe CRUD
This removes the redundant setup of a database/sql.Tx in each HTTP
handler.
Diffstat (limited to 'view/recipe.go')
-rw-r--r-- | view/recipe.go | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/view/recipe.go b/view/recipe.go index 52b7a7e..ba670a2 100644 --- a/view/recipe.go +++ b/view/recipe.go @@ -12,20 +12,8 @@ func RecipeRead(w http.ResponseWriter, r *http.Request) { recipe := model.Recipe{} recipe.Id = mux.Vars(r)[`id`] - tx, err := model.NewTx() - if err != nil { - http.Error(w, err.Error(), http.StatusInternalServerError) - return - } - - err = recipe.Read(tx) - if err != nil { - model.Rollback(tx) - http.Error(w, err.Error(), http.StatusInternalServerError) - return - } - - err = tx.Commit() + var obj model.Object = &recipe + err := model.SafeCrud(obj.Read) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return |