diff options
author | xengineering <me@xengineering.eu> | 2024-11-03 15:49:43 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-11-03 16:05:55 +0100 |
commit | 7cd3a096a975801a07fb3ff06b6fac70e17234ce (patch) | |
tree | 36ce667817f6dc393dd2363e61ef9a6bafb424e1 /model/recipe.go | |
parent | 7361801b45640ead9db82769434eb181c31e57e6 (diff) | |
download | ceres-7cd3a096a975801a07fb3ff06b6fac70e17234ce.tar ceres-7cd3a096a975801a07fb3ff06b6fac70e17234ce.tar.zst ceres-7cd3a096a975801a07fb3ff06b6fac70e17234ce.zip |
model: Implement favorite recipes
This adds the ability to store a flag `is_favorite` inside the database.
The corresponding SQL migration is part of this commit.
Furthermore the Go code in the model package is adapted.
Diffstat (limited to 'model/recipe.go')
-rw-r--r-- | model/recipe.go | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/model/recipe.go b/model/recipe.go index fc2ae3a..684b158 100644 --- a/model/recipe.go +++ b/model/recipe.go @@ -16,6 +16,7 @@ type Recipe struct { Created string `json:"created"` LastChanged string `json:"last_changed"` Steps []Step `json:"steps"` + IsFavorite bool `json:"is_favorite"` } func (r Recipe) String() string { @@ -69,13 +70,13 @@ func (r *Recipe) Create(tx *sql.Tx) error { cmd := ` INSERT INTO recipes - (title, portions, url, notes, created, last_changed) + (title, portions, url, notes, created, last_changed, is_favorite) VALUES - (?, ?, ?, ?, ?, ?) + (?, ?, ?, ?, ?, ?, ?) ` result, err := tx.Exec(cmd, r.Title, r.Portions, r.Url, r.Notes, r.Created, - r.LastChanged) + r.LastChanged, r.IsFavorite) if err != nil { return err } @@ -136,7 +137,7 @@ ORDER BY func (r *Recipe) Read(tx *sql.Tx) error { cmd := ` SELECT - title, portions, url, notes, created, last_changed + title, portions, url, notes, created, last_changed, is_favorite FROM recipes WHERE @@ -160,6 +161,7 @@ WHERE &r.Notes, &r.Created, &r.LastChanged, + &r.IsFavorite, ) if err != nil { return err @@ -216,12 +218,13 @@ SET url = ?, notes = ?, created = ?, - last_changed = ? + last_changed = ?, + is_favorite = ? WHERE id = ?` res, err := tx.Exec(cmd, r.Title, r.Portions, r.Url, r.Notes, r.Created, - r.LastChanged, r.Id) + r.LastChanged, r.IsFavorite, r.Id) if err != nil { return err } @@ -296,6 +299,7 @@ func RecipeTestData() []Recipe { }, }, }, + IsFavorite: true, }, { Title: "Burger", @@ -305,6 +309,7 @@ func RecipeTestData() []Recipe { Created: "1715658069", LastChanged: "1715958070", Steps: []Step{}, + IsFavorite: false, }, } } |