mirror of https://gitee.com/answerdev/answer.git
96 lines
2.9 KiB
Go
96 lines
2.9 KiB
Go
package controller
|
|
|
|
import (
|
|
"github.com/answerdev/answer/internal/base/handler"
|
|
"github.com/answerdev/answer/internal/base/middleware"
|
|
"github.com/answerdev/answer/internal/base/reason"
|
|
"github.com/answerdev/answer/internal/base/translator"
|
|
"github.com/answerdev/answer/internal/base/validator"
|
|
"github.com/answerdev/answer/internal/entity"
|
|
"github.com/answerdev/answer/internal/schema"
|
|
"github.com/answerdev/answer/internal/service"
|
|
"github.com/answerdev/answer/internal/service/action"
|
|
"github.com/answerdev/answer/plugin"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/segmentfault/pacman/errors"
|
|
)
|
|
|
|
// SearchController tag controller
|
|
type SearchController struct {
|
|
searchService *service.SearchService
|
|
actionService *action.CaptchaService
|
|
}
|
|
|
|
// NewSearchController new controller
|
|
func NewSearchController(
|
|
searchService *service.SearchService,
|
|
actionService *action.CaptchaService,
|
|
) *SearchController {
|
|
return &SearchController{
|
|
searchService: searchService,
|
|
actionService: actionService,
|
|
}
|
|
}
|
|
|
|
// Search godoc
|
|
// @Summary search object
|
|
// @Description search object
|
|
// @Tags Search
|
|
// @Produce json
|
|
// @Security ApiKeyAuth
|
|
// @Param q query string true "query string"
|
|
// @Param order query string true "order" Enums(newest,active,score,relevance)
|
|
// @Success 200 {object} handler.RespBody{data=schema.SearchResp}
|
|
// @Router /answer/api/v1/search [get]
|
|
func (sc *SearchController) Search(ctx *gin.Context) {
|
|
dto := schema.SearchDTO{}
|
|
|
|
if handler.BindAndCheck(ctx, &dto) {
|
|
return
|
|
}
|
|
dto.UserID = middleware.GetLoginUserIDFromContext(ctx)
|
|
unit := ctx.ClientIP()
|
|
if dto.UserID != "" {
|
|
unit = dto.UserID
|
|
}
|
|
isAdmin := middleware.GetUserIsAdminModerator(ctx)
|
|
if !isAdmin {
|
|
captchaPass := sc.actionService.ActionRecordVerifyCaptcha(ctx, entity.CaptchaActionSearch, unit, dto.CaptchaID, dto.CaptchaCode)
|
|
if !captchaPass {
|
|
errFields := append([]*validator.FormErrorField{}, &validator.FormErrorField{
|
|
ErrorField: "captcha_code",
|
|
ErrorMsg: translator.Tr(handler.GetLang(ctx), reason.CaptchaVerificationFailed),
|
|
})
|
|
handler.HandleResponse(ctx, errors.BadRequest(reason.CaptchaVerificationFailed), errFields)
|
|
return
|
|
}
|
|
}
|
|
|
|
if !isAdmin {
|
|
sc.actionService.ActionRecordAdd(ctx, entity.CaptchaActionSearch, unit)
|
|
}
|
|
resp, err := sc.searchService.Search(ctx, &dto)
|
|
handler.HandleResponse(ctx, err, resp)
|
|
}
|
|
|
|
// SearchDesc get search description
|
|
// @Summary get search description
|
|
// @Description get search description
|
|
// @Tags Search
|
|
// @Produce json
|
|
// @Success 200 {object} handler.RespBody{data=schema.SearchResp}
|
|
// @Router /answer/api/v1/search/desc [get]
|
|
func (sc *SearchController) SearchDesc(ctx *gin.Context) {
|
|
var finder plugin.Search
|
|
_ = plugin.CallSearch(func(search plugin.Search) error {
|
|
finder = search
|
|
return nil
|
|
})
|
|
resp := &schema.SearchDescResp{}
|
|
if finder != nil {
|
|
resp.Name = finder.Info().Name.Translate(ctx)
|
|
resp.Icon = finder.Description().Icon
|
|
}
|
|
handler.HandleResponse(ctx, nil, resp)
|
|
}
|