mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-30 17:34:13 +01:00
d9103449b3
Signed-off-by: 6543 <6543@obermui.de> (cherry picked from commit 7fd0a5b276aadcf88dcc012fcd364fe160a58810)
112 lines
3.3 KiB
Go
112 lines
3.3 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
issue_model "code.gitea.io/gitea/models/issues"
|
|
"code.gitea.io/gitea/modules/container"
|
|
"code.gitea.io/gitea/modules/indexer/issues/internal"
|
|
"code.gitea.io/gitea/modules/optional"
|
|
)
|
|
|
|
func ToDBOptions(ctx context.Context, options *internal.SearchOptions) (*issue_model.IssuesOptions, error) {
|
|
var sortType string
|
|
switch options.SortBy {
|
|
case internal.SortByCreatedAsc:
|
|
sortType = "oldest"
|
|
case internal.SortByUpdatedAsc:
|
|
sortType = "leastupdate"
|
|
case internal.SortByCommentsAsc:
|
|
sortType = "leastcomment"
|
|
case internal.SortByDeadlineDesc:
|
|
sortType = "farduedate"
|
|
case internal.SortByCreatedDesc:
|
|
sortType = "newest"
|
|
case internal.SortByUpdatedDesc:
|
|
sortType = "recentupdate"
|
|
case internal.SortByCommentsDesc:
|
|
sortType = "mostcomment"
|
|
case internal.SortByDeadlineAsc:
|
|
sortType = "nearduedate"
|
|
default:
|
|
sortType = "newest"
|
|
}
|
|
|
|
// See the comment of issues_model.SearchOptions for the reason why we need to convert
|
|
convertID := func(id optional.Option[int64]) int64 {
|
|
if !id.Has() {
|
|
return 0
|
|
}
|
|
value := id.Value()
|
|
if value == 0 {
|
|
return db.NoConditionID
|
|
}
|
|
return value
|
|
}
|
|
|
|
opts := &issue_model.IssuesOptions{
|
|
Paginator: options.Paginator,
|
|
RepoIDs: options.RepoIDs,
|
|
AllPublic: options.AllPublic,
|
|
RepoCond: nil,
|
|
AssigneeID: convertID(options.AssigneeID),
|
|
PosterID: convertID(options.PosterID),
|
|
MentionedID: convertID(options.MentionID),
|
|
ReviewRequestedID: convertID(options.ReviewRequestedID),
|
|
ReviewedID: convertID(options.ReviewedID),
|
|
SubscriberID: convertID(options.SubscriberID),
|
|
ProjectID: convertID(options.ProjectID),
|
|
ProjectBoardID: convertID(options.ProjectBoardID),
|
|
IsClosed: options.IsClosed,
|
|
IsPull: options.IsPull,
|
|
IncludedLabelNames: nil,
|
|
ExcludedLabelNames: nil,
|
|
IncludeMilestones: nil,
|
|
SortType: sortType,
|
|
IssueIDs: nil,
|
|
UpdatedAfterUnix: options.UpdatedAfterUnix.Value(),
|
|
UpdatedBeforeUnix: options.UpdatedBeforeUnix.Value(),
|
|
PriorityRepoID: 0,
|
|
IsArchived: optional.None[bool](),
|
|
Org: nil,
|
|
Team: nil,
|
|
User: nil,
|
|
}
|
|
|
|
if len(options.MilestoneIDs) == 1 && options.MilestoneIDs[0] == 0 {
|
|
opts.MilestoneIDs = []int64{db.NoConditionID}
|
|
} else {
|
|
opts.MilestoneIDs = options.MilestoneIDs
|
|
}
|
|
|
|
if options.NoLabelOnly {
|
|
opts.LabelIDs = []int64{0} // Be careful, it's zero, not db.NoConditionID
|
|
} else {
|
|
opts.LabelIDs = make([]int64, 0, len(options.IncludedLabelIDs)+len(options.ExcludedLabelIDs))
|
|
opts.LabelIDs = append(opts.LabelIDs, options.IncludedLabelIDs...)
|
|
for _, id := range options.ExcludedLabelIDs {
|
|
opts.LabelIDs = append(opts.LabelIDs, -id)
|
|
}
|
|
|
|
if len(options.IncludedLabelIDs) == 0 && len(options.IncludedAnyLabelIDs) > 0 {
|
|
labels, err := issue_model.GetLabelsByIDs(ctx, options.IncludedAnyLabelIDs, "name")
|
|
if err != nil {
|
|
return nil, fmt.Errorf("GetLabelsByIDs: %v", err)
|
|
}
|
|
set := container.Set[string]{}
|
|
for _, label := range labels {
|
|
if !set.Contains(label.Name) {
|
|
set.Add(label.Name)
|
|
opts.IncludedLabelNames = append(opts.IncludedLabelNames, label.Name)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return opts, nil
|
|
}
|