package lfsapi import ( "fmt" "net/http" "strings" "github.com/git-lfs/git-lfs/errors" ) type httpError interface { Error() string HTTPResponse() *http.Response } func IsHTTP(err error) (*http.Response, bool) { if httpErr, ok := err.(httpError); ok { return httpErr.HTTPResponse(), true } return nil, false } func ClientErrorMessage(msg, docURL, reqID string) string { if len(docURL) > 0 { msg += "\nDocs: " + docURL } if len(reqID) > 0 { msg += "\nRequest ID: " + reqID } return msg } type ClientError struct { Message string `json:"message"` DocumentationUrl string `json:"documentation_url,omitempty"` RequestId string `json:"request_id,omitempty"` response *http.Response } func (e *ClientError) HTTPResponse() *http.Response { return e.response } func (e *ClientError) Error() string { return ClientErrorMessage(e.Message, e.DocumentationUrl, e.RequestId) } func (c *Client) handleResponse(res *http.Response) error { if res.StatusCode < 400 { return nil } cliErr := &ClientError{response: res} err := DecodeJSON(res, cliErr) if IsDecodeTypeError(err) { err = nil } if err == nil { if len(cliErr.Message) == 0 { err = defaultError(res) } else { err = errors.Wrap(cliErr, "http") } } if res.StatusCode == 401 { return errors.NewAuthError(err) } if res.StatusCode > 499 && res.StatusCode != 501 && res.StatusCode != 507 && res.StatusCode != 509 { return errors.NewFatalError(err) } return err } type statusCodeError struct { response *http.Response } func NewStatusCodeError(res *http.Response) error { return &statusCodeError{response: res} } func (e *statusCodeError) Error() string { req := e.response.Request return fmt.Sprintf("Invalid HTTP status for %s %s: %d", req.Method, strings.SplitN(req.URL.String(), "?", 2)[0], e.response.StatusCode, ) } func (e *statusCodeError) HTTPResponse() *http.Response { return e.response } var ( defaultErrors = map[int]string{ 400: "Client error: %s", 401: "Authorization error: %s\nCheck that you have proper access to the repository", 403: "Authorization error: %s\nCheck that you have proper access to the repository", 404: "Repository or object not found: %s\nCheck that it exists and that you have proper access to it", 429: "Rate limit exceeded: %s", 500: "Server error: %s", 501: "Not Implemented: %s", 507: "Insufficient server storage: %s", 509: "Bandwidth limit exceeded: %s", } ) func defaultError(res *http.Response) error { var msgFmt string if f, ok := defaultErrors[res.StatusCode]; ok { msgFmt = f } else if res.StatusCode < 500 { msgFmt = defaultErrors[400] + fmt.Sprintf(" from HTTP %d", res.StatusCode) } else { msgFmt = defaultErrors[500] + fmt.Sprintf(" from HTTP %d", res.StatusCode) } return errors.Errorf(msgFmt, res.Request.URL) }