2022-04-07 18:59:56 +00:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-04-07 18:59:56 +00:00
|
|
|
|
|
|
|
package explore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2022-12-29 02:57:15 +00:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2022-04-07 18:59:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TopicSearch search for creating topic
|
|
|
|
func TopicSearch(ctx *context.Context) {
|
|
|
|
opts := &repo_model.FindTopicOptions{
|
|
|
|
Keyword: ctx.FormString("q"),
|
|
|
|
ListOptions: db.ListOptions{
|
|
|
|
Page: ctx.FormInt("page"),
|
|
|
|
PageSize: convert.ToCorrectPageSize(ctx.FormInt("limit")),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
topics, total, err := repo_model.FindTopics(opts)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
topicResponses := make([]*api.TopicResponse, len(topics))
|
|
|
|
for i, topic := range topics {
|
|
|
|
topicResponses[i] = convert.ToTopicResponse(topic)
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(total)
|
2023-07-05 03:41:32 +00:00
|
|
|
ctx.JSON(http.StatusOK, map[string]any{
|
2022-04-07 18:59:56 +00:00
|
|
|
"topics": topicResponses,
|
|
|
|
})
|
|
|
|
}
|