Documentation ¶
Overview ¶
Package app ties together application resources and handlers.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrBadRequest returns status 400 Bad Request for malformed request body. ErrBadRequest = &ErrResponse{HTTPStatusCode: http.StatusBadRequest, StatusText: http.StatusText(http.StatusBadRequest)} ErrUnauthorized = &ErrResponse{HTTPStatusCode: http.StatusUnauthorized, StatusText: http.StatusText(http.StatusUnauthorized)} // ErrForbidden returns status 403 Forbidden for unauthorized request. ErrForbidden = &ErrResponse{HTTPStatusCode: http.StatusForbidden, StatusText: http.StatusText(http.StatusForbidden)} // ErrNotFound returns status 404 Not Found for invalid resource request. ErrNotFound = &ErrResponse{HTTPStatusCode: http.StatusNotFound, StatusText: http.StatusText(http.StatusNotFound)} // ErrInternalServerError returns status 500 Internal Server Error. ErrInternalServerError = &ErrResponse{HTTPStatusCode: http.StatusInternalServerError, StatusText: http.StatusText(http.StatusInternalServerError)} )
Functions ¶
Types ¶
type API ¶
type API struct {
Driver *DriverResource
}
API provides application resources and handlers.
type DriverRequest ¶
type DriverResource ¶
type DriverResource struct {
Store DriverStore
}
DriverResource implements Driver management handler.
func NewDriverResource ¶
func NewDriverResource(store DriverStore) *DriverResource
NewDriverResource creates and returns a Driver resource.
type DriverResponse ¶
type DriverStore ¶
type DriverStore interface { Get(driverID int) (*models.Driver, error) Create(d *models.Driver) error }
DriverStore defines database operations for a Driver.
type ErrResponse ¶
type ErrResponse struct { Err error `json:"-"` // low-level runtime error HTTPStatusCode int `json:"-"` // http response status code StatusText string `json:"status"` // user-level status message AppCode int64 `json:"code,omitempty"` // application-specific error code ErrorText string `json:"error,omitempty"` // application-level error message, for debugging ValidationErrors validation.Errors `json:"errors,omitempty"` // user level model validation errors }
ErrResponse renderer type for handling all sorts of errors.
func (*ErrResponse) Render ¶
func (e *ErrResponse) Render(w http.ResponseWriter, r *http.Request) error
Render sets the application-specific error code in AppCode.
Click to show internal directories.
Click to hide internal directories.