2020-01-02 05:39:52 +00:00
|
|
|
package httputil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
|
|
|
type JSONError struct {
|
2020-05-03 21:02:03 +00:00
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (j JSONError) Error() string {
|
|
|
|
return "JSON decoding failed: " + j.err.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (j JSONError) Unwrap() error {
|
|
|
|
return j.err
|
2020-01-02 05:39:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type RequestError struct {
|
2020-05-03 21:02:03 +00:00
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r RequestError) Error() string {
|
2020-05-16 21:14:49 +00:00
|
|
|
return "request failed: " + r.err.Error()
|
2020-05-03 21:02:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r RequestError) Unwrap() error {
|
|
|
|
return r.err
|
2020-01-02 05:39:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type HTTPError struct {
|
|
|
|
Status int `json:"-"`
|
|
|
|
Body []byte `json:"-"`
|
|
|
|
|
|
|
|
Code ErrorCode `json:"code"`
|
|
|
|
Message string `json:"message,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err HTTPError) Error() string {
|
|
|
|
switch {
|
|
|
|
case err.Message != "":
|
|
|
|
return "Discord error: " + err.Message
|
|
|
|
|
|
|
|
case err.Code > 0:
|
|
|
|
return fmt.Sprintf("Discord returned status %d error code %d",
|
|
|
|
err.Status, err.Code)
|
|
|
|
|
|
|
|
case len(err.Body) > 0:
|
|
|
|
return fmt.Sprintf("Discord returned status %d body %s",
|
|
|
|
err.Status, string(err.Body))
|
|
|
|
|
|
|
|
default:
|
|
|
|
return "Discord returned status " + strconv.Itoa(err.Status)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ErrorCode uint
|