fix(replication): huawei adapter multi authorization

Signed-off-by: chlins <chlins.zhang@gmail.com>
This commit is contained in:
chlins 2019-11-15 11:33:01 +08:00
parent 29be93725d
commit 130e406d3c
2 changed files with 11 additions and 3 deletions

View File

@ -45,6 +45,10 @@ type adapter struct {
*native.Adapter
registry *model.Registry
client *common_http.Client
// original http client with no modifer,
// huawei's some api interface with basic authorization,
// some with bearer token authorization.
oriClient *http.Client
}
// Info gets info about Huawei SWR
@ -243,15 +247,19 @@ func newAdapter(registry *model.Registry) (adp.Adapter, error) {
modifiers = append(modifiers, authorizer)
}
transport := util.GetHTTPTransport(registry.Insecure)
return &adapter{
Adapter: dockerRegistryAdapter,
registry: registry,
client: common_http.NewClient(
&http.Client{
Transport: util.GetHTTPTransport(registry.Insecure),
Transport: transport,
},
modifiers...,
),
oriClient: &http.Client{
Transport: transport,
},
}, nil
}

View File

@ -70,7 +70,7 @@ func (a *adapter) ManifestExist(repository, reference string) (exist bool, diges
r.Header.Add("content-type", "application/json; charset=utf-8")
r.Header.Add("Authorization", "Bearer "+token.Token)
resp, err := a.client.Do(r)
resp, err := a.oriClient.Do(r)
if err != nil {
return exist, digest, err
}
@ -113,7 +113,7 @@ func (a *adapter) DeleteManifest(repository, reference string) error {
r.Header.Add("content-type", "application/json; charset=utf-8")
r.Header.Add("Authorization", "Bearer "+token.Token)
resp, err := a.client.Do(r)
resp, err := a.oriClient.Do(r)
if err != nil {
return err
}