forked from sealerio/sealer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmiddleware.go
85 lines (73 loc) · 2.43 KB
/
middleware.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
// Copyright © 2022 Alibaba Group Holding Ltd.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License 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 buildimage
import (
"fmt"
"path/filepath"
"github.com/sealerio/sealer/common"
"github.com/sealerio/sealer/pkg/image/save"
v1 "github.com/sealerio/sealer/types/api/v1"
)
type ImageSection struct {
Registry string `json:"registry,omitempty"`
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty"`
Images []string `json:"images,omitempty"`
}
type MiddlewarePuller struct {
puller save.DefaultImageSaver
platform v1.Platform
}
func NewMiddlewarePuller(platform v1.Platform) MiddlewarePuller {
return MiddlewarePuller{
platform: platform,
puller: save.DefaultImageSaver{},
}
}
func (m MiddlewarePuller) PullWithImageSection(rootfs string, imageSectionList []ImageSection) error {
ia := make(save.ImageListWithAuth, 0)
for _, section := range imageSectionList {
if len(section.Images) == 0 {
continue
}
if section.Username == "" || section.Password == "" {
return fmt.Errorf("must set username and password at imageListWithAuth.yaml")
}
domainToImages, err := normalizedImageListWithAuth(section)
if err != nil {
return err
}
ia = append(ia, save.Section{
Registry: section.Registry,
Username: section.Username,
Password: section.Password,
Images: domainToImages,
})
}
if len(ia) == 0 {
return nil
}
return m.puller.SaveImagesWithAuth(ia, filepath.Join(rootfs, common.RegistryDirName), m.platform)
}
func normalizedImageListWithAuth(sec ImageSection) (map[string][]save.Named, error) {
domainToImages := make(map[string][]save.Named)
for _, image := range sec.Images {
named, err := save.ParseNormalizedNamed(image, sec.Registry)
if err != nil {
return nil, fmt.Errorf("parse image name error: %v", err)
}
domainToImages[named.Domain()+named.Repo()] = append(domainToImages[named.Domain()+named.Repo()], named)
}
return domainToImages, nil
}