summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go12
1 files changed, 9 insertions, 3 deletions
diff --git a/handler.go b/handler.go
index e2d2183..98bcc2d 100644
--- a/handler.go
+++ b/handler.go
@@ -1,6 +1,7 @@
package main
import (
+ "encoding/json"
"fmt"
"io/ioutil"
"net/http"
@@ -88,16 +89,21 @@ func recipeEditPost(w http.ResponseWriter, r *http.Request) {
}
idStr := r.Form["id"][0]
- buffer := r.Form["text"][0]
-
idRegex := regexp.MustCompile(VALID_ID_REGEX)
if !(idRegex.MatchString(idStr)) {
http.Error(w, "Bad 'id' URL parameter.", 400)
return
}
+ buffer := []byte(r.Form["text"][0])
+ err := json.Unmarshal(buffer, &recipe{})
+ if err != nil {
+ http.Error(w, "Text input could not be parsed to recipe.", 400)
+ return
+ }
+
textpath := filepath.Join(config.Data, "recipes", idStr, "text")
- err := ioutil.WriteFile(textpath, []byte(buffer), 0644)
+ err = ioutil.WriteFile(textpath, buffer, 0644)
if err != nil {
http.Error(w, "Could not save new text for recipe.", 500)
}