From 9d3a5fb85dc02e87fab879855c4c3bace5f753f2 Mon Sep 17 00:00:00 2001 From: xengineering Date: Fri, 17 May 2024 22:49:15 +0200 Subject: model: Fix direct access to database Instead a database transaction has to be used. Each database interaction should be wrapped into a transaction to make sure any possible change (even side-effects) can be rolled back in case of errors. --- model/recipes.go | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'model') diff --git a/model/recipes.go b/model/recipes.go index fd8115f..324589a 100644 --- a/model/recipes.go +++ b/model/recipes.go @@ -1,7 +1,9 @@ package model import ( + "database/sql" "errors" + "fmt" ) type RecipesElement struct { @@ -11,14 +13,18 @@ type RecipesElement struct { type Recipes []RecipesElement -func (r *Recipes) Read() error { +func (r *Recipes) Create(tx *sql.Tx) error { + return fmt.Errorf("Impossible to create a recipe list") +} + +func (r *Recipes) Read(tx *sql.Tx) error { if len(*r) != 0 { return errors.New("Recipes has to contain zero elements for .Read()") } query := `SELECT id, title FROM recipes` - rows, err := db.Query(query) + rows, err := tx.Query(query) if err != nil { return err } @@ -36,6 +42,14 @@ func (r *Recipes) Read() error { return nil } +func (r *Recipes) Update(tx *sql.Tx) error { + return fmt.Errorf("Impossible to update a recipe list") +} + +func (r *Recipes) Delete(tx *sql.Tx) error { + return fmt.Errorf("Impossible to delete a recipe list") +} + func RecipesTestData() Recipes { return []RecipesElement{ { -- cgit v1.2.3-70-g09d2