-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathrepository.go
185 lines (169 loc) · 6.23 KB
/
repository.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
package models
import (
"net/url"
"strings"
"time"
"github.com/content-services/content-sources-backend/pkg/config"
"github.com/content-services/content-sources-backend/pkg/utils"
"gorm.io/gorm"
)
// https://stackoverflow.com/questions/43587610/preventing-null-or-empty-string-values-in-the-db
type Repository struct {
Base
URL string `gorm:"unique;default:null"`
RepomdChecksum string `gorm:"default:null"`
Public bool
LastIntrospectionTime *time.Time `gorm:"default:null"`
LastIntrospectionSuccessTime *time.Time `gorm:"default:null"`
LastIntrospectionUpdateTime *time.Time `gorm:"default:null"`
LastIntrospectionError *string `gorm:"default:null"`
LastIntrospectionStatus string `gorm:"default:Pending"`
PackageCount int `gorm:"default:0;not null"`
FailedIntrospectionsCount int `gorm:"default:0;not null"`
RepositoryConfigurations []RepositoryConfiguration `gorm:"foreignKey:RepositoryUUID"`
Rpms []Rpm `gorm:"many2many:repositories_rpms"`
PackageGroups []PackageGroup `gorm:"many2many:repositories_package_groups"`
Origin string `gorm:"default:external;not null"`
ContentType string `gorm:"default:rpm;not null"`
}
func (r *Repository) BeforeCreate(tx *gorm.DB) (err error) {
if err := r.Base.BeforeCreate(tx); err != nil {
return err
}
if err := r.validate(); err != nil {
return err
}
r.URL = CleanupURL(r.URL)
if r.Origin == config.OriginUpload {
r.LastIntrospectionStatus = config.StatusValid
time := time.Now()
r.LastIntrospectionTime = &time
r.LastIntrospectionSuccessTime = &time
r.LastIntrospectionUpdateTime = &time
}
return nil
}
func (r *Repository) AfterFind(tx *gorm.DB) error {
if err := r.Base.AfterFind(tx); err != nil {
return err
}
if r.LastIntrospectionTime != nil {
*r.LastIntrospectionTime = r.LastIntrospectionTime.UTC()
}
if r.LastIntrospectionSuccessTime != nil {
*r.LastIntrospectionSuccessTime = r.LastIntrospectionSuccessTime.UTC()
}
if r.LastIntrospectionUpdateTime != nil {
*r.LastIntrospectionUpdateTime = r.LastIntrospectionUpdateTime.UTC()
}
return nil
}
func (r *Repository) AfterSave(tx *gorm.DB) error {
return r.AfterFind(tx)
}
func (r *Repository) validate() error {
// NO URL validation for origin uploads
if r.Origin == config.OriginUpload {
if r.URL == "" {
return nil
} else {
return Error{Message: "URL cannot be specified for upload repositories.", Validation: true}
}
}
if r.URL == "" {
return Error{Message: "URL cannot be blank for custom and Red Hat repositories.", Validation: true}
}
if stringContainsInternalWhitespace(r.URL) {
return Error{Message: "URL cannot contain whitespace.", Validation: true}
}
if _, err := url.ParseRequestURI(r.URL); err != nil {
return Error{Message: "Invalid URL for request.", Validation: true}
}
return nil
}
// stringContainsInternalWhitespace returns true if string has whitespace, excluding leading/trailing whitespace
func stringContainsInternalWhitespace(s string) bool {
return strings.ContainsAny(strings.TrimSpace(s), " \t\n\v\r\f")
}
// CleanupURL removes leading and trailing whitespace and adds trailing slash
func CleanupURL(url string) string {
url = strings.TrimSpace(url)
// remove all trailing slashes
for len(url) > 0 && url[len(url)-1] == '/' {
url = url[0 : len(url)-1]
}
if url != "" {
url += "/" // make sure URL has one trailing slash
}
return url
}
func (in *Repository) DeepCopy() *Repository {
out := &Repository{}
in.DeepCopyInto(out)
return out
}
func (in *Repository) DeepCopyInto(out *Repository) {
if in == nil || out == nil || in == out {
return
}
in.Base.DeepCopyInto(&out.Base)
var (
lastIntrospectionTime *time.Time
lastIntrospectionUpdateTime *time.Time
lastIntrospectionSuccessTime *time.Time
lastIntrospectionError *string
)
if in.LastIntrospectionTime != nil {
lastIntrospectionTime = &time.Time{}
*lastIntrospectionTime = *in.LastIntrospectionTime
}
if in.LastIntrospectionUpdateTime != nil {
lastIntrospectionUpdateTime = &time.Time{}
*lastIntrospectionUpdateTime = *in.LastIntrospectionUpdateTime
}
if in.LastIntrospectionSuccessTime != nil {
lastIntrospectionSuccessTime = &time.Time{}
*lastIntrospectionSuccessTime = *in.LastIntrospectionSuccessTime
}
if in.LastIntrospectionError != nil {
lastIntrospectionError = utils.Ptr(*in.LastIntrospectionError)
}
out.URL = in.URL
out.Public = in.Public
out.LastIntrospectionTime = lastIntrospectionTime
out.LastIntrospectionSuccessTime = lastIntrospectionSuccessTime
out.LastIntrospectionUpdateTime = lastIntrospectionUpdateTime
out.LastIntrospectionError = lastIntrospectionError
out.LastIntrospectionStatus = in.LastIntrospectionStatus
out.PackageCount = in.PackageCount
out.FailedIntrospectionsCount = in.FailedIntrospectionsCount
// Duplicate the slices
out.RepositoryConfigurations = make([]RepositoryConfiguration, len(in.RepositoryConfigurations))
for i, item := range in.RepositoryConfigurations {
item.DeepCopyInto(&out.RepositoryConfigurations[i])
}
out.Rpms = make([]Rpm, len(in.Rpms))
for i, item := range in.Rpms {
item.DeepCopyInto(&out.Rpms[i])
}
out.PackageGroups = make([]PackageGroup, len(in.PackageGroups))
for i, item := range in.PackageGroups {
item.DeepCopyInto(&out.PackageGroups[i])
}
}
func (r *Repository) MapForUpdate() map[string]interface{} {
forUpdate := make(map[string]interface{})
if r.URL != "" {
forUpdate["URL"] = r.URL
}
forUpdate["Public"] = r.Public
forUpdate["RepomdChecksum"] = r.RepomdChecksum
forUpdate["LastIntrospectionTime"] = r.LastIntrospectionTime
forUpdate["LastIntrospectionError"] = trimString(r.LastIntrospectionError, 255)
forUpdate["LastIntrospectionSuccessTime"] = r.LastIntrospectionSuccessTime
forUpdate["LastIntrospectionUpdateTime"] = r.LastIntrospectionUpdateTime
forUpdate["LastIntrospectionStatus"] = r.LastIntrospectionStatus
forUpdate["PackageCount"] = r.PackageCount
forUpdate["FailedIntrospectionsCount"] = r.FailedIntrospectionsCount
return forUpdate
}