From ea54de7d32e6b576ccfb430e7e57811b7c4587fe Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 17 Sep 2023 11:07:08 +0200 Subject: Remove complete implementation Restarting from scratch seems to be the fastest approach to switch to sqlite and get rid of some other structural mistakes from the past. --- server.go | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 server.go (limited to 'server.go') diff --git a/server.go b/server.go deleted file mode 100644 index 3c82f36..0000000 --- a/server.go +++ /dev/null @@ -1,44 +0,0 @@ -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) -} -- cgit v1.2.3-70-g09d2