summaryrefslogtreecommitdiff
path: root/server.go
AgeCommit message (Collapse)Author
2024-10-23Switch to http.Handlerxengineering
The used `func(http.ResponseWriter, *http.Request)` return values made the HTTP handler factory functions quite unreadable. Thus it is switched to the http.Handler type.
2024-10-22Remove github.com/gorilla/mux dependencyxengineering
The reason for the introduction of this dependency was that it was easy to setup routes with HTTP method restrictions. Since Go 1.22 this feature is part of the standard library. Method restrictions are part of the patterns used to register routes [1]. [1]: https://pkg.go.dev/net/http#hdr-Patterns-ServeMux
2024-10-13Simplify Server typexengineering
It is not required to create a struct definition with only one member. The new solution is more elegant.
2024-10-13model: Replace global db variable by custom typexengineering
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.
2024-05-09Remove default recipe namexengineering
To avoid not clickable recipes on the /recipes page a default name used to be inserted on recipe creation. This was not a proper fix for the problem and also was annoying that the user first had to remove the default recipe name. This commit removes this default name.
2024-05-08Rename gitDescribe to versionxengineering
This variable will be the only used representation for version information. It can trivially be used for an equality check. Further data as semantic versioning must be parsed from this string.
2024-05-07Move HTTP server code to new server.go filexengineering
This separates the main control flow and HTTP-related high-level code. Furthermore the new main.Server type makes the related methods and function more like the functions from the standard library with a NewServer() function and methods with only one word as name.
2023-09-17Remove complete implementationxengineering
Restarting from scratch seems to be the fastest approach to switch to sqlite and get rid of some other structural mistakes from the past.
2023-04-28Introduce routing tablexengineering
This removes a lot of repetative code.
2023-04-12Switch to unnested configxengineering
This is now just not needed.
2023-04-01Implement recipe deletionxengineering
2023-03-31Remove image functionalityxengineering
Recipe images are currently complicated to implement and have little use. Probably they will not be covered in the next release.
2023-02-11Apply go fmt *.goxengineering
This auto-applies the recommended Go codestyle.
2023-02-11Rework loggingxengineering
Logging during a request is at the moment not really needed. Printing the config to the log was a stupid idea too.
2023-02-11Make multiplexer regular handlersxengineering
Multiplexer functions used to return closures which are able to handle HTTP requests for historc reasons. Now the multiplexers can be regular HTTP handlers which is simpler.
2023-02-11Switch to global database pointerxengineering
Passing the database pointer around is a lot of text and has no benefit.
2023-02-11Switch webserver to global config structxengineering
2023-02-11Rename router.go to server.goxengineering
This fits better because this file is the central entry point of the Ceres webserver.