1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
package main
import (
"fmt"
"io/ioutil"
"net/http"
"os"
"path/filepath"
"regexp"
"sort"
"strconv"
)
const (
VALID_ID_REGEX = `^[0-9]+$`
)
func indexGet(w http.ResponseWriter, r *http.Request) {
list := getRecipeList()
sort.Sort(list)
ServeTemplate(w, "index.html", list)
}
func recipeGet(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]
rec, err := getRecipe(idStr)
if err != nil {
http.Error(w, "Could not get recipe.", 400)
return
}
data := struct{
Id string
Recipe recipe
}{idStr, rec}
ServeTemplate(w, "recipe.html", data)
}
func recipeEditGet(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]
text, err := getRecipeText(idStr)
if err != nil {
http.Error(w, "Could not get recipe.", 400)
return
}
recipe := struct{
Id string
Text string
}{idStr, string(text)}
ServeTemplate(w, "recipe_edit.html", recipe)
}
func recipeEditPost(w http.ResponseWriter, r *http.Request) {
ids := r.URL.Query()["id"]
if len(ids) != 1 {
http.Error(w, "Exactly 1 'id' URL parameter expected.", 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, err := ioutil.ReadAll(r.Body)
if err != nil {
http.Error(w, "Could not read request body.", 400)
return
}
textpath := filepath.Join(config.Data, "recipes", idStr, "text")
err = ioutil.WriteFile(textpath, buffer, 0644)
if err != nil {
http.Error(w, "Could not save new text for recipe.", 500)
}
}
func recipeConfirmDeletionGet(w http.ResponseWriter, r *http.Request) {
ids := r.URL.Query()["id"]
if len(ids) != 1 {
http.Error(w, "Exactly 1 'id' URL parameter expected.", 400)
return
}
ServeTemplate(w, "recipe_confirm_deletion.html", struct{Id string}{ids[0]})
}
func recipeConfirmDeletionPost(w http.ResponseWriter, r *http.Request) {
ids := r.URL.Query()["id"]
if len(ids) != 1 {
http.Error(w, "Exactly 1 'id' URL parameter expected.", 400)
return
}
recipedir := filepath.Join(config.Data, "recipes", ids[0])
err := os.RemoveAll(recipedir)
if err != nil {
http.Error(w, "Could not delete recipe.", 500)
return
}
http.Redirect(w, r, "/index.html", 303)
}
func addRecipesGet(w http.ResponseWriter, r *http.Request) {
var biggest int = -1
entries, _ := os.ReadDir(filepath.Join(config.Data, "recipes"))
for _, v := range entries {
if v.IsDir() == false {
continue
}
number, err := strconv.Atoi(v.Name())
if err != nil {
continue
}
if number > biggest {
biggest = number
}
}
newId := biggest + 1
newIdStr := strconv.Itoa(newId)
recipedir := filepath.Join(config.Data, "recipes", newIdStr)
err := os.Mkdir(recipedir, 0755)
if err != nil {
http.Error(w, "Could not create new recipe!", 500)
return
}
textpath := filepath.Join(config.Data, "recipes", newIdStr, "text")
err = os.WriteFile(textpath, make([]byte, 0), 0644)
if err != nil {
http.Error(w, "Could not create new recipe!", 500)
return
}
redirect := fmt.Sprintf("/recipe/edit?id=%d", newId)
http.Redirect(w, r, redirect, 303)
}
func staticGet(w http.ResponseWriter, r *http.Request, filename string) {
path := filepath.Join(config.Static, filename)
http.ServeFile(w, r, path)
}
|