2024-07-23 08:12:19 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2024-07-24 06:29:43 +00:00
|
|
|
|
2024-07-23 08:12:19 +00:00
|
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/internal/database"
|
2024-07-27 17:49:16 +00:00
|
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/internal/models"
|
2024-07-23 08:12:19 +00:00
|
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/internal/services"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
)
|
|
|
|
|
2024-07-27 17:49:16 +00:00
|
|
|
func listRecommendationFeatured(c *fiber.Ctx) error {
|
2024-07-23 08:12:19 +00:00
|
|
|
take := c.QueryInt("take", 0)
|
|
|
|
offset := c.QueryInt("offset", 0)
|
|
|
|
realmId := c.QueryInt("realmId", 0)
|
|
|
|
|
2024-07-25 16:53:58 +00:00
|
|
|
tx := services.FilterPostDraft(database.C)
|
2024-07-27 17:49:16 +00:00
|
|
|
|
|
|
|
if user, authenticated := c.Locals("user").(models.Account); authenticated {
|
|
|
|
tx = services.FilterPostWithUserContext(tx, &user)
|
|
|
|
} else {
|
|
|
|
tx = services.FilterPostWithUserContext(tx, nil)
|
2024-07-25 16:53:58 +00:00
|
|
|
}
|
2024-07-27 17:49:16 +00:00
|
|
|
|
|
|
|
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.FilterPostWithRealm(tx, realm.ID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
countTx := tx
|
|
|
|
count, err := services.CountPost(countTx)
|
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
items, err := services.ListPost(tx, take, offset, "published_at DESC")
|
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(fiber.Map{
|
|
|
|
"count": count,
|
|
|
|
"data": items,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func listRecommendationNews(c *fiber.Ctx) error {
|
|
|
|
take := c.QueryInt("take", 0)
|
|
|
|
offset := c.QueryInt("offset", 0)
|
|
|
|
realmId := c.QueryInt("realmId", 0)
|
|
|
|
|
|
|
|
tx := services.FilterPostDraft(database.C)
|
|
|
|
|
|
|
|
if user, authenticated := c.Locals("user").(models.Account); authenticated {
|
|
|
|
tx = services.FilterPostWithUserContext(tx, &user)
|
|
|
|
} else {
|
|
|
|
tx = services.FilterPostWithUserContext(tx, nil)
|
|
|
|
}
|
|
|
|
|
2024-07-23 08:12:19 +00:00
|
|
|
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.FilterPostWithRealm(tx, realm.ID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
countTx := tx
|
|
|
|
count, err := services.CountPost(countTx)
|
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
items, err := services.ListPost(tx, take, offset, "published_at DESC")
|
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(fiber.Map{
|
|
|
|
"count": count,
|
|
|
|
"data": items,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func listRecommendationShuffle(c *fiber.Ctx) error {
|
|
|
|
take := c.QueryInt("take", 0)
|
|
|
|
offset := c.QueryInt("offset", 0)
|
|
|
|
realmId := c.QueryInt("realmId", 0)
|
|
|
|
|
2024-07-25 16:53:58 +00:00
|
|
|
tx := services.FilterPostDraft(database.C)
|
2024-07-27 17:49:16 +00:00
|
|
|
|
|
|
|
if user, authenticated := c.Locals("user").(models.Account); authenticated {
|
|
|
|
tx = services.FilterPostWithUserContext(tx, &user)
|
|
|
|
} else {
|
|
|
|
tx = services.FilterPostWithUserContext(tx, nil)
|
2024-07-25 16:53:58 +00:00
|
|
|
}
|
2024-07-27 17:49:16 +00:00
|
|
|
|
2024-07-23 08:12:19 +00:00
|
|
|
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.FilterPostWithRealm(tx, realm.ID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
countTx := tx
|
|
|
|
count, err := services.CountPost(countTx)
|
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
|
|
}
|
|
|
|
|
2024-07-24 06:37:21 +00:00
|
|
|
items, err := services.ListPost(tx, take, offset, "RANDOM()")
|
2024-07-23 08:12:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(fiber.Map{
|
|
|
|
"count": count,
|
|
|
|
"data": items,
|
|
|
|
})
|
|
|
|
}
|