-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.go
173 lines (135 loc) · 3.6 KB
/
main.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
// Copyright 2018 Josh Komoroske. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE.txt file.
package main
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"os"
"github.com/joshdk/docker-retag/arguments"
"strings"
)
const (
dockerUsernameEnv = "DOCKER_USER"
dockerPasswordEnv = "DOCKER_PASS"
)
func main() {
if err := mainCmd(os.Args); err != nil {
fmt.Fprintf(os.Stderr, "docker-retag: %s\n", err.Error())
os.Exit(1)
}
}
func mainCmd(args []string) error {
var (
repository, oldTag, newTag, err = arguments.Parse(args[1:])
)
if err != nil {
return err
}
username, found := os.LookupEnv(dockerUsernameEnv)
if !found {
return errors.New(dockerUsernameEnv + " not found in environment")
}
password, found := os.LookupEnv(dockerPasswordEnv)
if !found {
return errors.New(dockerPasswordEnv + " not found in environment")
}
token, err := login(repository, username, password)
if err != nil {
return errors.New("failed to authenticate: " + err.Error())
}
manifest, err := pullManifest(token, repository, oldTag)
if err != nil {
return errors.New("failed to pull manifest: " + err.Error())
}
if err := pushManifest(token, repository, newTag, manifest); err != nil {
return errors.New("failed to push manifest: " + err.Error())
}
separator := ":"
if strings.HasPrefix(oldTag, "sha256:") {
separator = "@"
}
fmt.Printf("Retagged %s%s%s as %s:%s\n", repository, separator, oldTag, repository, newTag)
return nil
}
func login(repo string, username string, password string) (string, error) {
var (
client = http.DefaultClient
url = "https://auth.docker.io/token?service=registry.docker.io&scope=repository:" + repo + ":pull,push"
)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return "", err
}
req.SetBasicAuth(username, password)
resp, err := client.Do(req)
if err != nil {
return "", err
}
if resp.StatusCode != http.StatusOK {
return "", errors.New(resp.Status)
}
bodyText, err := ioutil.ReadAll(resp.Body)
if err != nil {
return "", err
}
var data struct {
Details string `json:"details"`
Token string `json:"token"`
}
if err := json.Unmarshal(bodyText, &data); err != nil {
return "", err
}
if data.Token == "" {
return "", errors.New("empty token")
}
return data.Token, nil
}
func pullManifest(token string, repository string, tag string) ([]byte, error) {
var (
client = http.DefaultClient
url = "https://index.docker.io/v2/" + repository + "/manifests/" + tag
)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, err
}
req.Header.Set("Authorization", "Bearer "+token)
req.Header.Set("Accept", "application/vnd.docker.distribution.manifest.v2+json")
resp, err := client.Do(req)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, errors.New(resp.Status)
}
bodyText, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
return bodyText, nil
}
func pushManifest(token string, repository string, tag string, manifest []byte) error {
var (
client = http.DefaultClient
url = "https://index.docker.io/v2/" + repository + "/manifests/" + tag
)
req, err := http.NewRequest("PUT", url, bytes.NewBuffer(manifest))
if err != nil {
return err
}
req.Header.Set("Authorization", "Bearer "+token)
req.Header.Set("Content-type", "application/vnd.docker.distribution.manifest.v2+json")
resp, err := client.Do(req)
if err != nil {
return err
}
if resp.StatusCode != http.StatusCreated {
return errors.New(resp.Status)
}
return nil
}