2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-09-06 14:46:37 -04:00
|
|
|
"encoding/json"
|
2017-03-30 20:15:54 -04:00
|
|
|
"fmt"
|
2016-09-06 14:46:37 -04:00
|
|
|
"io/ioutil"
|
2017-03-30 20:15:54 -04:00
|
|
|
"net/url"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
2017-03-30 20:15:54 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2016-09-06 14:46:37 -04:00
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ServiceInspectWithRaw returns the service information and the raw data.
|
2017-03-30 20:15:54 -04:00
|
|
|
func (cli *Client) ServiceInspectWithRaw(ctx context.Context, serviceID string, opts types.ServiceInspectOptions) (swarm.Service, []byte, error) {
|
2018-01-30 07:35:22 -05:00
|
|
|
if serviceID == "" {
|
|
|
|
return swarm.Service{}, nil, objectNotFoundError{object: "service", id: serviceID}
|
|
|
|
}
|
2017-03-30 20:15:54 -04:00
|
|
|
query := url.Values{}
|
|
|
|
query.Set("insertDefaults", fmt.Sprintf("%v", opts.InsertDefaults))
|
|
|
|
serverResp, err := cli.get(ctx, "/services/"+serviceID, query, nil)
|
2016-09-06 14:46:37 -04:00
|
|
|
if err != nil {
|
2017-09-08 12:04:34 -04:00
|
|
|
return swarm.Service{}, nil, wrapResponseError(err, serverResp, "service", serviceID)
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
defer ensureReaderClosed(serverResp)
|
|
|
|
|
|
|
|
body, err := ioutil.ReadAll(serverResp.body)
|
|
|
|
if err != nil {
|
|
|
|
return swarm.Service{}, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var response swarm.Service
|
|
|
|
rdr := bytes.NewReader(body)
|
|
|
|
err = json.NewDecoder(rdr).Decode(&response)
|
|
|
|
return response, body, err
|
|
|
|
}
|