mirror of https://gitee.com/answerdev/answer.git
40 lines
1.2 KiB
Go
40 lines
1.2 KiB
Go
package controller
|
|
|
|
import (
|
|
"github.com/answerdev/answer/internal/base/handler"
|
|
"github.com/answerdev/answer/internal/schema"
|
|
"github.com/answerdev/answer/internal/service/reason"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// ReasonController answer controller
|
|
type ReasonController struct {
|
|
reasonService *reason.ReasonService
|
|
}
|
|
|
|
// NewReasonController new controller
|
|
func NewReasonController(answerService *reason.ReasonService) *ReasonController {
|
|
return &ReasonController{reasonService: answerService}
|
|
}
|
|
|
|
// Reasons godoc
|
|
// @Summary get reasons by object type and action
|
|
// @Description get reasons by object type and action
|
|
// @Tags reason
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Security ApiKeyAuth
|
|
// @Param object_type query string true "object_type" Enums(question, answer, comment, user)
|
|
// @Param action query string true "action" Enums(status, close, flag, review)
|
|
// @Success 200 {object} handler.RespBody
|
|
// @Router /answer/api/v1/reasons [get]
|
|
// @Router /answer/admin/api/reasons [get]
|
|
func (rc *ReasonController) Reasons(ctx *gin.Context) {
|
|
req := &schema.ReasonReq{}
|
|
if handler.BindAndCheck(ctx, req) {
|
|
return
|
|
}
|
|
reasons, err := rc.reasonService.GetReasons(ctx, *req)
|
|
handler.HandleResponse(ctx, err, reasons)
|
|
}
|