| 12345678910111213141516171819202122232425262728293031323334353637 |
- // 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)
- }
|