From e105822a4f2227ca97853ac1bf106f8d204d6837 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 17 Feb 2024 17:51:00 +0100 Subject: controller: Update recipe based on JSON --- model/recipe.go | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'model/recipe.go') diff --git a/model/recipe.go b/model/recipe.go index 760fe79..c9ef6fb 100644 --- a/model/recipe.go +++ b/model/recipe.go @@ -17,10 +17,14 @@ type Recipe struct { LastChanged string `json:"last_changed"` } -func (r *Recipe) Create() error { +func (r *Recipe) Touch() { now := time.Now().Unix() - r.Created = fmt.Sprint(now) - r.LastChanged = r.Created + r.LastChanged = fmt.Sprint(now) +} + +func (r *Recipe) Create() error { + r.Touch() + r.Created = r.LastChanged query := `INSERT INTO recipes (title, portions, url, notes, created, last_changed) @@ -78,6 +82,8 @@ WHERE id = ?` } func (r *Recipe) Update() error { + r.Touch() + query := `UPDATE recipes SET @@ -85,13 +91,12 @@ SET portions = ?, url = ?, notes = ?, - created = ?, last_changed = ? WHERE id = ?` res, err := db.Exec(query, r.Title, r.Portions, r.Url, r.Notes, - r.Created, r.LastChanged, r.Id) + r.LastChanged, r.Id) if err != nil { return err } -- cgit v1.2.3-70-g09d2