aboutsummaryrefslogtreecommitdiff
path: root/forged/internal/web/error_pages.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-04-06 09:26:46 +0800
committerRunxi Yu <me@runxiyu.org>2025-04-06 09:27:53 +0800
commitda1d8f4e7c332c7109427915e6459b10209cedce (patch)
tree280b921be3b51f93d82d916b4eaa89387b7102cc /forged/internal/web/error_pages.go
parentgit2c, git2d: Rename cmd1 and cmd2 descriptively (diff)
downloadforge-0.1.32.tar.gz
forge-0.1.32.tar.zst
forge-0.1.32.zip
Move the Go stuff to ./forged/v0.1.32
Diffstat (limited to 'forged/internal/web/error_pages.go')
-rw-r--r--forged/internal/web/error_pages.go48
1 files changed, 48 insertions, 0 deletions
diff --git a/forged/internal/web/error_pages.go b/forged/internal/web/error_pages.go
new file mode 100644
index 0000000..200e9d3
--- /dev/null
+++ b/forged/internal/web/error_pages.go
@@ -0,0 +1,48 @@
+// SPDX-License-Identifier: AGPL-3.0-only
+// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
+
+package web
+
+import (
+ "html/template"
+ "net/http"
+)
+
+func ErrorPage404(templates *template.Template, w http.ResponseWriter, params map[string]any) {
+ w.WriteHeader(http.StatusNotFound)
+ _ = templates.ExecuteTemplate(w, "404", params)
+}
+
+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(templates *template.Template, w http.ResponseWriter, params map[string]any) {
+ w.WriteHeader(http.StatusBadRequest)
+ _ = templates.ExecuteTemplate(w, "400_colon", params)
+}
+
+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(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(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(templates *template.Template, w http.ResponseWriter, params map[string]any) {
+ w.WriteHeader(http.StatusNotImplemented)
+ _ = templates.ExecuteTemplate(w, "501", params)
+}