mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
28 lines
696 B
Go
28 lines
696 B
Go
package docker // import "docker.io/go-docker"
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
|
|
"docker.io/go-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+"/json", nil, nil)
|
|
if err != nil {
|
|
return nil, nil, wrapResponseError(err, resp, "plugin", name)
|
|
}
|
|
|
|
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
|
|
}
|