mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
929 B
36 lines
929 B
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repo
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/models/unit"
|
|
"code.gitea.io/gitea/modules/optional"
|
|
"code.gitea.io/gitea/services/context"
|
|
issue_service "code.gitea.io/gitea/services/issue"
|
|
)
|
|
|
|
// IssueSuggestions returns a list of issue suggestions
|
|
func IssueSuggestions(ctx *context.Context) {
|
|
keyword := ctx.Req.FormValue("q")
|
|
|
|
canReadIssues := ctx.Repo.CanRead(unit.TypeIssues)
|
|
canReadPulls := ctx.Repo.CanRead(unit.TypePullRequests)
|
|
|
|
var isPull optional.Option[bool]
|
|
if canReadPulls && !canReadIssues {
|
|
isPull = optional.Some(true)
|
|
} else if canReadIssues && !canReadPulls {
|
|
isPull = optional.Some(false)
|
|
}
|
|
|
|
suggestions, err := issue_service.GetSuggestion(ctx, ctx.Repo.Repository, isPull, keyword)
|
|
if err != nil {
|
|
ctx.ServerError("GetSuggestion", err)
|
|
return
|
|
}
|
|
|
|
ctx.JSON(http.StatusOK, suggestions)
|
|
}
|
|
|