2024-05-15 11:45:49 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/database"
|
|
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/models"
|
|
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/services"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func listReplies(c *fiber.Ctx) error {
|
|
|
|
take := c.QueryInt("take", 0)
|
|
|
|
offset := c.QueryInt("offset", 0)
|
|
|
|
|
|
|
|
tx := database.C
|
|
|
|
var post models.Post
|
2024-05-19 12:05:44 +00:00
|
|
|
if err := database.C.Where("alias = ?", c.Params("post")).First(&post).Error; err != nil {
|
2024-05-15 11:45:49 +00:00
|
|
|
return fiber.NewError(fiber.StatusBadRequest, fmt.Sprintf("unable to find post: %v", err))
|
|
|
|
} else {
|
|
|
|
tx = services.FilterPostReply(tx, post.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(c.Query("authorId")) > 0 {
|
|
|
|
var author models.Account
|
|
|
|
if err := database.C.Where(&models.Account{Name: c.Query("authorId")}).First(&author).Error; err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusNotFound, err.Error())
|
|
|
|
}
|
|
|
|
tx = tx.Where("author_id = ?", author.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(c.Query("category")) > 0 {
|
|
|
|
tx = services.FilterPostWithCategory(tx, c.Query("category"))
|
|
|
|
}
|
|
|
|
if len(c.Query("tag")) > 0 {
|
|
|
|
tx = services.FilterPostWithTag(tx, c.Query("tag"))
|
|
|
|
}
|
|
|
|
|
|
|
|
count, err := services.CountPost(tx)
|
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
items, err := services.ListPost(tx, take, offset)
|
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(fiber.Map{
|
|
|
|
"count": count,
|
|
|
|
"data": items,
|
|
|
|
})
|
|
|
|
}
|