summaryrefslogtreecommitdiff
path: root/view/recipe.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-04-06 13:12:17 +0200
committerxengineering <me@xengineering.eu>2024-04-06 13:12:17 +0200
commitf65b11a5b3011f370df5b4d32239225f3708ecd5 (patch)
tree360261244c95e80cf2a56160527f5be7c6f5e2d7 /view/recipe.go
parent9985d6f86fcee9d3c1d1148a5977190b673a8e8e (diff)
downloadceres-f65b11a5b3011f370df5b4d32239225f3708ecd5.tar
ceres-f65b11a5b3011f370df5b4d32239225f3708ecd5.tar.zst
ceres-f65b11a5b3011f370df5b4d32239225f3708ecd5.zip
model: Always pass *sql.Tx to CRUD methods
When nesting objects like steps into other objects like recipes it is required to pass a *sql.Tx value to the CRUD methods of the inner object to be able to roll back the whole transaction. The top level object used to be responsible for the creation of this *sql.Tx inside its CRUD methods. This is now moved to the caller of the CRUD methods (here the HTTP handler function). The advantage is that all CRUD methods now accept a *sql.Tx as only argument which makes those methods more consistent.
Diffstat (limited to 'view/recipe.go')
-rw-r--r--view/recipe.go15
1 files changed, 14 insertions, 1 deletions
diff --git a/view/recipe.go b/view/recipe.go
index 0b545d9..52b7a7e 100644
--- a/view/recipe.go
+++ b/view/recipe.go
@@ -12,7 +12,20 @@ func RecipeRead(w http.ResponseWriter, r *http.Request) {
recipe := model.Recipe{}
recipe.Id = mux.Vars(r)[`id`]
- err := recipe.Read()
+ 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()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return