55 lines
1.4 KiB
Go
Raw Normal View History

package api
import (
"fmt"
"git.solsynth.dev/hydrogen/interactive/pkg/internal/database"
"git.solsynth.dev/hydrogen/interactive/pkg/internal/models"
"git.solsynth.dev/hydrogen/interactive/pkg/internal/services"
"github.com/gofiber/fiber/v2"
)
func listFeed(c *fiber.Ctx) error {
take := c.QueryInt("take", 0)
offset := c.QueryInt("offset", 0)
2024-05-15 19:45:49 +08:00
realmId := c.QueryInt("realmId", 0)
2024-05-15 19:45:49 +08:00
tx := database.C
if realmId > 0 {
if realm, err := services.GetRealmWithExtID(uint(realmId)); err != nil {
return fiber.NewError(fiber.StatusBadRequest, fmt.Sprintf("realm was not found: %v", err))
} else {
tx = services.FilterWithRealm(tx, realm.ID)
}
}
if len(c.Query("authorId")) > 0 {
2024-05-15 19:45:49 +08:00
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())
}
2024-05-15 19:45:49 +08:00
tx = tx.Where("author_id = ?", author.ID)
}
2024-05-15 19:45:49 +08:00
if len(c.Query("category")) > 0 {
tx = services.FilterPostWithCategory(tx, c.Query("category"))
}
2024-05-15 19:45:49 +08:00
if len(c.Query("tag")) > 0 {
tx = services.FilterPostWithTag(tx, c.Query("tag"))
2024-03-03 22:57:17 +08:00
}
2024-05-15 19:45:49 +08:00
count, err := services.CountPost(tx)
if err != nil {
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
2024-03-10 18:38:42 +08:00
}
2024-05-15 19:45:49 +08:00
items, err := services.ListPost(tx, take, offset)
if err != nil {
return fiber.NewError(fiber.StatusBadRequest, err.Error())
}
2024-03-03 21:24:08 +08:00
return c.JSON(fiber.Map{
"count": count,
2024-05-15 19:45:49 +08:00
"data": items,
2024-03-03 21:24:08 +08:00
})
}