From f65b11a5b3011f370df5b4d32239225f3708ecd5 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 6 Apr 2024 13:12:17 +0200 Subject: 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. --- controller/recipe.go | 45 ++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 42 insertions(+), 3 deletions(-) (limited to 'controller') diff --git a/controller/recipe.go b/controller/recipe.go index 09f65a7..da58d35 100644 --- a/controller/recipe.go +++ b/controller/recipe.go @@ -18,7 +18,20 @@ func RecipeCreate(w http.ResponseWriter, r *http.Request) { recipe.LastChanged = fmt.Sprint(time.Now().Unix()) recipe.Created = recipe.LastChanged - err := recipe.Create() + tx, err := model.NewTx() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + + err = recipe.Create(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 @@ -48,7 +61,20 @@ func RecipeUpdate(w http.ResponseWriter, r *http.Request) { recipe.LastChanged = fmt.Sprint(time.Now().Unix()) - err = recipe.Update() + tx, err := model.NewTx() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + + err = recipe.Update(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 @@ -61,7 +87,20 @@ func RecipeDelete(w http.ResponseWriter, r *http.Request) { recipe := model.Recipe{} recipe.Id = mux.Vars(r)[`id`] - err := recipe.Delete() + tx, err := model.NewTx() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + + err = recipe.Delete(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 -- cgit v1.2.3-70-g09d2