mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
![Yong Tang](/assets/img/avatar_default.png)
This fix tries to address the proposal raised in 28946
to support plugins in `docker inspect`.
The command `docker inspect` already supports
"container", "image", "node", "network", "service", "volume", "task".
However, `--type plugin` is not supported yet at the moment.
This fix address this issue by adding the support of `--type plugin`
for `docker inspect`.
An additional integration test has been added to cover the changes.
This fix fixes 28946.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
(cherry picked from commit 90bb2cdb9f
)
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
32 lines
728 B
Go
32 lines
728 B
Go
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"net/http"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// PluginInspectWithRaw inspects an existing plugin
|
|
func (cli *Client) PluginInspectWithRaw(ctx context.Context, name string) (*types.Plugin, []byte, error) {
|
|
resp, err := cli.get(ctx, "/plugins/"+name, nil, nil)
|
|
if err != nil {
|
|
if resp.statusCode == http.StatusNotFound {
|
|
return nil, nil, pluginNotFoundError{name}
|
|
}
|
|
return nil, nil, err
|
|
}
|
|
|
|
defer ensureReaderClosed(resp)
|
|
body, err := ioutil.ReadAll(resp.body)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
var p types.Plugin
|
|
rdr := bytes.NewReader(body)
|
|
err = json.NewDecoder(rdr).Decode(&p)
|
|
return &p, body, err
|
|
}
|