summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go82
1 files changed, 32 insertions, 50 deletions
diff --git a/handler.go b/handler.go
index ed8b675..096122e 100644
--- a/handler.go
+++ b/handler.go
@@ -1,12 +1,14 @@
package main
import (
+ "bufio"
"bytes"
"fmt"
"io/ioutil"
"net/http"
"path/filepath"
"regexp"
+ "strings"
"github.com/yuin/goldmark"
)
@@ -15,9 +17,21 @@ const (
VALID_ID_REGEX = `^[0-9]+$`
)
+func titleFromMd(md string) string {
+ scanner := bufio.NewScanner(strings.NewReader(md))
+ for scanner.Scan() {
+ line := scanner.Text()
+ cut, found := strings.CutPrefix(line, "# ")
+ if (found) {
+ return cut
+ }
+ }
+ return "no title detected"
+}
+
func indexGet(w http.ResponseWriter, r *http.Request) {
- cmd := "SELECT id,title FROM recipes ORDER BY title;"
+ cmd := "SELECT id,description_markdown FROM recipes ORDER BY id;"
rows, err := db.Query(cmd)
if err != nil {
http.Error(w, "Failed to load recipes from database.", 500)
@@ -28,16 +42,18 @@ func indexGet(w http.ResponseWriter, r *http.Request) {
type Element struct {
Id string
Title string
+ DescriptionMarkdown string
}
elements := make([]Element, 0)
for rows.Next() {
var element Element
- err := rows.Scan(&element.Id, &element.Title)
+ err := rows.Scan(&element.Id, &element.DescriptionMarkdown)
if err != nil {
http.Error(w, "Could not parse recipe from database request.", 500)
return
} else {
+ element.Title = titleFromMd(element.DescriptionMarkdown)
elements = append(elements, element)
}
}
@@ -61,7 +77,7 @@ func recipeGet(w http.ResponseWriter, r *http.Request) {
return
}
- cmd := fmt.Sprintf("SELECT title,upstream_url,description_markdown FROM recipes WHERE (id='%s');", idStr)
+ cmd := fmt.Sprintf("SELECT description_markdown FROM recipes WHERE (id='%s');", idStr)
rows, err := db.Query(cmd)
if err != nil {
http.Error(w, "Database returned error: "+err.Error(), 500)
@@ -70,10 +86,9 @@ func recipeGet(w http.ResponseWriter, r *http.Request) {
defer rows.Close()
type Element struct {
- Id string
- Title string
- UpstreamUrl string
- DescriptionMarkdown string
+ Id string
+ Title string
+ DescriptionMarkdown string
RenderedDescriptionMarkdown string
}
elements := make([]Element, 0)
@@ -81,11 +96,12 @@ func recipeGet(w http.ResponseWriter, r *http.Request) {
for rows.Next() {
var element Element
element.Id = idStr
- err := rows.Scan(&element.Title, &element.UpstreamUrl, &element.DescriptionMarkdown)
+ err := rows.Scan(&element.DescriptionMarkdown)
if err != nil {
http.Error(w, "Could not parse recipe from database request.", 500)
return
} else {
+ element.Title = titleFromMd(element.DescriptionMarkdown)
elements = append(elements, element)
}
}
@@ -103,27 +119,6 @@ func recipeGet(w http.ResponseWriter, r *http.Request) {
ServeTemplate(w, "recipe.html", elements[0])
}
-func recipePost(w http.ResponseWriter, r *http.Request) {
-
- ids := r.URL.Query()["id"]
- if len(ids) != 1 {
- msg := fmt.Sprintf("Exactly 1 'id' URL parameter expected but %d provided.", len(ids))
- http.Error(w, msg, 400)
- return
- }
- idStr := ids[0]
-
- idRegex := regexp.MustCompile(VALID_ID_REGEX)
- if !(idRegex.MatchString(idStr)) {
- http.Error(w, "Bad 'id' URL parameter.", 400)
- return
- }
-
- buffer, _ := ioutil.ReadAll(r.Body) // FIXME error handling
- body := string(buffer)
- updateRecipe(body, idStr)
-}
-
func recipeEditGet(w http.ResponseWriter, r *http.Request) {
ids := r.URL.Query()["id"]
@@ -139,7 +134,7 @@ func recipeEditGet(w http.ResponseWriter, r *http.Request) {
return
}
- cmd := fmt.Sprintf("SELECT title,upstream_url,description_markdown FROM recipes WHERE (id='%s');", idStr)
+ cmd := fmt.Sprintf("SELECT description_markdown FROM recipes WHERE (id='%s');", idStr)
rows, err := db.Query(cmd)
if err != nil {
http.Error(w, "Got error from database: "+err.Error(), 500)
@@ -148,18 +143,15 @@ func recipeEditGet(w http.ResponseWriter, r *http.Request) {
defer rows.Close()
type Element struct {
- Id string
- Title string
- UpstreamUrl string
- DescriptionMarkdown string
- RenderedDescriptionMarkdown string
+ Id string
+ DescriptionMarkdown string
}
elements := make([]Element, 0)
for rows.Next() {
var element Element
element.Id = idStr
- err := rows.Scan(&element.Title, &element.UpstreamUrl, &element.DescriptionMarkdown)
+ err := rows.Scan(&element.DescriptionMarkdown)
if err != nil {
http.Error(w, "Could not parse recipe from database request.", 500)
return
@@ -214,28 +206,18 @@ func updateRecipe(body string, idStr string) {
func addRecipesGet(w http.ResponseWriter, r *http.Request) {
- ServeTemplate(w, "add.html", nil)
-}
-
-func addRecipesPost(w http.ResponseWriter, r *http.Request) {
-
- url := r.FormValue("url")
- title := r.FormValue("title")
-
- cmd := fmt.Sprintf("INSERT INTO recipes (title,upstream_url) VALUES ('%s', '%s')", title, url)
+ cmd := fmt.Sprintf("INSERT INTO recipes (title) VALUES ('%s')", "New recipe")
res, err := db.Exec(cmd)
if err != nil {
- http.Error(w, "Could not add recipe.", 500)
+ http.Error(w, "Could not create recipe.", 500)
return
}
id, err := res.LastInsertId()
if err != nil {
- http.Error(w, "Expected exactly one recipe URL.", 400)
- return
+ http.Error(w, "Could not get new recipe ID from database", 500)
} else {
- redirect := fmt.Sprintf("/recipe?id=%d", id)
+ redirect := fmt.Sprintf("/recipe/edit?id=%d", id)
http.Redirect(w, r, redirect, 303)
- return
}
}