forked from aws/amazon-ecs-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
69 lines (57 loc) · 2.1 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright 2014-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may
// not use this file except in compliance with the License. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file accompanying this file. This file is distributed
// on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
// express or implied. See the License for the specific language governing
// permissions and limitations under the License.
package ecr
import (
"fmt"
"time"
ecrapi "github.com/aws/amazon-ecs-agent/agent/ecr/model/ecr"
"github.com/aws/aws-sdk-go/aws"
log "github.com/cihub/seelog"
)
const (
MinimumJitterDuration = 30 * time.Minute
MaximumJitterDuration = 1 * time.Hour
)
// ECRClient wrapper interface for mocking
type ECRClient interface {
GetAuthorizationToken(registryId string) (*ecrapi.AuthorizationData, error)
}
// ECRSDK is an interface that specifies the subset of the AWS Go SDK's ECR
// client that the Agent uses. This interface is meant to allow injecting a
// mock for testing.
type ECRSDK interface {
GetAuthorizationToken(*ecrapi.GetAuthorizationTokenInput) (*ecrapi.GetAuthorizationTokenOutput, error)
}
type ecrClient struct {
sdkClient ECRSDK
}
// NewECRClient creates an ECR client used to get docker auth from ECR
func NewECRClient(sdkClient ECRSDK) ECRClient {
return &ecrClient{
sdkClient: sdkClient,
}
}
// GetAuthorizationToken calls the ecr api to get the docker auth for the specified registry
func (client *ecrClient) GetAuthorizationToken(registryId string) (*ecrapi.AuthorizationData, error) {
log.Debugf("Calling GetAuthorizationToken for %q", registryId)
output, err := client.sdkClient.GetAuthorizationToken(&ecrapi.GetAuthorizationTokenInput{
RegistryIds: []*string{aws.String(registryId)},
})
if err != nil {
return nil, err
}
if len(output.AuthorizationData) != 1 {
return nil, fmt.Errorf("unexpected number of results in AuthorizationData (%d)", len(output.AuthorizationData))
}
return output.AuthorizationData[0], nil
}