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
|
package main
import (
"log"
"net/http"
"strings"
)
func runServer() {
address := config.Host + ":" + config.Port
http.HandleFunc("/", route)
log.Println("Serving content at 'http://" + address + "'.")
log.Fatal(http.ListenAndServe(address, nil))
}
func route(w http.ResponseWriter, r *http.Request) {
tab := routingTable{
{"/favicon.ico", "GET", staticGet("favicon.ico")},
{"/static/style.css", "GET", staticGet("style.css")},
{"/add_recipes", "GET", addRecipesGet},
{"/recipe/confirm-deletion", "GET", recipeConfirmDeletionGet},
{"/recipe/confirm-deletion", "POST", recipeConfirmDeletionPost},
{"/recipe/edit", "GET", recipeEditGet},
{"/recipe/edit", "POST", recipeEditPost},
{"/recipe", "GET", recipeGet},
{"/", "GET", indexGet},
}
for _, v := range(tab) {
if strings.HasPrefix(r.URL.String(), v.target) && r.Method == v.method {
v.handler(w, r)
return
}
}
http.Error(w, "Bad Request", 400)
}
type routingTable []struct {
target string
method string
handler func(w http.ResponseWriter, r *http.Request)
}
|