diff --git a/internal/webserver/httpTemplate.go b/internal/webserver/httpTemplate.go index 2afbdc7..eed9aec 100644 --- a/internal/webserver/httpTemplate.go +++ b/internal/webserver/httpTemplate.go @@ -14,6 +14,11 @@ import ( "istheinternetonfire.app/internal/config" ) +const ( + ERR_PARSE_TEMPLATE = "Template Parse Error" + ERR_EXEC_TEMPLATE = "Template Execution Error" +) + type webErrStruct struct { Error bool `json:"error" yaml:"error"` ErrorMsg string `json:"error_message" yaml:"errorMessage"` @@ -47,8 +52,8 @@ func tmpltWebRoot(w http.ResponseWriter, r *http.Request) { "html/css/style.css", ) if err != nil { - config.Cfg.Log.Debug("unable to parse html template", "error", err) - tmpltError(w, http.StatusInternalServerError, "Template Parse Error.") + config.Cfg.Log.Debug(ERR_PARSE_TEMPLATE, "error", err) + tmpltError(w, http.StatusInternalServerError, ERR_PARSE_TEMPLATE) return } @@ -75,8 +80,8 @@ func tmpltWebRoot(w http.ResponseWriter, r *http.Request) { }{ CVEs: cves[len(cves)-num:], }); err != nil { - config.Cfg.Log.Debug("unable to execute html template", err) - tmpltError(w, http.StatusInternalServerError, "Template Parse Error.") + config.Cfg.Log.Debug(ERR_EXEC_TEMPLATE, "error", err) + tmpltError(w, http.StatusInternalServerError, ERR_PARSE_TEMPLATE) return } @@ -86,8 +91,8 @@ func tmpltWebRoot(w http.ResponseWriter, r *http.Request) { func tmpltStatusNotFound(w http.ResponseWriter, path string) { tmplt, err := template.ParseFS(assets.EmbedHTML, "html/file-not-found.tplt") if err != nil { - config.Cfg.Log.Debug("unable to parse html template", err) - tmpltError(w, http.StatusInternalServerError, "Template Parse Error.") + config.Cfg.Log.Debug(ERR_PARSE_TEMPLATE, "error", err) + tmpltError(w, http.StatusInternalServerError, ERR_PARSE_TEMPLATE) return } @@ -99,8 +104,8 @@ func tmpltStatusNotFound(w http.ResponseWriter, path string) { Title: path, ErrorCode: http.StatusNotFound, }); err != nil { - config.Cfg.Log.Debug("unable to execute html template", err) - tmpltError(w, http.StatusInternalServerError, "Template Parse Error.") + config.Cfg.Log.Debug(ERR_EXEC_TEMPLATE, "error", err) + tmpltError(w, http.StatusInternalServerError, ERR_PARSE_TEMPLATE) return } w.Write(msgBuffer.Bytes()) //nolint:errcheck @@ -114,8 +119,8 @@ func tmpltTXT(w http.ResponseWriter) { "html/site.txt.tplt", ) if err != nil { - config.Cfg.Log.Debug("unable to parse template", "error", err) - tmpltError(w, http.StatusInternalServerError, "Template Parse Error.") + config.Cfg.Log.Debug(ERR_PARSE_TEMPLATE, "error", err) + tmpltError(w, http.StatusInternalServerError, ERR_PARSE_TEMPLATE) return } @@ -142,8 +147,8 @@ func tmpltTXT(w http.ResponseWriter) { }{ CVEs: cves[len(cves)-num:], }); err != nil { - config.Cfg.Log.Debug("unable to execute html template", err) - tmpltError(w, http.StatusInternalServerError, "Template Parse Error.") + config.Cfg.Log.Debug(ERR_EXEC_TEMPLATE, "error", err) + tmpltError(w, http.StatusInternalServerError, ERR_PARSE_TEMPLATE) return }