mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
37 lines
1.1 KiB
Go
37 lines
1.1 KiB
Go
|
package lib
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
"net/http"
|
||
|
"net/url"
|
||
|
|
||
|
"github.com/docker/docker/api/types"
|
||
|
)
|
||
|
|
||
|
// ImagePush request the docker host to push an image to a remote registry.
|
||
|
// It executes the privileged function if the operation is unauthorized
|
||
|
// and it tries one more time.
|
||
|
// It's up to the caller to handle the io.ReadCloser and close it properly.
|
||
|
func (cli *Client) ImagePush(options types.ImagePushOptions, privilegeFunc RequestPrivilegeFunc) (io.ReadCloser, error) {
|
||
|
query := url.Values{}
|
||
|
query.Set("tag", options.Tag)
|
||
|
|
||
|
resp, err := cli.tryImagePush(options.ImageID, query, options.RegistryAuth)
|
||
|
if resp.statusCode == http.StatusUnauthorized {
|
||
|
newAuthHeader, privilegeErr := privilegeFunc()
|
||
|
if privilegeErr != nil {
|
||
|
return nil, privilegeErr
|
||
|
}
|
||
|
resp, err = cli.tryImagePush(options.ImageID, query, newAuthHeader)
|
||
|
}
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return resp.body, nil
|
||
|
}
|
||
|
|
||
|
func (cli *Client) tryImagePush(imageID string, query url.Values, registryAuth string) (*serverResponse, error) {
|
||
|
headers := map[string][]string{"X-Registry-Auth": {registryAuth}}
|
||
|
return cli.post("/images/"+imageID+"/push", query, nil, headers)
|
||
|
}
|