2024-10-29 10:20:49 +01:00
|
|
|
// 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"
|
2025-02-10 17:24:05 +01:00
|
|
|
issue_service "code.gitea.io/gitea/services/issue"
|
2024-10-29 10:20:49 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
|
2025-02-10 17:24:05 +01:00
|
|
|
suggestions, err := issue_service.GetSuggestion(ctx, ctx.Repo.Repository, isPull, keyword)
|
2024-10-29 10:20:49 +01:00
|
|
|
if err != nil {
|
2025-02-10 17:24:05 +01:00
|
|
|
ctx.ServerError("GetSuggestion", err)
|
2024-10-29 10:20:49 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(http.StatusOK, suggestions)
|
|
|
|
}
|