summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-03-03 15:13:55 +0100
committerxengineering <me@xengineering.eu>2024-03-03 15:26:07 +0100
commitb19326df6f372f9dd8f218d0c5b4d2d8b4d4fc35 (patch)
tree403dedeb172f6a7efb0fb3cbc8663227bec1a7e2
parent25fe18973f11d3db61a1ae9ca05f2bd63d3edea9 (diff)
downloadceres-b19326df6f372f9dd8f218d0c5b4d2d8b4d4fc35.tar
ceres-b19326df6f372f9dd8f218d0c5b4d2d8b4d4fc35.tar.zst
ceres-b19326df6f372f9dd8f218d0c5b4d2d8b4d4fc35.zip
view: Add 'Read' suffix to function names
This reflects that these HTTP handler functions implement one of the four CRUD methods create, read update and delete.
-rw-r--r--main.go8
-rw-r--r--view/favicon.go2
-rw-r--r--view/index.go2
-rw-r--r--view/recipe.go2
-rw-r--r--view/recipes.go2
5 files changed, 8 insertions, 8 deletions
diff --git a/main.go b/main.go
index aa04065..ec061c2 100644
--- a/main.go
+++ b/main.go
@@ -45,15 +45,15 @@ func startServer(addr string) *http.Server {
r.PathPrefix("/static/").
Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static))))
- r.HandleFunc("/recipes", view.Recipes).Methods(`GET`)
+ r.HandleFunc("/recipes", view.RecipesRead).Methods(`GET`)
- r.HandleFunc("/recipe/{id:[0-9]+}", view.Recipe).Methods(`GET`)
+ r.HandleFunc("/recipe/{id:[0-9]+}", view.RecipeRead).Methods(`GET`)
r.HandleFunc("/recipe", controller.RecipeUpdate).Methods(`POST`)
r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeDelete).Methods(`DELETE`)
- r.HandleFunc("/favicon.ico", view.Favicon).Methods(`GET`)
+ r.HandleFunc("/favicon.ico", view.FaviconRead).Methods(`GET`)
- r.HandleFunc("/", view.Index).Methods(`GET`)
+ r.HandleFunc("/", view.IndexRead).Methods(`GET`)
muxer := http.NewServeMux()
muxer.Handle("/", r)
diff --git a/view/favicon.go b/view/favicon.go
index 65bfaef..8e3ea79 100644
--- a/view/favicon.go
+++ b/view/favicon.go
@@ -4,6 +4,6 @@ import (
"net/http"
)
-func Favicon(w http.ResponseWriter, r *http.Request) {
+func FaviconRead(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusNoContent)
}
diff --git a/view/index.go b/view/index.go
index 8b9e73f..7d12783 100644
--- a/view/index.go
+++ b/view/index.go
@@ -4,6 +4,6 @@ import (
"net/http"
)
-func Index(w http.ResponseWriter, r *http.Request) {
+func IndexRead(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, "/recipes", http.StatusSeeOther)
}
diff --git a/view/recipe.go b/view/recipe.go
index 25abc6b..c488481 100644
--- a/view/recipe.go
+++ b/view/recipe.go
@@ -8,7 +8,7 @@ import (
"github.com/gorilla/mux"
)
-func Recipe(w http.ResponseWriter, r *http.Request) {
+func RecipeRead(w http.ResponseWriter, r *http.Request) {
recipe := model.Recipe{}
recipe.Id = mux.Vars(r)[`id`]
diff --git a/view/recipes.go b/view/recipes.go
index 3a5fbf8..bd4c72b 100644
--- a/view/recipes.go
+++ b/view/recipes.go
@@ -6,7 +6,7 @@ import (
"xengineering.eu/ceres/model"
)
-func Recipes(w http.ResponseWriter, r *http.Request) {
+func RecipesRead(w http.ResponseWriter, r *http.Request) {
recipes := make(model.Recipes, 0)
err := recipes.Read()