mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
27 lines
539 B
Go
27 lines
539 B
Go
|
package httputils
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/docker/docker/pkg/jsonmessage"
|
||
|
)
|
||
|
|
||
|
// Request a given URL and return an io.Reader
|
||
|
func Download(url string) (resp *http.Response, err error) {
|
||
|
if resp, err = http.Get(url); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if resp.StatusCode >= 400 {
|
||
|
return nil, fmt.Errorf("Got HTTP status code >= 400: %s", resp.Status)
|
||
|
}
|
||
|
return resp, nil
|
||
|
}
|
||
|
|
||
|
func NewHTTPRequestError(msg string, res *http.Response) error {
|
||
|
return &jsonmessage.JSONError{
|
||
|
Message: msg,
|
||
|
Code: res.StatusCode,
|
||
|
}
|
||
|
}
|