2016-09-06 14:46:37 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
2017-03-09 14:42:10 -05:00
|
|
|
"net/url"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NetworkInspect returns the information for a specific network configured in the docker host.
|
2017-03-09 14:42:10 -05:00
|
|
|
func (cli *Client) NetworkInspect(ctx context.Context, networkID string, verbose bool) (types.NetworkResource, error) {
|
|
|
|
networkResource, _, err := cli.NetworkInspectWithRaw(ctx, networkID, verbose)
|
2016-09-06 14:46:37 -04:00
|
|
|
return networkResource, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// NetworkInspectWithRaw returns the information for a specific network configured in the docker host and its raw representation.
|
2017-03-09 14:42:10 -05:00
|
|
|
func (cli *Client) NetworkInspectWithRaw(ctx context.Context, networkID string, verbose bool) (types.NetworkResource, []byte, error) {
|
|
|
|
var (
|
|
|
|
networkResource types.NetworkResource
|
|
|
|
resp serverResponse
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
query := url.Values{}
|
|
|
|
if verbose {
|
|
|
|
query.Set("verbose", "true")
|
|
|
|
}
|
|
|
|
resp, err = cli.get(ctx, "/networks/"+networkID, query, nil)
|
2016-09-06 14:46:37 -04:00
|
|
|
if err != nil {
|
|
|
|
if resp.statusCode == http.StatusNotFound {
|
|
|
|
return networkResource, nil, networkNotFoundError{networkID}
|
|
|
|
}
|
|
|
|
return networkResource, nil, err
|
|
|
|
}
|
|
|
|
defer ensureReaderClosed(resp)
|
|
|
|
|
|
|
|
body, err := ioutil.ReadAll(resp.body)
|
|
|
|
if err != nil {
|
|
|
|
return networkResource, nil, err
|
|
|
|
}
|
|
|
|
rdr := bytes.NewReader(body)
|
|
|
|
err = json.NewDecoder(rdr).Decode(&networkResource)
|
|
|
|
return networkResource, body, err
|
|
|
|
}
|