aboutsummaryrefslogblamecommitdiff
path: root/pkg/handler/error.go
blob: b1bfd515d962ca952cf687661e115d003d6799d1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



               
                  





                                              
































                                                                                                                


                                
package handler

import (
	"log"
	"net/http"

	"github.com/labstack/echo/v4"
	"sh.org.ru/pkg/tpl"
)

func ErrorHandler(err error, c echo.Context) {
	if c.Response().Committed {
		return
	}

	he, ok := err.(*echo.HTTPError)
	if ok {
		if he.Internal != nil {
			if herr, ok := he.Internal.(*echo.HTTPError); ok {
				he = herr
			}
		}
	} else {
		he = &echo.HTTPError{
			Code:    http.StatusInternalServerError,
			Message: http.StatusText(http.StatusInternalServerError),
		}
	}
	code := he.Code
	message, ok := he.Message.(string)
	if !ok {
		message = "Неизвестная ошибка"
	}

	// Send response
	if c.Request().Method == http.MethodHead { // Issue #608
		err = c.NoContent(he.Code)
	} else {
		c.Response().WriteHeader(code)
		if err := tpl.ErrorPage(code, message).Render(c.Request().Context(), c.Response()); err != nil {
			log.Println(err)
		}
	}
	if err != nil {
		log.Println(err)
	}
}