problem

package module
v1.1.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 3, 2022 License: MIT Imports: 6 Imported by: 2

README

problem-details
build-status license build-status build-status

ProblemDetails is an Error Handler base on RFC 7807 standard to map our error to standardized error payload to client. For implement this approach, we use It's a JSON or XML format, when formatted as a JSON document, it uses the "application/problem+json" media type and for XML format, it uses the "application/problem+xml" media type. This document help us to defines machine-readable details of errors in an HTTP response to avoid the need to define new error response formats for HTTP APIs.

Our problem details response body and headers will be look like this:

// Response body

{
"status": 400,                                        // The HTTP status code generated on the problem occurrence
"title": "bad-request",                               // A short human-readable problem summary
"detail": "We have a bad request in our endpoint",    // A human-readable explanation for what exactly happened
"type": "https://httpstatuses.io/400",                // URI reference to identify the problem type
"instance": "/sample1"                                // URI reference of the occurrence
}
// Response headers

 content-type: application/problem+json
 date: Thu,29 Sep 2022 14:07:23 GMT 

There are some samples for using this package on top of Echo here and for Gin here.

Installation

go get github.com/meysamhadeli/problem-details

Web-Frameworks

Echo

Error Handler:

For handling our error we need to specify an Error Handler on top of Echo framework:

// EchoErrorHandler middleware for handle problem details error on echo
func EchoErrorHandler(error error, c echo.Context) {

	// handle problem details with customize problem map error
	problem.Map(http.StatusInternalServerError, func() *problem.ProblemDetail {
		return &problem.ProblemDetail{
			Type:      "https://httpstatuses.io/400",
			Detail:    error.Error(),
			Status:    http.StatusBadRequest,
			Title:     "bad-request",
		}
	})

	// resolve problem details error from response in echo
	if !c.Response().Committed {
		if err := problem.ResolveProblemDetails(c.Response(), c.Request(), error); err != nil {
			log.Error(err)
		}
	}
}
Creaeting specific status code error:

In this sample we get error response with specific code.

// sample with return specific status code
func sample1(c echo.Context) error {
   err := errors.New("We have a unauthorized error in our endpoint")
   return echo.NewHTTPError(http.StatusUnauthorized, err)
}
Handeling unhandled error:

If we don't have specific status code by default our status code is 500 and we can write a config option for problem details in our Error Handler and override a new staus code and additinal info for our error. (We configured http.StatusInternalServerError change to http.StatusBadRequest base on example in our error handler)

// sample with handling unhanded error to customize return status code with problem details
func sample2(c echo.Context) error {
	err := errors.New("We have a custom error in our endpoint")
	return err
}

Gin

Error Handler:

For handling our error we need to specify an Error Handler on top of Gin framework:

// GinErrorHandler middleware for handle problem details error on gin
func GinErrorHandler() gin.HandlerFunc {
	return func(c *gin.Context) {

		c.Next()

		for _, err := range c.Errors {

			// handle problem details with customize problem map error
			problem.Map(http.StatusInternalServerError, func() *problem.ProblemDetail {
				return &problem.ProblemDetail{
					Type:      "https://httpstatuses.io/400",
					Detail:    err.Error(),
					Status:    http.StatusBadRequest,
					Title:     "bad-request",
				}
			})

			if err := problem.ResolveProblemDetails(c.Writer, c.Request, err); err != nil {
				log.Error(err)
			}
		}
	}
}
Creaeting specific status code error:

In this sample we get error response with specific code.

// sample with return specific status code
func sample1(c *gin.Context) {
   err := errors.New("We have a unauthorized error in our endpoint")
   _ = c.AbortWithError(http.StatusUnauthorized, err)
}
Handeling unhandled error:

If we don't have specific status code by default our status code is 500 and we can write a config option for problem details in our Error Handler and override a new staus code and additinal info for our error. (We configured http.StatusInternalServerError change to http.StatusBadRequest base on example in our error handler)

// sample with handling unhandled error to customize return status code with problem details
func sample2(c *gin.Context) {
	err := errors.New("We have a custom error in our endpoint")
	_ = c.Error(err)
}

Support

If you like my work, feel free to:

  • ⭐ this repository. And we will be happy together :)

Thanks a bunch for supporting me!

Contribution

Thanks to all contributors, you're awesome and this wouldn't be possible without you! The goal is to build a categorized community-driven collection of very well-known resources.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Map

func Map(statusCode int, funcProblem func() *ProblemDetail)

Map map error to problem details error

func ResolveProblemDetails

func ResolveProblemDetails(w http.ResponseWriter, r *http.Request, err error) error

ResolveProblemDetails retrieve and resolve error with format problem details error

Types

type ProblemDetail

type ProblemDetail struct {
	Status     int    `json:"status,omitempty"`
	Title      string `json:"title,omitempty"`
	Detail     string `json:"detail,omitempty"`
	Type       string `json:"type,omitempty"`
	Instance   string `json:"instance,omitempty"`
	StackTrace string `json:"stackTrace,omitempty"`
}

ProblemDetail error struct

Directories

Path Synopsis
samples

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL