179 lines
4.6 KiB
Go
179 lines
4.6 KiB
Go
package v1
|
|
|
|
import (
|
|
"quyun/v2/app/http/v1/dto"
|
|
"quyun/v2/app/requests"
|
|
"quyun/v2/app/services"
|
|
"quyun/v2/database/models"
|
|
"quyun/v2/pkg/consts"
|
|
|
|
"github.com/gofiber/fiber/v3"
|
|
)
|
|
|
|
// @provider
|
|
type Content struct{}
|
|
|
|
// List contents (Explore / Search)
|
|
//
|
|
// @Router /v1/contents [get]
|
|
// @Summary List contents
|
|
// @Description List contents with filtering and pagination
|
|
// @Tags Content
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param keyword query string false "Search keyword"
|
|
// @Param genre query string false "Genre"
|
|
// @Param tenantId query string false "Filter by creator"
|
|
// @Param sort query string false "Sort order" Enums(latest, hot, price_asc)
|
|
// @Param page query int false "Page number"
|
|
// @Success 200 {object} requests.Pager{items=[]dto.ContentItem}
|
|
// @Bind filter query
|
|
func (c *Content) List(
|
|
ctx fiber.Ctx,
|
|
filter *dto.ContentListFilter,
|
|
) (*requests.Pager, error) {
|
|
return services.Content.List(ctx, filter)
|
|
}
|
|
|
|
// Get content detail
|
|
//
|
|
// @Router /v1/contents/:id [get]
|
|
// @Summary Get content detail
|
|
// @Description Get content detail by ID
|
|
// @Tags Content
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param id path string true "Content ID"
|
|
// @Success 200 {object} dto.ContentDetail
|
|
// @Bind id path
|
|
func (c *Content) Get(ctx fiber.Ctx, id string) (*dto.ContentDetail, error) {
|
|
uid := getUserID(ctx)
|
|
return services.Content.Get(ctx, uid, id)
|
|
}
|
|
|
|
// Get comments for a content
|
|
//
|
|
// @Router /v1/contents/:id/comments [get]
|
|
// @Summary Get comments
|
|
// @Description Get comments for a content
|
|
// @Tags Content
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param id path string true "Content ID"
|
|
// @Param page query int false "Page number"
|
|
// @Success 200 {object} requests.Pager{items=[]dto.Comment}
|
|
// @Bind id path
|
|
// @Bind page query
|
|
func (c *Content) ListComments(ctx fiber.Ctx, id string, page int) (*requests.Pager, error) {
|
|
uid := getUserID(ctx)
|
|
return services.Content.ListComments(ctx, uid, id, page)
|
|
}
|
|
|
|
// Post a comment
|
|
//
|
|
// @Router /v1/contents/:id/comments [post]
|
|
// @Summary Post comment
|
|
// @Description Post a comment to a content
|
|
// @Tags Content
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param id path string true "Content ID"
|
|
// @Param form body dto.CommentCreateForm true "Comment form"
|
|
// @Success 200 {string} string "Comment created"
|
|
// @Bind id path
|
|
// @Bind form body
|
|
func (c *Content) CreateComment(ctx fiber.Ctx, id string, form *dto.CommentCreateForm) error {
|
|
uid := getUserID(ctx)
|
|
return services.Content.CreateComment(ctx, uid, id, form)
|
|
}
|
|
|
|
// Like a comment
|
|
//
|
|
// @Router /v1/comments/:id/like [post]
|
|
// @Summary Like comment
|
|
// @Description Like a comment
|
|
// @Tags Content
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param id path string true "Comment ID"
|
|
// @Success 200 {string} string "Liked"
|
|
// @Bind id path
|
|
func (c *Content) LikeComment(ctx fiber.Ctx, id string) error {
|
|
uid := getUserID(ctx)
|
|
return services.Content.LikeComment(ctx, uid, id)
|
|
}
|
|
|
|
// Add like
|
|
//
|
|
// @Router /v1/contents/:id/like [post]
|
|
// @Summary Add like
|
|
// @Tags Content
|
|
// @Param id path string true "Content ID"
|
|
// @Success 200 {string} string "Liked"
|
|
// @Bind id path
|
|
func (c *Content) AddLike(ctx fiber.Ctx, id string) error {
|
|
uid := getUserID(ctx)
|
|
return services.Content.AddLike(ctx, uid, id)
|
|
}
|
|
|
|
// Remove like
|
|
//
|
|
// @Router /v1/contents/:id/like [delete]
|
|
// @Summary Remove like
|
|
// @Tags Content
|
|
// @Param id path string true "Content ID"
|
|
// @Success 200 {string} string "Unliked"
|
|
// @Bind id path
|
|
func (c *Content) RemoveLike(ctx fiber.Ctx, id string) error {
|
|
uid := getUserID(ctx)
|
|
return services.Content.RemoveLike(ctx, uid, id)
|
|
}
|
|
|
|
// Add favorite
|
|
//
|
|
// @Router /v1/contents/:id/favorite [post]
|
|
// @Summary Add favorite
|
|
// @Tags Content
|
|
// @Param id path string true "Content ID"
|
|
// @Success 200 {string} string "Favorited"
|
|
// @Bind id path
|
|
func (c *Content) AddFavorite(ctx fiber.Ctx, id string) error {
|
|
uid := getUserID(ctx)
|
|
return services.Content.AddFavorite(ctx, uid, id)
|
|
}
|
|
|
|
// Remove favorite
|
|
//
|
|
// @Router /v1/contents/:id/favorite [delete]
|
|
// @Summary Remove favorite
|
|
// @Tags Content
|
|
// @Param id path string true "Content ID"
|
|
// @Success 200 {string} string "Unfavorited"
|
|
// @Bind id path
|
|
func (c *Content) RemoveFavorite(ctx fiber.Ctx, id string) error {
|
|
uid := getUserID(ctx)
|
|
return services.Content.RemoveFavorite(ctx, uid, id)
|
|
}
|
|
|
|
// List curated topics
|
|
//
|
|
// @Router /v1/topics [get]
|
|
// @Summary List topics
|
|
// @Description List curated topics
|
|
// @Tags Content
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Success 200 {array} dto.Topic
|
|
func (c *Content) ListTopics(ctx fiber.Ctx) ([]dto.Topic, error) {
|
|
return services.Content.ListTopics(ctx)
|
|
}
|
|
|
|
func getUserID(ctx fiber.Ctx) int64 {
|
|
if u := ctx.Locals(consts.CtxKeyUser); u != nil {
|
|
if user, ok := u.(*models.User); ok {
|
|
return user.ID
|
|
}
|
|
}
|
|
return 0
|
|
}
|