diff options
author | xengineering <me@xengineering.eu> | 2023-04-22 19:28:54 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-22 19:28:54 +0200 |
commit | 7bb54a56e993723b2867efbafddd1b9abfebcd9e (patch) | |
tree | af9225992fe8cd60552a846403d17e5497ac6ba4 /handler.go | |
parent | a0cc83b88357e73a6bcae156b26029fc5257ac20 (diff) | |
download | ceres-7bb54a56e993723b2867efbafddd1b9abfebcd9e.tar ceres-7bb54a56e993723b2867efbafddd1b9abfebcd9e.tar.zst ceres-7bb54a56e993723b2867efbafddd1b9abfebcd9e.zip |
Remove legacy Recipe struct
Diffstat (limited to 'handler.go')
-rw-r--r-- | handler.go | 30 |
1 files changed, 10 insertions, 20 deletions
@@ -15,18 +15,9 @@ const ( VALID_ID_REGEX = `^[0-9]+$` ) -type Recipe struct { - Id string - Title string - Text string - Html string -} - func indexGet(w http.ResponseWriter, r *http.Request) { list := getRecipeList() - sort.Sort(list) - ServeTemplate(w, "index.html", list) } @@ -64,16 +55,17 @@ func recipeEditGet(w http.ResponseWriter, r *http.Request) { } idStr := ids[0] - textpath := filepath.Join(config.Data, "recipes", idStr, "text") - data, _ := ioutil.ReadFile(textpath) - - recipe := Recipe{ - idStr, - "", - string(data), - "", + text, err := getRecipeText(idStr) + if err != nil { + http.Error(w, "Could not get recipe.", 400) + return } + recipe := struct{ + Id string + Text string + }{idStr, string(text)} + ServeTemplate(w, "recipe_edit.html", recipe) } @@ -113,9 +105,7 @@ func recipeConfirmDeletionGet(w http.ResponseWriter, r *http.Request) { return } - recipe := Recipe{ids[0], "", "", ""} - - ServeTemplate(w, "recipe_confirm_deletion.html", recipe) + ServeTemplate(w, "recipe_confirm_deletion.html", struct{Id string}{ids[0]}) } func recipeConfirmDeletionPost(w http.ResponseWriter, r *http.Request) { |