GoBlog/errors.go

45 lines
1.1 KiB
Go
Raw Normal View History

package main
import (
"fmt"
"net/http"
"github.com/elnormous/contenttype"
)
type errorData struct {
2020-09-21 14:12:17 +00:00
Title string
Message string
}
func (a *goBlog) serve404(w http.ResponseWriter, r *http.Request) {
a.serveError(w, r, fmt.Sprintf("%s was not found", r.RequestURI), http.StatusNotFound)
2020-12-24 09:09:34 +00:00
}
func (a *goBlog) serveNotAllowed(w http.ResponseWriter, r *http.Request) {
a.serveError(w, r, "", http.StatusMethodNotAllowed)
}
var errorCheckMediaTypes = []contenttype.MediaType{
contenttype.NewMediaType(contentTypeHTML),
}
func (a *goBlog) serveError(w http.ResponseWriter, r *http.Request, message string, status int) {
if mt, _, err := contenttype.GetAcceptableMediaType(r, errorCheckMediaTypes); err != nil || mt.String() != errorCheckMediaTypes[0].String() {
// Request doesn't accept HTML
2020-12-24 09:09:34 +00:00
http.Error(w, message, status)
return
}
title := fmt.Sprintf("%d %s", status, http.StatusText(status))
if message == "" {
message = http.StatusText(status)
}
2021-03-09 20:48:30 +00:00
w.WriteHeader(status)
a.render(w, r, templateError, &renderData{
2020-10-12 16:47:23 +00:00
Data: &errorData{
2020-12-24 09:09:34 +00:00
Title: title,
Message: message,
2020-10-12 16:47:23 +00:00
},
})
}