2024-02-02 15:42:42 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.smartsheep.studio/hydrogen/interactive/pkg/database"
|
|
|
|
"code.smartsheep.studio/hydrogen/interactive/pkg/models"
|
|
|
|
"code.smartsheep.studio/hydrogen/interactive/pkg/services"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
2024-02-02 16:50:23 +00:00
|
|
|
"github.com/google/uuid"
|
|
|
|
"github.com/samber/lo"
|
|
|
|
"strings"
|
2024-02-02 15:42:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func listPost(c *fiber.Ctx) error {
|
|
|
|
take := c.QueryInt("take", 0)
|
|
|
|
offset := c.QueryInt("offset", 0)
|
2024-02-03 11:22:50 +00:00
|
|
|
authorId := c.QueryInt("authorId", 0)
|
|
|
|
|
|
|
|
tx := database.C.Where(&models.Post{RealmID: nil}).Order("created_at desc")
|
|
|
|
|
|
|
|
if authorId > 0 {
|
|
|
|
tx = tx.Where(&models.Post{AuthorID: uint(authorId)})
|
|
|
|
}
|
2024-02-02 15:42:42 +00:00
|
|
|
|
|
|
|
var count int64
|
2024-02-03 11:22:50 +00:00
|
|
|
if err := tx.
|
2024-02-02 15:42:42 +00:00
|
|
|
Model(&models.Post{}).
|
|
|
|
Count(&count).Error; err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
|
|
}
|
|
|
|
|
2024-02-03 11:22:50 +00:00
|
|
|
posts, err := services.ListPost(tx, take, offset)
|
2024-02-03 07:20:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
2024-02-02 16:50:23 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 15:42:42 +00:00
|
|
|
return c.JSON(fiber.Map{
|
|
|
|
"count": count,
|
|
|
|
"data": posts,
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func createPost(c *fiber.Ctx) error {
|
|
|
|
user := c.Locals("principal").(models.Account)
|
|
|
|
|
|
|
|
var data struct {
|
2024-02-02 16:50:23 +00:00
|
|
|
Alias string `json:"alias"`
|
|
|
|
Title string `json:"title"`
|
2024-02-02 15:42:42 +00:00
|
|
|
Content string `json:"content" validate:"required"`
|
|
|
|
Tags []models.Tag `json:"tags"`
|
|
|
|
Categories []models.Category `json:"categories"`
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := BindAndValidate(c, &data); err != nil {
|
|
|
|
return err
|
2024-02-02 16:50:23 +00:00
|
|
|
} else if len(data.Alias) == 0 {
|
|
|
|
data.Alias = strings.ReplaceAll(uuid.NewString(), "-", "")
|
2024-02-02 15:42:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
post, err := services.NewPost(user, data.Alias, data.Title, data.Content, data.Categories, data.Tags)
|
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(post)
|
|
|
|
}
|
2024-02-02 16:50:23 +00:00
|
|
|
|
|
|
|
func reactPost(c *fiber.Ctx) error {
|
|
|
|
user := c.Locals("principal").(models.Account)
|
|
|
|
id, _ := c.ParamsInt("postId", 0)
|
|
|
|
|
|
|
|
var post models.Post
|
|
|
|
if err := database.C.Where(&models.Post{
|
|
|
|
BaseModel: models.BaseModel{ID: uint(id)},
|
|
|
|
}).First(&post).Error; err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusNotFound, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
switch strings.ToLower(c.Params("reactType")) {
|
|
|
|
case "like":
|
|
|
|
if positive, err := services.LikePost(user, post); err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
} else {
|
|
|
|
return c.SendStatus(lo.Ternary(positive, fiber.StatusCreated, fiber.StatusNoContent))
|
|
|
|
}
|
|
|
|
case "dislike":
|
|
|
|
if positive, err := services.DislikePost(user, post); err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
} else {
|
|
|
|
return c.SendStatus(lo.Ternary(positive, fiber.StatusCreated, fiber.StatusNoContent))
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, "unsupported reaction")
|
|
|
|
}
|
|
|
|
}
|