diff options
author | xengineering <me@xengineering.eu> | 2023-04-25 17:39:48 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-28 10:44:29 +0200 |
commit | f456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1 (patch) | |
tree | 6803e98d6370abf887301adaf26438000fa7c292 | |
parent | fff3d70ba494214e434083c9d0e32f3def32138f (diff) | |
download | ceres-f456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1.tar ceres-f456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1.tar.zst ceres-f456fa1a6d3a6633af3b420f1eddbc1a96ffcdf1.zip |
Introduce routing table
This removes a lot of repetative code.
-rw-r--r-- | handler.go | 8 | ||||
-rw-r--r-- | mux.go | 72 | ||||
-rw-r--r-- | server.go | 45 |
3 files changed, 37 insertions, 88 deletions
@@ -181,8 +181,10 @@ func addRecipesGet(w http.ResponseWriter, r *http.Request) { http.Redirect(w, r, redirect, 303) } -func staticGet(w http.ResponseWriter, r *http.Request, filename string) { +func staticGet(filename string) (func(w http.ResponseWriter, r *http.Request)) { - path := filepath.Join(config.Static, filename) - http.ServeFile(w, r, path) + return func(w http.ResponseWriter, r *http.Request) { + path := filepath.Join(config.Static, filename) + http.ServeFile(w, r, path) + } } @@ -1,72 +0,0 @@ -package main - -import ( - "net/http" -) - -func indexMux(w http.ResponseWriter, r *http.Request) { - switch r.Method { - case "GET": - indexGet(w, r) - default: - http.Error(w, "Bad Request", 400) - } -} - -func recipeMux(w http.ResponseWriter, r *http.Request) { - switch r.Method { - case "GET": - recipeGet(w, r) - default: - http.Error(w, "Bad Request", 400) - } -} - -func recipeEditMux(w http.ResponseWriter, r *http.Request) { - switch r.Method { - case "GET": - recipeEditGet(w, r) - case "POST": - recipeEditPost(w, r) - default: - http.Error(w, "Bad Request", 400) - } -} - -func recipeConfirmDeletionMux(w http.ResponseWriter, r *http.Request) { - switch r.Method { - case "GET": - recipeConfirmDeletionGet(w, r) - case "POST": - recipeConfirmDeletionPost(w, r) - default: - http.Error(w, "Bad Request", 400) - } -} - -func addRecipesMux(w http.ResponseWriter, r *http.Request) { - switch r.Method { - case "GET": - addRecipesGet(w, r) - default: - http.Error(w, "Bad Request", 400) - } -} - -func staticStyleMux(w http.ResponseWriter, r *http.Request) { - switch r.Method { - case "GET": - staticGet(w, r, "style.css") - default: - http.Error(w, "Bad Request", 400) - } -} - -func faviconMux(w http.ResponseWriter, r *http.Request) { - switch r.Method { - case "GET": - staticGet(w, r, "favicon.ico") - default: - http.Error(w, "Bad Request", 400) - } -} @@ -3,23 +3,42 @@ package main import ( "log" "net/http" + "strings" ) -func setupRoutes() { - - http.HandleFunc("/", indexMux) - http.HandleFunc("/recipe", recipeMux) - http.HandleFunc("/recipe/edit", recipeEditMux) - http.HandleFunc("/recipe/confirm-deletion", recipeConfirmDeletionMux) - http.HandleFunc("/add_recipes", addRecipesMux) - http.HandleFunc("/static/style.css", staticStyleMux) - http.HandleFunc("/favicon.ico", faviconMux) -} - func runServer() { - - setupRoutes() 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) +} |