mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
38 lines
914 B
Go
38 lines
914 B
Go
|
package lib
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"encoding/json"
|
||
|
"io/ioutil"
|
||
|
"net/http"
|
||
|
"net/url"
|
||
|
|
||
|
"github.com/docker/docker/api/types"
|
||
|
)
|
||
|
|
||
|
// ImageInspectWithRaw returns the image information and it's raw representation.
|
||
|
func (cli *Client) ImageInspectWithRaw(imageID string, getSize bool) (types.ImageInspect, []byte, error) {
|
||
|
query := url.Values{}
|
||
|
if getSize {
|
||
|
query.Set("size", "1")
|
||
|
}
|
||
|
serverResp, err := cli.get("/images/"+imageID+"/json", query, nil)
|
||
|
if err != nil {
|
||
|
if serverResp.statusCode == http.StatusNotFound {
|
||
|
return types.ImageInspect{}, nil, imageNotFoundError{imageID}
|
||
|
}
|
||
|
return types.ImageInspect{}, nil, err
|
||
|
}
|
||
|
defer ensureReaderClosed(serverResp)
|
||
|
|
||
|
body, err := ioutil.ReadAll(serverResp.body)
|
||
|
if err != nil {
|
||
|
return types.ImageInspect{}, nil, err
|
||
|
}
|
||
|
|
||
|
var response types.ImageInspect
|
||
|
rdr := bytes.NewReader(body)
|
||
|
err = json.NewDecoder(rdr).Decode(&response)
|
||
|
return response, body, err
|
||
|
}
|