diff options
author | Runxi Yu <me@runxiyu.org> | 2025-04-05 23:18:30 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-04-05 23:18:30 +0800 |
commit | edc30e6d36b51f73d2db31e6fbc55f86e8ca451f (patch) | |
tree | 5d15da4dc72b71e86f7293e51d12b29706e8889a /internal | |
parent | Remove an unnecessary nolint:gochecknoglobals (diff) | |
download | forge-edc30e6d36b51f73d2db31e6fbc55f86e8ca451f.tar.gz forge-edc30e6d36b51f73d2db31e6fbc55f86e8ca451f.tar.zst forge-edc30e6d36b51f73d2db31e6fbc55f86e8ca451f.zip |
web: Separate HTTP error pages into its own package
Diffstat (limited to '')
-rw-r--r-- | internal/web/error_pages.go (renamed from http_error_page.go) | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/http_error_page.go b/internal/web/error_pages.go index 0cce72e..200e9d3 100644 --- a/http_error_page.go +++ b/internal/web/error_pages.go @@ -1,47 +1,48 @@ // SPDX-License-Identifier: AGPL-3.0-only // SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org> -package forge +package web import ( + "html/template" "net/http" ) -func errorPage404(w http.ResponseWriter, params map[string]any) { +func ErrorPage404(templates *template.Template, w http.ResponseWriter, params map[string]any) { w.WriteHeader(http.StatusNotFound) _ = templates.ExecuteTemplate(w, "404", params) } -func errorPage400(w http.ResponseWriter, params map[string]any, msg string) { +func ErrorPage400(templates *template.Template, w http.ResponseWriter, params map[string]any, msg string) { w.WriteHeader(http.StatusBadRequest) params["complete_error_msg"] = msg _ = templates.ExecuteTemplate(w, "400", params) } -func errorPage400Colon(w http.ResponseWriter, params map[string]any) { +func ErrorPage400Colon(templates *template.Template, w http.ResponseWriter, params map[string]any) { w.WriteHeader(http.StatusBadRequest) _ = templates.ExecuteTemplate(w, "400_colon", params) } -func errorPage403(w http.ResponseWriter, params map[string]any, msg string) { +func ErrorPage403(templates *template.Template, w http.ResponseWriter, params map[string]any, msg string) { w.WriteHeader(http.StatusForbidden) params["complete_error_msg"] = msg _ = templates.ExecuteTemplate(w, "403", params) } -func errorPage451(w http.ResponseWriter, params map[string]any, msg string) { +func ErrorPage451(templates *template.Template, w http.ResponseWriter, params map[string]any, msg string) { w.WriteHeader(http.StatusUnavailableForLegalReasons) params["complete_error_msg"] = msg _ = templates.ExecuteTemplate(w, "451", params) } -func errorPage500(w http.ResponseWriter, params map[string]any, msg string) { +func ErrorPage500(templates *template.Template, w http.ResponseWriter, params map[string]any, msg string) { w.WriteHeader(http.StatusInternalServerError) params["complete_error_msg"] = msg _ = templates.ExecuteTemplate(w, "500", params) } -func errorPage501(w http.ResponseWriter, params map[string]any) { +func ErrorPage501(templates *template.Template, w http.ResponseWriter, params map[string]any) { w.WriteHeader(http.StatusNotImplemented) _ = templates.ExecuteTemplate(w, "501", params) } |