-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathref.go
291 lines (264 loc) · 7.38 KB
/
ref.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
package oci
import (
"fmt"
"strings"
"github.com/mandelsoft/goutils/errors"
"github.com/opencontainers/go-digest"
"ocm.software/ocm/api/oci/grammar"
"ocm.software/ocm/api/oci/ociutils"
)
// to find a suitable secret for images on Docker Hub, we need its two domains to do matching.
const (
dockerHubDomain = "docker.io"
dockerHubLegacyDomain = "index.docker.io"
KIND_OCI_REFERENCE = "oci reference"
KIND_ARETEFACT_REFERENCE = "artifact reference"
)
// ParseRepo parses a standard oci repository reference into an internal representation.
func ParseRepo(ref string) (UniformRepositorySpec, error) {
create := false
if strings.HasPrefix(ref, "+") {
create = true
ref = ref[1:]
}
uspec := UniformRepositorySpec{}
match := grammar.AnchoredRegistryRegexp.FindSubmatch([]byte(ref))
if match == nil {
match = grammar.AnchoredGenericRegistryRegexp.FindSubmatch([]byte(ref))
if match == nil {
return uspec, errors.ErrInvalid(KIND_OCI_REFERENCE, ref)
}
uspec.SetType(string(match[1]))
uspec.Info = string(match[2])
uspec.CreateIfMissing = create
return uspec, nil
}
uspec.SetType(string(match[1]))
uspec.Scheme = string(match[2])
uspec.Host = string(match[3])
uspec.CreateIfMissing = create
return uspec, nil
}
// RefSpec is a go internal representation of an oci reference.
type RefSpec struct {
UniformRepositorySpec `json:",inline"`
ArtSpec `json:",inline"`
}
func pointer(b []byte) *string {
if len(b) == 0 {
return nil
}
s := string(b)
return &s
}
func dig(b []byte) *digest.Digest {
if len(b) == 0 {
return nil
}
s := digest.Digest(b)
return &s
}
// ParseRef parses a oci reference into a internal representation.
func ParseRef(ref string) (RefSpec, error) {
create := false
if strings.HasPrefix(ref, "+") {
create = true
ref = ref[1:]
}
spec := RefSpec{UniformRepositorySpec: UniformRepositorySpec{CreateIfMissing: create}}
match := grammar.AnchoredTypedSchemedHostPortArtifactRegexp.FindSubmatch([]byte(ref))
if match != nil {
spec.SetType(string(match[1]))
spec.Scheme = string(match[2])
spec.Host = string(match[3])
spec.Repository = string(match[4])
spec.Tag = pointer(match[5])
spec.Digest = dig(match[6])
return spec, nil
}
match = grammar.AnchoredTypedOptSchemedReqHostReqPortArtifactRegexp.FindSubmatch([]byte(ref))
if match != nil {
spec.SetType(string(match[1]))
spec.Scheme = string(match[2])
spec.Host = string(match[3])
spec.Repository = string(match[4])
spec.Tag = pointer(match[5])
spec.Digest = dig(match[6])
return spec, nil
}
match = grammar.FileReferenceRegexp.FindSubmatch([]byte(ref))
if match != nil {
spec.SetType(string(match[1]))
spec.Info = string(match[2])
spec.Repository = string(match[3])
spec.Tag = pointer(match[4])
spec.Digest = dig(match[5])
return spec, nil
}
match = grammar.DockerLibraryReferenceRegexp.FindSubmatch([]byte(ref))
if match != nil {
spec.Host = dockerHubDomain
spec.Repository = "library" + grammar.RepositorySeparator + string(match[1])
spec.Tag = pointer(match[2])
spec.Digest = dig(match[3])
return spec, nil
}
match = grammar.DockerReferenceRegexp.FindSubmatch([]byte(ref))
if match != nil {
spec.Host = dockerHubDomain
spec.Repository = string(match[1])
spec.Tag = pointer(match[2])
spec.Digest = dig(match[3])
return spec, nil
}
match = grammar.ReferenceRegexp.FindSubmatch([]byte(ref))
if match != nil {
spec.Scheme = string(match[1])
spec.Host = string(match[2])
spec.Repository = string(match[3])
spec.Tag = pointer(match[4])
spec.Digest = dig(match[5])
return spec, nil
}
match = grammar.TypedReferenceRegexp.FindSubmatch([]byte(ref))
if match != nil {
spec.SetType(string(match[1]))
spec.Scheme = string(match[2])
spec.Host = string(match[3])
spec.Repository = string(match[4])
spec.Tag = pointer(match[5])
spec.Digest = dig(match[6])
return spec, nil
}
match = grammar.TypedURIRegexp.FindSubmatch([]byte(ref))
if match != nil {
spec.SetType(string(match[1]))
spec.Scheme = string(match[2])
spec.Host = string(match[3])
spec.Repository = string(match[4])
spec.Tag = pointer(match[5])
spec.Digest = dig(match[6])
return spec, nil
}
match = grammar.TypedGenericReferenceRegexp.FindSubmatch([]byte(ref))
if match != nil {
spec.SetType(string(match[1]))
spec.Info = string(match[2])
spec.Repository = string(match[3])
spec.Tag = pointer(match[4])
spec.Digest = dig(match[5])
return spec, nil
}
match = grammar.AnchoredRegistryRegexp.FindSubmatch([]byte(ref))
if match != nil {
spec.SetType(string(match[1]))
spec.Info = string(match[2])
spec.Repository = string(match[3])
spec.Tag = pointer(match[4])
spec.Digest = dig(match[5])
return spec, nil
}
match = grammar.AnchoredGenericRegistryRegexp.FindSubmatch([]byte(ref))
if match != nil {
spec.SetType(string(match[1]))
spec.Info = string(match[2])
match = grammar.ErrorCheckRegexp.FindSubmatch([]byte(ref))
if match != nil {
if len(match[3]) != 0 || len(match[4]) != 0 {
return RefSpec{}, errors.ErrInvalid(KIND_OCI_REFERENCE, ref)
}
}
return spec, nil
}
return RefSpec{}, errors.ErrInvalid(KIND_OCI_REFERENCE, ref)
}
func (r *RefSpec) Name() string {
return r.UniformRepositorySpec.ComposeRef(r.Repository)
}
func (r *RefSpec) String() string {
art := r.Repository
if r.Tag != nil {
art = fmt.Sprintf("%s:%s", art, *r.Tag)
}
if r.Digest != nil {
art = fmt.Sprintf("%s@%s", art, r.Digest.String())
}
return r.UniformRepositorySpec.ComposeRef(art)
}
// CredHost fallback to legacy docker domain if applicable
// this is how containerd translates the old domain for DockerHub to the new one, taken from containerd/reference/docker/reference.go:674.
func (r *RefSpec) CredHost() string {
if r.Host == dockerHubDomain {
return dockerHubLegacyDomain
}
return r.Host
}
func (r RefSpec) DeepCopy() RefSpec {
if r.Tag != nil {
tag := *r.Tag
r.Tag = &tag
}
if r.Digest != nil {
dig := *r.Digest
r.Digest = &dig
}
return r
}
////////////////////////////////////////////////////////////////////////////////
// ParseVersion parses an OCI version part of an OCI reference.
// It has to be placed in a utils package to avoid package cycles
// for particular users.
func ParseVersion(vers string) (*ArtVersion, error) {
return ociutils.ParseVersion(vers)
}
func ParseArt(art string) (*ArtSpec, error) {
match := grammar.AnchoredArtifactVersionRegexp.FindSubmatch([]byte(art))
if match == nil {
return nil, errors.ErrInvalid(KIND_ARETEFACT_REFERENCE, art)
}
var tag *string
var dig *digest.Digest
if match[2] != nil {
t := string(match[2])
tag = &t
}
if match[3] != nil {
t := string(match[3])
d, err := digest.Parse(t)
if err != nil {
return nil, errors.ErrInvalidWrap(err, KIND_ARETEFACT_REFERENCE, art)
}
dig = &d
}
return &ArtSpec{
Repository: string(match[1]),
ArtVersion: ArtVersion{
Tag: tag,
Digest: dig,
},
}, nil
}
type ArtVersion = ociutils.ArtVersion
// ArtSpec is a go internal representation of a oci reference.
type ArtSpec struct {
// Repository is the part of a reference without its hostname
Repository string `json:"repository"`
// artifact version
ArtVersion `json:",inline"`
}
func (r *ArtSpec) IsRegistry() bool {
return r.Repository == ""
}
func (r *ArtSpec) String() string {
if r == nil {
return ""
}
s := r.Repository
if r.Tag != nil {
s += fmt.Sprintf(":%s", *r.Tag)
}
if r.Digest != nil {
s += fmt.Sprintf("@%s", r.Digest.String())
}
return s
}