From 0ba1a7661a81200db98e40149eef1e39fd22f407 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 8 May 2024 21:53:13 +0200 Subject: Introduce model.Transaction() It is a very common pattern that some function needs to access the database and wants to wrap all the actions into one transaction. The advantage of a transaction is that it is ACID: - atomic - consistent - isolated - durable In Go it is required to request a new transaction, execute functionality on it and handle rollback or commit of this transaction based on the success of the operation. All this and the error handling can be written down in the model.Transaction() function exactly once. The full signature of it is: func Transaction(f func(*sql.Tx) error) error It requires a function or closure passed as argument which takes the transaction (*sql.Tx) and returns an error which might be nil. This is very generic. It is applied to: - injecting test data - database migrations - data read requests - data write requests --- view/recipe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/recipe.go') diff --git a/view/recipe.go b/view/recipe.go index ba670a2..7b9980d 100644 --- a/view/recipe.go +++ b/view/recipe.go @@ -13,7 +13,7 @@ func RecipeRead(w http.ResponseWriter, r *http.Request) { recipe.Id = mux.Vars(r)[`id`] var obj model.Object = &recipe - err := model.SafeCrud(obj.Read) + err := model.Transaction(obj.Read) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return -- cgit v1.2.3-70-g09d2