-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrepository.go
302 lines (241 loc) · 7.26 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
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
package models
import (
"context"
"time"
"github.com/google/uuid"
"github.com/uptrace/bun"
)
type Repository struct {
bun.BaseModel `bun:"table:repositories" json:"bun_._base_model"`
ID uuid.UUID `bun:"id,pk,type:uuid,default:uuid_generate_v4()" json:"id"`
Name string `bun:"name,unique:name_owner_unique,notnull" json:"name"`
OwnerID uuid.UUID `bun:"owner_id,unique:name_owner_unique,type:uuid,notnull" json:"owner_id"`
HEAD string `bun:"head,notnull" json:"head"`
// Visible indicate if this repo is public, false for private, true for public
Visible bool `bun:"visible,notnull" json:"visible"`
UsePublicStorage bool `bun:"use_public_storage,notnull" json:"use_public_storage"`
StorageNamespace *string `bun:"storage_namespace" json:"storage_namespace,omitempty"`
StorageAdapterParams *string `bun:"storage_adapter_params" json:"storage_adapter_params,omitempty"`
Description *string `bun:"description" json:"description,omitempty"`
CreatorID uuid.UUID `bun:"creator_id,type:uuid,notnull" json:"creator_id"`
CreatedAt time.Time `bun:"created_at,type:timestamp,notnull" json:"created_at"`
UpdatedAt time.Time `bun:"updated_at,type:timestamp,notnull" json:"updated_at"`
}
type GetRepoParams struct {
id uuid.UUID
creatorID uuid.UUID
ownerID uuid.UUID
name *string
}
func NewGetRepoParams() *GetRepoParams {
return &GetRepoParams{}
}
func (gup *GetRepoParams) SetID(id uuid.UUID) *GetRepoParams {
gup.id = id
return gup
}
func (gup *GetRepoParams) SetOwnerID(id uuid.UUID) *GetRepoParams {
gup.ownerID = id
return gup
}
func (gup *GetRepoParams) SetCreatorID(creatorID uuid.UUID) *GetRepoParams {
gup.creatorID = creatorID
return gup
}
func (gup *GetRepoParams) SetName(name string) *GetRepoParams {
gup.name = &name
return gup
}
type ListRepoParams struct {
id uuid.UUID
creatorID uuid.UUID
ownerID uuid.UUID
name *string
nameMatch MatchMode
visible *bool
after *time.Time
amount int
}
func NewListRepoParams() *ListRepoParams {
return &ListRepoParams{}
}
func (lrp *ListRepoParams) SetID(id uuid.UUID) *ListRepoParams {
lrp.id = id
return lrp
}
func (lrp *ListRepoParams) SetOwnerID(ownerID uuid.UUID) *ListRepoParams {
lrp.ownerID = ownerID
return lrp
}
func (lrp *ListRepoParams) SetName(name string, match MatchMode) *ListRepoParams {
lrp.name = &name
lrp.nameMatch = match
return lrp
}
func (lrp *ListRepoParams) SetCreatorID(creatorID uuid.UUID) *ListRepoParams {
lrp.creatorID = creatorID
return lrp
}
func (lrp *ListRepoParams) SetVisible(visible bool) *ListRepoParams {
lrp.visible = &visible
return lrp
}
func (lrp *ListRepoParams) SetAfter(after time.Time) *ListRepoParams {
lrp.after = &after
return lrp
}
func (lrp *ListRepoParams) SetAmount(amount int) *ListRepoParams {
lrp.amount = amount
return lrp
}
type DeleteRepoParams struct {
id uuid.UUID
ownerID uuid.UUID
name *string
}
func NewDeleteRepoParams() *DeleteRepoParams {
return &DeleteRepoParams{}
}
func (drp *DeleteRepoParams) SetID(id uuid.UUID) *DeleteRepoParams {
drp.id = id
return drp
}
func (drp *DeleteRepoParams) SetOwnerID(ownerID uuid.UUID) *DeleteRepoParams {
drp.ownerID = ownerID
return drp
}
func (drp *DeleteRepoParams) SetName(name string) *DeleteRepoParams {
drp.name = &name
return drp
}
type UpdateRepoParams struct {
id uuid.UUID
description *string
visible *bool
head *string
}
func NewUpdateRepoParams(id uuid.UUID) *UpdateRepoParams {
return &UpdateRepoParams{
id: id,
}
}
func (up *UpdateRepoParams) SetDescription(description string) *UpdateRepoParams {
up.description = &description
return up
}
func (up *UpdateRepoParams) SetHead(head string) *UpdateRepoParams {
up.head = &head
return up
}
func (up *UpdateRepoParams) SetVisible(visible bool) *UpdateRepoParams {
up.visible = &visible
return up
}
type IRepositoryRepo interface {
Insert(ctx context.Context, repo *Repository) (*Repository, error)
Get(ctx context.Context, params *GetRepoParams) (*Repository, error)
List(ctx context.Context, params *ListRepoParams) ([]*Repository, bool, error)
Delete(ctx context.Context, params *DeleteRepoParams) (int64, error)
UpdateByID(ctx context.Context, updateModel *UpdateRepoParams) error
}
var _ IRepositoryRepo = (*RepositoryRepo)(nil)
type RepositoryRepo struct {
db bun.IDB
}
func NewRepositoryRepo(db bun.IDB) IRepositoryRepo {
return &RepositoryRepo{db: db}
}
func (r *RepositoryRepo) Insert(ctx context.Context, repo *Repository) (*Repository, error) {
_, err := r.db.NewInsert().Model(repo).Exec(ctx)
if err != nil {
return nil, err
}
return repo, nil
}
func (r *RepositoryRepo) Get(ctx context.Context, params *GetRepoParams) (*Repository, error) {
repo := &Repository{}
query := r.db.NewSelect().Model(repo)
if uuid.Nil != params.id {
query = query.Where("id = ?", params.id)
}
if uuid.Nil != params.creatorID {
query = query.Where("creator_id = ?", params.creatorID)
}
if uuid.Nil != params.ownerID {
query = query.Where("owner_id = ?", params.ownerID)
}
if params.name != nil {
query = query.Where("name = ?", *params.name)
}
err := query.Limit(1).Scan(ctx)
if err != nil {
return nil, err
}
return repo, nil
}
func (r *RepositoryRepo) List(ctx context.Context, params *ListRepoParams) ([]*Repository, bool, error) {
repos := []*Repository{}
query := r.db.NewSelect().Model(&repos)
if uuid.Nil != params.creatorID {
query = query.Where("creator_id = ?", params.creatorID)
}
if uuid.Nil != params.ownerID {
query = query.Where("owner_id = ?", params.ownerID)
}
if params.visible != nil {
query = query.Where("visible = ?", *params.visible)
}
if params.name != nil {
switch params.nameMatch {
case ExactMatch:
query = query.Where("name = ?", *params.name)
case PrefixMatch:
query = query.Where("name LIKE ?", *params.name+"%")
case SuffixMatch:
query = query.Where("name LIKE ?", "%"+*params.name)
case LikeMatch:
query = query.Where("name LIKE ?", "%"+*params.name+"%")
}
}
query = query.Order("updated_at DESC") // from new to old
if params.after != nil {
query = query.Where("updated_at < ?", *params.after)
}
err := query.Limit(params.amount).Scan(ctx)
return repos, len(repos) == params.amount, err
}
func (r *RepositoryRepo) Delete(ctx context.Context, params *DeleteRepoParams) (int64, error) {
query := r.db.NewDelete().Model((*Repository)(nil))
if uuid.Nil != params.id {
query = query.Where("id = ?", params.id)
}
if params.name != nil {
query = query.Where("name = ?", params.name)
}
if uuid.Nil != params.ownerID {
query = query.Where("owner_id = ?", params.ownerID)
}
sqlResult, err := query.Exec(ctx)
if err != nil {
return 0, err
}
affectedRows, err := sqlResult.RowsAffected()
if err != nil {
return 0, err
}
return affectedRows, err
}
func (r *RepositoryRepo) UpdateByID(ctx context.Context, updateModel *UpdateRepoParams) error {
updateQuery := r.db.NewUpdate().Model((*Repository)(nil)).Where("id = ?", updateModel.id)
if updateModel.description != nil {
updateQuery.Set("description = ?", *updateModel.description)
}
if updateModel.head != nil {
updateQuery.Set("head = ?", *updateModel.head)
}
if updateModel.visible != nil {
updateQuery.Set("visible = ?", *updateModel.visible)
}
_, err := updateQuery.Exec(ctx)
return err
}