summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-03-31 19:47:55 +0200
committerxengineering <me@xengineering.eu>2023-03-31 19:47:55 +0200
commitf1308a436040f3a72e058e10ec2693cfb599da30 (patch)
treea3fa6c854b5bdec68077c0401b541dceceb51c00 /handler.go
parent58b03b95f544a6ab6bde5e508fbadcb0a2e804dd (diff)
downloadceres-f1308a436040f3a72e058e10ec2693cfb599da30.tar
ceres-f1308a436040f3a72e058e10ec2693cfb599da30.tar.zst
ceres-f1308a436040f3a72e058e10ec2693cfb599da30.zip
Remove image functionality
Recipe images are currently complicated to implement and have little use. Probably they will not be covered in the next release.
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/handler.go b/handler.go
index 5198a9f..ed8b675 100644
--- a/handler.go
+++ b/handler.go
@@ -212,25 +212,6 @@ func updateRecipe(body string, idStr string) {
return
}
-func recipeImageGet(w http.ResponseWriter, r *http.Request) {
-
- ids := r.URL.Query()["id"]
- if len(ids) != 1 {
- http.Error(w, "Expected exactly one 'id' URL parameter.", 400)
- return
- }
- idStr := ids[0]
-
- idRegex := regexp.MustCompile(VALID_ID_REGEX)
- if !idRegex.MatchString(idStr) {
- http.Error(w, "Bad 'id' URL parameter.", 400)
- return
- }
-
- path := fmt.Sprintf("recipes/image/%s.jpg", idStr)
- ServeStorage(w, r, path)
-}
-
func addRecipesGet(w http.ResponseWriter, r *http.Request) {
ServeTemplate(w, "add.html", nil)