From 817f15a79f2960101644cd282703e9439aef082f Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 11 Feb 2023 12:32:36 +0100 Subject: Rename router.go to server.go This fits better because this file is the central entry point of the Ceres webserver. --- server.go | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 server.go (limited to 'server.go') diff --git a/server.go b/server.go new file mode 100644 index 0000000..ef7397d --- /dev/null +++ b/server.go @@ -0,0 +1,26 @@ + +package main + +import ( + "log" + "net/http" +) + +func setupRoutes(config HttpConfig, db *Database) { + + http.HandleFunc("/", indexMux(db, config.Templates)) + http.HandleFunc("/recipe", recipeMux(db, config.Templates)) + http.HandleFunc("/recipe/edit", recipeEditMux(db, config.Templates)) + http.HandleFunc("/recipe/image", recipeImageMux(config.Storage)) + http.HandleFunc("/add_recipes", addRecipesMux(db, config.Storage, config.Static)) + http.HandleFunc("/static/style.css", staticStyleMux("style.css", config.Static)) + http.HandleFunc("/favicon.ico", faviconMux("favicon.ico", config.Static)) +} + +func runServer(config HttpConfig, db *Database) { + + setupRoutes(config, db) + address := config.Host + ":" + config.Port + log.Println("Binding to 'http://" + address) + log.Fatal(http.ListenAndServe(address, nil)) +} -- cgit v1.2.3-70-g09d2