diff options
author | xengineering <me@xengineering.eu> | 2024-03-03 16:56:42 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-03 16:56:42 +0100 |
commit | 6a4f1aee179a25b62b02deffd0ad97914cbcca87 (patch) | |
tree | d20b1a8aad1cba2bd93967a5423683d2b6d1513e /controller | |
parent | bee8b4cc59fd24fc1b924a6160b8eaa221405aeb (diff) | |
download | ceres-6a4f1aee179a25b62b02deffd0ad97914cbcca87.tar ceres-6a4f1aee179a25b62b02deffd0ad97914cbcca87.tar.zst ceres-6a4f1aee179a25b62b02deffd0ad97914cbcca87.zip |
Add ID to URL in recipe updates
This makes the update URL more consistent with the other ones. A check
ensures consistency of the URL and JSON ID values.
Diffstat (limited to 'controller')
-rw-r--r-- | controller/recipe.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/controller/recipe.go b/controller/recipe.go index 259e3bc..e58092a 100644 --- a/controller/recipe.go +++ b/controller/recipe.go @@ -24,6 +24,11 @@ func RecipeUpdate(w http.ResponseWriter, r *http.Request) { return } + if recipe.Id != mux.Vars(r)[`id`] { + http.Error(w, "IDs in URL and JSON do not match", http.StatusBadRequest) + return + } + err = recipe.Update() if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) |