-
Notifications
You must be signed in to change notification settings - Fork 2
/
dockerhub.go
55 lines (45 loc) · 1.22 KB
/
dockerhub.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
package registry
import (
"context"
"docker.io/go-docker/api/types"
"encoding/base64"
"encoding/json"
"fmt"
"github.com/buildtool/build-tools/pkg/docker"
"io"
)
type Dockerhub struct {
dockerRegistry
Namespace string `yaml:"namespace" env:"DOCKERHUB_NAMESPACE"`
Username string `yaml:"username" env:"DOCKERHUB_USERNAME"`
Password string `yaml:"password" env:"DOCKERHUB_PASSWORD"`
}
var _ Registry = &Dockerhub{}
func (r Dockerhub) Name() string {
return "Dockerhub"
}
func (r Dockerhub) Configured() bool {
return len(r.Namespace) > 0
}
func (r Dockerhub) Login(client docker.Client, out io.Writer) error {
if ok, err := client.RegistryLogin(context.Background(), r.GetAuthConfig()); err == nil {
_, _ = fmt.Fprintln(out, ok.Status)
return nil
} else {
_, _ = fmt.Fprintln(out, "Unable to login")
return err
}
}
func (r Dockerhub) GetAuthConfig() types.AuthConfig {
return types.AuthConfig{Username: r.Username, Password: r.Password}
}
func (r Dockerhub) GetAuthInfo() string {
authBytes, _ := json.Marshal(r.GetAuthConfig())
return base64.URLEncoding.EncodeToString(authBytes)
}
func (r Dockerhub) RegistryUrl() string {
return r.Namespace
}
func (r *Dockerhub) Create(repository string) error {
return nil
}