summaryrefslogtreecommitdiff
path: root/server.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-10-13 19:52:28 +0200
committerxengineering <me@xengineering.eu>2024-10-13 19:55:38 +0200
commit473052ed8f2c83052ed5b47a7f4cec68ac2621a6 (patch)
tree2d5da088c6879317734277350c873a258b4d1dac /server.go
parented19b82335345833c5b8f5446237d559a3657a35 (diff)
downloadceres-473052ed8f2c83052ed5b47a7f4cec68ac2621a6.tar
ceres-473052ed8f2c83052ed5b47a7f4cec68ac2621a6.tar.zst
ceres-473052ed8f2c83052ed5b47a7f4cec68ac2621a6.zip
model: Replace global db variable by custom type
Reducing global variables makes it easier to understand functions independently of the rest of the code. Adding the new model.DB type as a custom variant of the sql.DB type makes it possible to write methods for the database which makes the code way more readable.
Diffstat (limited to 'server.go')
-rw-r--r--server.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/server.go b/server.go
index 7caf328..0c26188 100644
--- a/server.go
+++ b/server.go
@@ -7,6 +7,7 @@ import (
"net/http"
"xengineering.eu/ceres/controller"
+ "xengineering.eu/ceres/model"
"xengineering.eu/ceres/view"
"github.com/gorilla/mux"
@@ -19,7 +20,7 @@ type Server struct {
//go:embed view/static/simple.css/simple.css view/static/ceres.js
var static embed.FS
-func NewServer(addr string) Server {
+func NewServer(addr string, db *model.DB) Server {
var r *mux.Router = mux.NewRouter()
r.PathPrefix("/static/").
@@ -27,13 +28,13 @@ func NewServer(addr string) Server {
r.HandleFunc("/version", view.VersionRead(version)).Methods(`GET`)
- r.HandleFunc("/recipes", view.RecipesRead).Methods(`GET`)
+ r.HandleFunc("/recipes", view.RecipesRead(db)).Methods(`GET`)
r.HandleFunc("/recipe/create", view.RecipeCreate).Methods(`GET`)
- r.HandleFunc("/recipe", controller.RecipeCreate).Methods(`POST`)
- r.HandleFunc("/recipe/{id:[0-9]+}", view.RecipeRead).Methods(`GET`)
- r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeUpdate).Methods(`POST`)
- r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeDelete).Methods(`DELETE`)
+ r.HandleFunc("/recipe", controller.RecipeCreate(db)).Methods(`POST`)
+ r.HandleFunc("/recipe/{id:[0-9]+}", view.RecipeRead(db)).Methods(`GET`)
+ r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeUpdate(db)).Methods(`POST`)
+ r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeDelete(db)).Methods(`DELETE`)
r.HandleFunc("/favicon.ico", view.FaviconRead).Methods(`GET`)