6c9628cdb1
* Rename 'vendor/src' -> 'vendor' * Ignore vendor/ instead of vendor/src/ for lint * Rename 'cmd/client' -> 'cmd/ocic' to make it 'go install'able * Rename 'cmd/server' -> 'cmd/ocid' to make it 'go install'able * Update Makefile to build and install from GOPATH * Update tests to locate ocid/ocic in GOPATH/bin * Search for binaries in GOPATH/bin instead of PATH * Install tools using `go get -u`, so they are updated on each run Signed-off-by: Jonathan Yu <jawnsy@redhat.com>
38 lines
970 B
Go
38 lines
970 B
Go
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"github.com/docker/engine-api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ImageInspectWithRaw returns the image information and its raw representation.
|
|
func (cli *Client) ImageInspectWithRaw(ctx context.Context, imageID string, getSize bool) (types.ImageInspect, []byte, error) {
|
|
query := url.Values{}
|
|
if getSize {
|
|
query.Set("size", "1")
|
|
}
|
|
serverResp, err := cli.get(ctx, "/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
|
|
}
|