105 lines
2.3 KiB
Go
105 lines
2.3 KiB
Go
package handlers
|
|
|
|
import (
|
|
"gitea.d3m0k1d.ru/d3m0k1d/d3m0k1d.ru/backend/internal/logger"
|
|
"gitea.d3m0k1d.ru/d3m0k1d/d3m0k1d.ru/backend/internal/repositories"
|
|
"gitea.d3m0k1d.ru/d3m0k1d/d3m0k1d.ru/backend/internal/storage"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type PostHandlers struct {
|
|
repo repositories.PostRepository
|
|
}
|
|
|
|
func NewPostHandler(repo repositories.PostRepository) *PostHandlers {
|
|
return &PostHandlers{repo: repo}
|
|
}
|
|
|
|
var log = logger.New(false)
|
|
|
|
// GetPosts godoc
|
|
// @Summary Get all posts
|
|
// @Description Get all posts
|
|
// @Tags posts
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Success 200 {object} []storage.PostReq
|
|
// @Router /posts [get]
|
|
func (h *PostHandlers) GetPosts(c *gin.Context) {
|
|
var result []storage.PostReq
|
|
result, err := h.repo.GetAll(c.Request.Context())
|
|
if err != nil {
|
|
log.Error("error request: " + err.Error())
|
|
c.Status(500)
|
|
}
|
|
log.Info("200 OK GET /posts")
|
|
c.JSON(200, result)
|
|
}
|
|
|
|
// GetPost godoc
|
|
// @Summary Get post by id
|
|
// @Description Get post by id
|
|
// @Tags posts
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Success 200 {object} storage.PostReq
|
|
// @Router /posts/{id} [get]
|
|
func GetPost(c *gin.Context) {
|
|
log.Info("GetPost")
|
|
}
|
|
|
|
// CreatePost godoc
|
|
// @Summary Create post
|
|
// @Description Create new post
|
|
// @Tags posts
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param post body storage.PostCreate true "Post data"
|
|
// @Success 200 {object} storage.PostReq
|
|
// @Failure 400 {object} gin.H
|
|
// @Router /posts [post]
|
|
func (h *PostHandlers) CreatePost(c *gin.Context) {
|
|
var req storage.PostCreate
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
c.JSON(400, gin.H{"error": err.Error()})
|
|
return
|
|
}
|
|
|
|
post := storage.Post{
|
|
Title: req.Title,
|
|
Content: req.Content,
|
|
}
|
|
|
|
if err := h.repo.Create(c.Request.Context(), post); err != nil {
|
|
c.JSON(500, gin.H{"error": err.Error()})
|
|
return
|
|
}
|
|
|
|
c.JSON(200, post)
|
|
}
|
|
|
|
// UpdatePost godoc
|
|
// @Summary Update post
|
|
// @Description Update post
|
|
// @Tags posts
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Success 200 {object} storage.Post
|
|
// @Router /posts/{id} [put]
|
|
func UpdatePost(c *gin.Context) {
|
|
log.Info("UpdatePost")
|
|
}
|
|
|
|
// DeletePost godoc
|
|
// @Summary Delete post
|
|
// @Description Delete post
|
|
// @Tags posts
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Success 200 {object} storage.Post
|
|
// @Router /posts/{id} [delete]
|
|
func DeletePost(c *gin.Context) {
|
|
log.Info("DeletePost")
|
|
}
|