From f1308a436040f3a72e058e10ec2693cfb599da30 Mon Sep 17 00:00:00 2001 From: xengineering Date: Fri, 31 Mar 2023 19:47:55 +0200 Subject: Remove image functionality Recipe images are currently complicated to implement and have little use. Probably they will not be covered in the next release. --- handler.go | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'handler.go') 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) -- cgit v1.2.3-70-g09d2