-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathadd_uploads.go
371 lines (331 loc) · 10.8 KB
/
add_uploads.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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
package tasks
import (
"context"
"encoding/json"
"errors"
"fmt"
"math"
"strconv"
"time"
"github.com/content-services/content-sources-backend/pkg/api"
"github.com/content-services/content-sources-backend/pkg/clients/pulp_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/db"
"github.com/content-services/content-sources-backend/pkg/models"
"github.com/content-services/content-sources-backend/pkg/tasks/queue"
"github.com/content-services/content-sources-backend/pkg/utils"
"github.com/content-services/yummy/pkg/yum"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
)
type AddUploadsPayload struct {
RepositoryConfigUUID string
Artifacts []api.Artifact
Uploads []api.Upload
VersionHref *string // href of repo version created as part of this
PublicationTaskHref *string
DistributionTaskHref *string
SnapshotIdent *string
SnapshotUUID *string
}
type AddUploads struct {
orgID string
domainName string
ctx context.Context
payload *AddUploadsPayload
task *models.TaskInfo
daoReg *dao.DaoRegistry
repo api.RepositoryResponse
pulpClient pulp_client.PulpClient
queue *queue.Queue
logger *zerolog.Logger
}
func AddUploadsHandler(ctx context.Context, task *models.TaskInfo, queue *queue.Queue) error {
if !config.PulpConfigured() {
return nil
}
opts := AddUploadsPayload{}
if err := json.Unmarshal(task.Payload, &opts); err != nil {
return fmt.Errorf("payload incorrect type for " + config.AddUploadsTask)
}
logger := LogForTask(task.Id.String(), task.Typename, task.RequestID)
ctxWithLogger := logger.WithContext(ctx)
daoReg := dao.GetDaoRegistry(db.DB)
domainName, err := daoReg.Domain.Fetch(ctxWithLogger, task.OrgId)
if err != nil {
return err
}
pulpClient := pulp_client.GetPulpClientWithDomain(domainName)
repo, err := daoReg.RepositoryConfig.Fetch(ctx, task.OrgId, opts.RepositoryConfigUUID)
if err != nil {
return fmt.Errorf("could not fetch repository config %w", err)
}
if repo.Origin != config.OriginUpload || !repo.Snapshot {
return fmt.Errorf("cannot upload to a non snapshot or non-upload repository")
}
ur := AddUploads{
daoReg: daoReg,
payload: &opts,
task: task,
ctx: ctx,
domainName: domainName,
orgID: task.OrgId,
repo: repo,
pulpClient: pulpClient,
queue: queue,
logger: logger,
}
return ur.Run()
}
func (ur *AddUploads) Run() (err error) {
if ur.payload.VersionHref == nil {
artifacts, err := ur.ConvertUploadsToArtifacts()
if err != nil {
return fmt.Errorf("could not convert uploads to artifacts %w", err)
}
contentHrefs, err := ur.ConvertArtifactsToPackages(artifacts)
if err != nil {
return fmt.Errorf("could not convert artifacts to contentHrefs %w", err)
}
versionHref, err := ur.AddContentToRepo(contentHrefs)
if err != nil {
return err
}
if versionHref == "" {
log.Debug().Msgf("added content to repository %v, but no new version created, likely already present", ur.payload.RepositoryConfigUUID)
return nil
}
ur.payload.VersionHref = &versionHref
err = ur.UpdatePayload()
if err != nil {
return fmt.Errorf("could not update payload %w", err)
}
}
helper := SnapshotHelper{
pulpClient: ur.pulpClient,
ctx: ur.ctx,
payload: ur,
logger: ur.logger,
orgId: ur.orgID,
repo: ur.repo,
daoReg: ur.daoReg,
domainName: ur.domainName,
}
defer func() {
if errors.Is(err, context.Canceled) {
cleanupErr := helper.Cleanup()
if cleanupErr != nil {
ur.logger.Err(cleanupErr).Msg("error cleaning up canceled snapshot helper")
}
}
}()
err = helper.Run(*ur.payload.VersionHref)
if err != nil {
return err
}
err = ur.ImportPackageData(*ur.payload.VersionHref)
if err != nil {
return fmt.Errorf("could not import package data %w", err)
}
return nil
}
func (ur *AddUploads) AddContentToRepo(contentHrefs []string) (versionHref string, err error) {
repo, err := ur.pulpClient.GetRpmRepositoryByName(ur.ctx, ur.repo.UUID)
if err != nil {
return "", fmt.Errorf("could not get repository info %w", err)
}
// Modify Repository Content
task, err := ur.pulpClient.ModifyRpmRepositoryContent(ur.ctx, *repo.PulpHref, contentHrefs, []string{})
if err != nil {
return "", fmt.Errorf("could not modify repository contents %w", err)
}
result, err := ur.pulpClient.PollTask(ur.ctx, task)
if err != nil {
return "", fmt.Errorf("modify repo task failed %w", err)
}
if len(result.CreatedResources) == 0 {
// RPMs must have already been in the repository
return "", nil
} else if len(result.CreatedResources) > 2 {
return "", fmt.Errorf("unexpectedly got more than 1 Created resources after ModifyRpmRepositoryContent: %v", result.CreatedResources)
} else {
return result.CreatedResources[0], nil
}
}
type pendingArtifact struct {
Upload api.Upload
TaskHref string
}
func (ur *AddUploads) ConvertUploadsToArtifacts() ([]api.Artifact, error) {
artifacts := ur.payload.Artifacts
var pendingArtifacts []pendingArtifact
// Convert any uploads to artifacts, or lookup uploads that are already artifacts
for _, upload := range ur.payload.Uploads {
found, err := ur.pulpClient.LookupArtifact(ur.ctx, upload.Sha256)
if err != nil {
return artifacts, fmt.Errorf("could not lookup artifact: %w", err)
}
if found == nil {
if upload.Href == "" && upload.Uuid != "" {
upload.Href = fmt.Sprintf("/api/pulp/%s/api/v3/uploads/%s/", ur.domainName, upload.Uuid)
}
task, _, err := ur.pulpClient.FinishUpload(ur.ctx, upload.Href, upload.Sha256)
if err != nil {
return artifacts, fmt.Errorf("could not finish upload: %w", err)
}
if task != nil {
pendingArtifacts = append(pendingArtifacts, pendingArtifact{
Upload: upload,
TaskHref: task.Task,
})
}
} else {
artifacts = append(artifacts, api.Artifact{Sha256: upload.Sha256, Href: *found})
continue
}
}
for _, pendArt := range pendingArtifacts {
result, err := ur.pulpClient.PollTask(ur.ctx, pendArt.TaskHref)
if err != nil {
dbErr := ur.daoReg.Uploads.DeleteUpload(ur.ctx, pendArt.Upload.Uuid)
if dbErr != nil {
return artifacts, fmt.Errorf("could not delete upload record: %w", dbErr)
}
return artifacts, fmt.Errorf("finish upload task failed unexpectedly : %w", err)
}
if len(result.CreatedResources) != 1 {
return artifacts, fmt.Errorf("expected one created resource but got %d", len(result.CreatedResources))
}
artifacts = append(artifacts, api.Artifact{Sha256: pendArt.Upload.Sha256, Href: result.CreatedResources[0]})
}
return artifacts, nil
}
type pendingPackage struct {
Artifact api.Artifact
TaskHref string
}
func (ur *AddUploads) ConvertArtifactsToPackages(artifacts []api.Artifact) (contentHrefs []string, err error) {
contentHrefs = []string{}
pendingPackages := []pendingPackage{}
for _, artifact := range artifacts {
pkg, err := ur.pulpClient.LookupPackage(ur.ctx, artifact.Sha256)
if err != nil {
return contentHrefs, fmt.Errorf("Could not lookup package %w", err)
}
if pkg == nil {
// package doesn't exist, so convert the artifact to a package
task, err := ur.pulpClient.CreatePackage(ur.ctx, &artifact.Href, nil)
if err != nil {
return contentHrefs, fmt.Errorf("could not create package %w", err)
}
pendingPackages = append(pendingPackages, pendingPackage{
Artifact: artifact,
TaskHref: task,
})
} else {
contentHrefs = append(contentHrefs, *pkg)
}
}
for _, pendArt := range pendingPackages {
result, err := ur.pulpClient.PollTask(ur.ctx, pendArt.TaskHref)
if err != nil {
return contentHrefs, fmt.Errorf("finish upload task failed unexpectedly : %w", err)
}
if len(result.CreatedResources) != 1 {
return contentHrefs, fmt.Errorf("expected one created resource but got %d", len(result.CreatedResources))
}
contentHrefs = append(contentHrefs, result.CreatedResources[0])
}
return contentHrefs, err
}
func (ur *AddUploads) UpdatePayload() error {
var err error
a := *ur.payload
ur.task, err = (*ur.queue).UpdatePayload(ur.task, a)
if err != nil {
return err
}
return nil
}
func (ur *AddUploads) SavePublicationTaskHref(href string) error {
ur.payload.PublicationTaskHref = &href
return ur.UpdatePayload()
}
func (ur *AddUploads) GetPublicationTaskHref() *string {
return ur.payload.PublicationTaskHref
}
func (ur *AddUploads) SaveDistributionTaskHref(href string) error {
ur.payload.DistributionTaskHref = &href
return ur.UpdatePayload()
}
func (ur *AddUploads) GetDistributionTaskHref() *string {
return ur.payload.DistributionTaskHref
}
func (ur *AddUploads) SaveSnapshotIdent(id string) error {
ur.payload.SnapshotIdent = &id
return ur.UpdatePayload()
}
func (ur *AddUploads) GetSnapshotIdent() *string {
return ur.payload.SnapshotIdent
}
func (ur *AddUploads) SaveSnapshotUUID(uuid string) error {
ur.payload.SnapshotUUID = &uuid
return ur.UpdatePayload()
}
func (ur *AddUploads) GetSnapshotUUID() *string {
return ur.payload.SnapshotUUID
}
func (ur *AddUploads) ImportPackageData(versionHref string) error {
pkgs, err := ur.pulpClient.ListVersionAllPackages(ur.ctx, versionHref)
if err != nil {
return fmt.Errorf("could not list all packages: %w", err)
}
// convert from tangy to yummy format
yumPkgs := []yum.Package{}
for _, rpm := range pkgs {
epoch := int32(0)
if rpm.Epoch != nil {
epochConv, err := strconv.ParseInt(*rpm.Epoch, 10, 32)
if err != nil {
return err
}
if epochConv < math.MinInt32 || epochConv > math.MaxInt32 {
return fmt.Errorf("invalid epoch %d", epoch)
}
epoch = int32(epochConv)
}
if rpm.Name == nil || rpm.Arch == nil || rpm.Version == nil || rpm.Release == nil || rpm.Sha256 == nil || rpm.Summary == nil {
return fmt.Errorf("received nil values for rpm packages in version %v from pulp", versionHref)
}
yumPkgs = append(yumPkgs, yum.Package{
Name: *rpm.Name,
Arch: *rpm.Arch,
Version: yum.Version{
Version: *rpm.Version,
Release: *rpm.Release,
Epoch: epoch,
},
Checksum: yum.Checksum{
Value: *rpm.Sha256,
},
Summary: *rpm.Summary,
})
}
_, err = ur.daoReg.Rpm.InsertForRepository(ur.ctx, ur.repo.RepositoryUUID, yumPkgs)
if err != nil {
return fmt.Errorf("could not insert packages: %w", err)
}
currentTime := time.Now()
err = ur.daoReg.Repository.Update(ur.ctx, dao.RepositoryUpdate{
UUID: ur.repo.RepositoryUUID,
LastIntrospectionTime: utils.Ptr(currentTime),
LastIntrospectionSuccessTime: utils.Ptr(currentTime),
LastIntrospectionUpdateTime: utils.Ptr(currentTime),
LastIntrospectionError: nil,
LastIntrospectionStatus: utils.Ptr(config.StatusValid),
PackageCount: utils.Ptr(len(yumPkgs)),
FailedIntrospectionsCount: utils.Ptr(0),
})
return err
}