mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-04 00:06:22 +00:00
- Implemented `getPostById` API function to fetch a post by its ID. - Refactored the main page to use a new `BlogHome` component for better organization. - Added loading state and sorting functionality for posts on the blog home page. - Integrated label fetching and display on the blog home page. - Enhanced the blog card component with improved layout and statistics display. - Updated the navbar to use dynamic configuration values. - Added Docker support with a comprehensive build and push workflow. - Created a custom hook `useStoredState` for managing local storage state. - Added a new page for displaying individual posts with metadata generation. - Removed unused components and files to streamline the codebase.
122 lines
3.2 KiB
Go
122 lines
3.2 KiB
Go
package v1
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"github.com/cloudwego/hertz/pkg/app"
|
|
"github.com/cloudwego/hertz/pkg/common/utils"
|
|
"github.com/snowykami/neo-blog/internal/ctxutils"
|
|
"github.com/snowykami/neo-blog/internal/dto"
|
|
"github.com/snowykami/neo-blog/internal/service"
|
|
"github.com/snowykami/neo-blog/pkg/constant"
|
|
"github.com/snowykami/neo-blog/pkg/errs"
|
|
"github.com/snowykami/neo-blog/pkg/resps"
|
|
"slices"
|
|
"strings"
|
|
)
|
|
|
|
type PostController struct {
|
|
service *service.PostService
|
|
}
|
|
|
|
func NewPostController() *PostController {
|
|
return &PostController{
|
|
service: service.NewPostService(),
|
|
}
|
|
}
|
|
|
|
func (p *PostController) Create(ctx context.Context, c *app.RequestContext) {
|
|
var req dto.CreateOrUpdatePostReq
|
|
if err := c.BindAndValidate(&req); err != nil {
|
|
resps.BadRequest(c, resps.ErrParamInvalid)
|
|
}
|
|
postID, err := p.service.CreatePost(ctx, &req)
|
|
if err != nil {
|
|
serviceErr := errs.AsServiceError(err)
|
|
resps.Custom(c, serviceErr.Code, serviceErr.Message, nil)
|
|
return
|
|
}
|
|
resps.Ok(c, resps.Success, utils.H{"id": postID})
|
|
}
|
|
|
|
func (p *PostController) Delete(ctx context.Context, c *app.RequestContext) {
|
|
id := c.Param("id")
|
|
if id == "" {
|
|
resps.BadRequest(c, resps.ErrParamInvalid)
|
|
return
|
|
}
|
|
if err := p.service.DeletePost(ctx, id); err != nil {
|
|
serviceErr := errs.AsServiceError(err)
|
|
resps.Custom(c, serviceErr.Code, serviceErr.Message, nil)
|
|
return
|
|
}
|
|
resps.Ok(c, resps.Success, nil)
|
|
}
|
|
|
|
func (p *PostController) Get(ctx context.Context, c *app.RequestContext) {
|
|
id := c.Param("id")
|
|
if id == "" {
|
|
resps.BadRequest(c, resps.ErrParamInvalid)
|
|
return
|
|
}
|
|
post, err := p.service.GetPost(ctx, id)
|
|
if err != nil {
|
|
serviceErr := errs.AsServiceError(err)
|
|
resps.Custom(c, serviceErr.Code, serviceErr.Message, nil)
|
|
return
|
|
}
|
|
if post == nil {
|
|
resps.NotFound(c, resps.ErrNotFound)
|
|
return
|
|
}
|
|
resps.Ok(c, resps.Success, post)
|
|
}
|
|
|
|
func (p *PostController) Update(ctx context.Context, c *app.RequestContext) {
|
|
var req dto.CreateOrUpdatePostReq
|
|
if err := c.BindAndValidate(&req); err != nil {
|
|
resps.BadRequest(c, resps.ErrParamInvalid)
|
|
return
|
|
}
|
|
id := c.Param("id")
|
|
if id == "" {
|
|
resps.BadRequest(c, resps.ErrParamInvalid)
|
|
return
|
|
}
|
|
postID, err := p.service.UpdatePost(ctx, id, &req)
|
|
if err != nil {
|
|
serviceErr := errs.AsServiceError(err)
|
|
resps.Custom(c, serviceErr.Code, serviceErr.Message, nil)
|
|
return
|
|
}
|
|
resps.Ok(c, resps.Success, utils.H{"id": postID})
|
|
}
|
|
|
|
func (p *PostController) List(ctx context.Context, c *app.RequestContext) {
|
|
pagination := ctxutils.GetPaginationParams(c)
|
|
fmt.Println(pagination)
|
|
if pagination.OrderedBy == "" {
|
|
pagination.OrderedBy = constant.OrderedByUpdatedAt
|
|
}
|
|
if pagination.OrderedBy != "" && !slices.Contains(constant.OrderedByEnumPost, pagination.OrderedBy) {
|
|
resps.BadRequest(c, "无效的排序字段")
|
|
return
|
|
}
|
|
keywords := c.Query("keywords")
|
|
keywordsArray := strings.Split(keywords, ",")
|
|
req := &dto.ListPostReq{
|
|
Keywords: keywordsArray,
|
|
Page: pagination.Page,
|
|
Size: pagination.Size,
|
|
OrderedBy: pagination.OrderedBy,
|
|
Reverse: pagination.Reverse,
|
|
}
|
|
posts, err := p.service.ListPosts(ctx, req)
|
|
if err != nil {
|
|
serviceErr := errs.AsServiceError(err)
|
|
resps.Custom(c, serviceErr.Code, serviceErr.Message, nil)
|
|
return
|
|
}
|
|
resps.Ok(c, resps.Success, posts)
|
|
}
|