@@ -27,8 +27,8 @@ type IssuesOptions struct { //nolint
27
27
RepoIDs []int64 // overwrites RepoCond if the length is not 0
28
28
AllPublic bool // include also all public repositories
29
29
RepoCond builder.Cond
30
- AssigneeID int64
31
- PosterID int64
30
+ AssigneeID optional. Option [ int64 ]
31
+ PosterID optional. Option [ int64 ]
32
32
MentionedID int64
33
33
ReviewRequestedID int64
34
34
ReviewedID int64
@@ -231,15 +231,8 @@ func applyConditions(sess *xorm.Session, opts *IssuesOptions) {
231
231
sess .And ("issue.is_closed=?" , opts .IsClosed .Value ())
232
232
}
233
233
234
- if opts .AssigneeID > 0 {
235
- applyAssigneeCondition (sess , opts .AssigneeID )
236
- } else if opts .AssigneeID == db .NoConditionID {
237
- sess .Where ("issue.id NOT IN (SELECT issue_id FROM issue_assignees)" )
238
- }
239
-
240
- if opts .PosterID > 0 {
241
- applyPosterCondition (sess , opts .PosterID )
242
- }
234
+ applyAssigneeCondition (sess , opts .AssigneeID )
235
+ applyPosterCondition (sess , opts .PosterID )
243
236
244
237
if opts .MentionedID > 0 {
245
238
applyMentionedCondition (sess , opts .MentionedID )
@@ -359,13 +352,27 @@ func issuePullAccessibleRepoCond(repoIDstr string, userID int64, org *organizati
359
352
return cond
360
353
}
361
354
362
- func applyAssigneeCondition (sess * xorm.Session , assigneeID int64 ) {
363
- sess .Join ("INNER" , "issue_assignees" , "issue.id = issue_assignees.issue_id" ).
364
- And ("issue_assignees.assignee_id = ?" , assigneeID )
355
+ func applyAssigneeCondition (sess * xorm.Session , assigneeID optional.Option [int64 ]) {
356
+ if assigneeID == nil || assigneeID .Value () == 0 {
357
+ return
358
+ }
359
+ if ! assigneeID .Has () /* none */ || assigneeID .Value () == db .NoConditionID {
360
+ // assignee is different from others, 0 also means no assignee
361
+ sess .Where ("issue.id NOT IN (SELECT issue_id FROM issue_assignees)" )
362
+ } else {
363
+ sess .Join ("INNER" , "issue_assignees" , "issue.id = issue_assignees.issue_id" ).
364
+ And ("issue_assignees.assignee_id = ?" , assigneeID .Value ())
365
+ }
365
366
}
366
367
367
- func applyPosterCondition (sess * xorm.Session , posterID int64 ) {
368
- sess .And ("issue.poster_id=?" , posterID )
368
+ func applyPosterCondition (sess * xorm.Session , posterID optional.Option [int64 ]) {
369
+ if posterID == nil {
370
+ return
371
+ }
372
+ // poster doesn't need to support db.NoConditionID(-1), so just use the value as-is
373
+ if posterID .Has () {
374
+ sess .And ("issue.poster_id=?" , posterID .Value ())
375
+ }
369
376
}
370
377
371
378
func applyMentionedCondition (sess * xorm.Session , mentionedID int64 ) {
0 commit comments