answer/internal/controller/collection_controller.go

59 lines
1.8 KiB
Go
Raw Permalink Normal View History

2022-09-27 17:59:05 +08:00
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/schema"
"github.com/answerdev/answer/internal/service"
"github.com/answerdev/answer/pkg/converter"
2023-03-03 18:41:26 +08:00
"github.com/answerdev/answer/pkg/uid"
2022-09-27 17:59:05 +08:00
"github.com/gin-gonic/gin"
"github.com/jinzhu/copier"
"github.com/segmentfault/pacman/errors"
)
// CollectionController collection controller
type CollectionController struct {
collectionService *service.CollectionService
}
// NewCollectionController new controller
func NewCollectionController(collectionService *service.CollectionService) *CollectionController {
return &CollectionController{collectionService: collectionService}
}
// CollectionSwitch add collection
// @Summary add collection
// @Description add collection
// @Tags Collection
// @Accept json
// @Produce json
// @Security ApiKeyAuth
// @Param data body schema.CollectionSwitchReq true "collection"
// @Success 200 {object} handler.RespBody{data=schema.CollectionSwitchResp}
// @Router /answer/api/v1/collection/switch [post]
func (cc *CollectionController) CollectionSwitch(ctx *gin.Context) {
req := &schema.CollectionSwitchReq{}
if handler.BindAndCheck(ctx, req) {
return
}
2023-03-03 18:41:26 +08:00
req.ObjectID = uid.DeShortID(req.ObjectID)
2022-09-27 17:59:05 +08:00
dto := &schema.CollectionSwitchDTO{}
_ = copier.Copy(dto, req)
dto.UserID = middleware.GetLoginUserIDFromContext(ctx)
if converter.StringToInt64(req.ObjectID) < 1 {
return
}
if converter.StringToInt64(dto.UserID) < 1 {
handler.HandleResponse(ctx, errors.Unauthorized(reason.UnauthorizedError), nil)
return
}
resp, err := cc.collectionService.CollectionSwitch(ctx, dto)
handler.HandleResponse(ctx, err, resp)
}