-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcandlepin_helpers.go
144 lines (131 loc) · 5.27 KB
/
candlepin_helpers.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
package tasks
import (
"context"
"fmt"
"net/url"
"strings"
caliri "github.com/content-services/caliri/release/v4"
"github.com/content-services/content-sources-backend/pkg/api"
candlepin_client "github.com/content-services/content-sources-backend/pkg/clients/candlepin_client"
"github.com/content-services/content-sources-backend/pkg/config"
"github.com/content-services/content-sources-backend/pkg/dao"
"github.com/content-services/content-sources-backend/pkg/models"
"github.com/content-services/content-sources-backend/pkg/utils"
)
func GenContentDto(repo api.RepositoryResponse) caliri.ContentDTO {
repoName := repo.Name
id := candlepin_client.GetContentID(repo.UUID)
repoType := candlepin_client.YumRepoType
repoLabel := repo.Label
repoVendor := getRepoVendor(repo)
gpgKeyUrl := utils.Ptr("") // Default to "", meaning no gpg key url. For updating, nil means no update
if repo.OrgID != config.RedHatOrg && repo.GpgKey != "" {
gpgKeyUrl = models.CandlepinContentGpgKeyUrl(repo.OrgID, repo.UUID)
}
url := repo.URL
if repo.Origin == config.OriginUpload {
url = repo.LatestSnapshotURL
}
return caliri.ContentDTO{
Id: &id,
Type: &repoType,
Label: &repoLabel,
Name: &repoName,
Vendor: &repoVendor,
GpgUrl: gpgKeyUrl,
ContentUrl: &url, // Set to upstream URL, but it is not used. Will use content overrides instead.
}
}
// UnneededOverrides given a list of existing overrides, and expected overrides, return the existing overrides that are no longer needed
func UnneededOverrides(existingDtos []caliri.ContentOverrideDTO, expectedDTOs []caliri.ContentOverrideDTO) []caliri.ContentOverrideDTO {
var toDelete []caliri.ContentOverrideDTO
for i := 0; i < len(existingDtos); i++ {
existing := existingDtos[i]
found := false
for j := 0; j < len(expectedDTOs); j++ {
expectedDTO := expectedDTOs[j]
if *existing.Name == *expectedDTO.Name && *existing.ContentLabel == *expectedDTO.ContentLabel {
found = true
break
}
}
if !found {
toDelete = append(toDelete, existing)
}
}
return toDelete
}
// genOverrideDTOs uses the RepoConfigUUIDs to query the db and generate a mapping of content labels to distribution URLs
// for the snapshot within the template. For all repos, we include an override for an 'empty' sslcacert, so it does not use the configured default
// on the client. For custom repos, we override the base URL, due to the fact that we use different domains for RH and custom repos.
func GenOverrideDTO(ctx context.Context, daoReg *dao.DaoRegistry, orgId, domainName, contentPath string, template api.TemplateResponse) ([]caliri.ContentOverrideDTO, error) {
mapping := []caliri.ContentOverrideDTO{}
uuids := strings.Join(template.RepositoryUUIDS, ",")
origins := strings.Join([]string{config.OriginExternal, config.OriginRedHat, config.OriginUpload}, ",")
repos, _, err := daoReg.RepositoryConfig.List(ctx, orgId, api.PaginationData{Limit: -1}, api.FilterData{UUID: uuids, Origin: origins})
if err != nil {
return mapping, err
}
for _, repo := range repos.Data {
repoOver, err := ContentOverridesForRepo(orgId, domainName, template.UUID, contentPath, repo)
if err != nil {
return mapping, err
}
mapping = append(mapping, repoOver...)
}
return mapping, nil
}
func RemoveUneededOverrides(ctx context.Context, cpClient candlepin_client.CandlepinClient, templateUUID string, expectedDTOs []caliri.ContentOverrideDTO) error {
existingDtos, err := cpClient.FetchContentOverrides(ctx, templateUUID)
if err != nil {
return err
}
toDelete := UnneededOverrides(existingDtos, expectedDTOs)
if len(toDelete) > 0 {
err = cpClient.RemoveContentOverrides(ctx, templateUUID, toDelete)
if err != nil {
return err
}
}
return nil
}
func ContentOverridesForRepo(orgId string, domainName string, templateUUID string, pulpContentPath string, repo api.RepositoryResponse) ([]caliri.ContentOverrideDTO, error) {
mapping := []caliri.ContentOverrideDTO{}
if repo.LastSnapshot == nil { // ignore repos without a snapshot
return mapping, nil
}
mapping = append(mapping, caliri.ContentOverrideDTO{
Name: utils.Ptr(candlepin_client.OverrideNameCaCert),
ContentLabel: &repo.Label,
Value: utils.Ptr(" "), // use a single space because candlepin doesn't allow "" or null
})
// Disable OCSP checking, as aws doesn't support it?
mapping = append(mapping, caliri.ContentOverrideDTO{
Name: utils.Ptr(candlepin_client.OverrideSSLVerifyStatus),
ContentLabel: &repo.Label,
Value: utils.Ptr("0"),
})
if repo.OrgID == orgId { // Don't override RH repo baseurls
distPath := customTemplateSnapshotPath(templateUUID, repo.UUID)
path, err := url.JoinPath(pulpContentPath, domainName, distPath)
if err != nil {
return mapping, err
}
mapping = append(mapping, caliri.ContentOverrideDTO{
Name: utils.Ptr(candlepin_client.OverrideNameBaseUrl),
ContentLabel: &repo.Label,
Value: &path,
})
if repo.ModuleHotfixes {
mapping = append(mapping, caliri.ContentOverrideDTO{
Name: utils.Ptr(candlepin_client.OverrideModuleHotfixes),
ContentLabel: &repo.Label,
Value: utils.Ptr("1"),
})
}
}
return mapping, nil
}
func customTemplateSnapshotPath(templateUUID string, repoUUID string) string {
return fmt.Sprintf("templates/%v/%v", templateUUID, repoUUID)
}