-
Notifications
You must be signed in to change notification settings - Fork 2
/
gcr.go
63 lines (51 loc) · 1.32 KB
/
gcr.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
package registry
import (
"context"
"encoding/base64"
"encoding/json"
"github.com/apex/log"
"github.com/docker/docker/api/types"
"github.com/buildtool/build-tools/pkg/docker"
)
type GCR struct {
dockerRegistry `yaml:"-"`
Url string `yaml:"url" env:"GCR_URL"`
KeyFileContent string `yaml:"keyfileContent,omitempty" env:"GCR_KEYFILE_CONTENT"`
}
var _ Registry = &GCR{}
func (r *GCR) Name() string {
return "GCR"
}
func (r *GCR) Configured() bool {
if len(r.Url) <= 0 || len(r.KeyFileContent) <= 0 {
return false
}
return r.GetAuthConfig() != types.AuthConfig{}
}
func (r *GCR) Login(client docker.Client) error {
auth := r.GetAuthConfig()
auth.ServerAddress = r.Url
if ok, err := client.RegistryLogin(context.Background(), auth); err == nil {
log.Debugf("%s\n", ok.Status)
return nil
} else {
return err
}
}
func (r *GCR) GetAuthConfig() types.AuthConfig {
decoded, err := base64.StdEncoding.DecodeString(r.KeyFileContent)
if err != nil {
return types.AuthConfig{}
}
return types.AuthConfig{Username: "_json_key", Password: string(decoded)}
}
func (r *GCR) GetAuthInfo() string {
authBytes, _ := json.Marshal(r.GetAuthConfig())
return base64.URLEncoding.EncodeToString(authBytes)
}
func (r GCR) RegistryUrl() string {
return r.Url
}
func (r GCR) Create(repository string) error {
return nil
}