2024-06-22 09:29:53 +00:00
|
|
|
package api
|
2024-03-05 15:40:54 +00:00
|
|
|
|
|
|
|
import (
|
2024-03-06 15:31:22 +00:00
|
|
|
"fmt"
|
2024-08-17 07:40:07 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2024-07-23 16:10:04 +00:00
|
|
|
|
2024-09-11 15:42:46 +00:00
|
|
|
"git.solsynth.dev/hydrogen/dealer/pkg/hyper"
|
2024-06-22 09:29:53 +00:00
|
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/internal/database"
|
|
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/internal/gap"
|
|
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/internal/models"
|
|
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/internal/server/exts"
|
|
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/internal/services"
|
2024-06-01 14:15:10 +00:00
|
|
|
"github.com/gofiber/fiber/v2"
|
2024-03-05 15:40:54 +00:00
|
|
|
"github.com/samber/lo"
|
|
|
|
)
|
|
|
|
|
|
|
|
func getPost(c *fiber.Ctx) error {
|
2024-08-17 07:40:07 +00:00
|
|
|
id := c.Params("postId")
|
|
|
|
|
|
|
|
var item models.Post
|
|
|
|
var err error
|
|
|
|
|
|
|
|
tx := services.FilterPostDraft(database.C)
|
2024-09-16 13:28:48 +00:00
|
|
|
|
|
|
|
if user, authenticated := c.Locals("user").(models.Account); authenticated {
|
|
|
|
tx = services.FilterPostWithUserContext(tx, &user)
|
|
|
|
} else {
|
|
|
|
tx = services.FilterPostWithUserContext(tx, nil)
|
|
|
|
}
|
|
|
|
|
2024-08-17 07:40:07 +00:00
|
|
|
if numericId, paramErr := strconv.Atoi(id); paramErr == nil {
|
|
|
|
item, err = services.GetPost(tx, uint(numericId))
|
|
|
|
} else {
|
|
|
|
segments := strings.Split(id, ":")
|
|
|
|
if len(segments) != 2 {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, "invalid post id, must be a number or a string with two segment divided by a colon")
|
|
|
|
}
|
|
|
|
area := segments[0]
|
|
|
|
alias := segments[1]
|
2024-08-17 09:12:04 +00:00
|
|
|
item, err = services.GetPostByAlias(tx, alias, area)
|
2024-08-17 07:40:07 +00:00
|
|
|
}
|
2024-03-05 15:40:54 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusNotFound, err.Error())
|
|
|
|
}
|
|
|
|
|
2024-07-13 15:16:40 +00:00
|
|
|
item.Metric = models.PostMetric{
|
|
|
|
ReplyCount: services.CountPostReply(item.ID),
|
|
|
|
ReactionCount: services.CountPostReactions(item.ID),
|
|
|
|
}
|
2024-10-13 05:37:11 +00:00
|
|
|
item.Metric.ReactionList, err = services.ListPostReactions(database.C.Where("post_id = ?", item.ID))
|
2024-03-05 15:40:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(item)
|
|
|
|
}
|
|
|
|
|
|
|
|
func listPost(c *fiber.Ctx) error {
|
|
|
|
take := c.QueryInt("take", 0)
|
|
|
|
offset := c.QueryInt("offset", 0)
|
2024-08-18 16:04:49 +00:00
|
|
|
realm := c.Query("realm")
|
2024-03-05 15:40:54 +00:00
|
|
|
|
2024-07-03 14:16:23 +00:00
|
|
|
tx := services.FilterPostDraft(database.C)
|
2024-07-29 16:09:00 +00:00
|
|
|
|
|
|
|
if user, authenticated := c.Locals("user").(models.Account); authenticated {
|
|
|
|
tx = services.FilterPostWithUserContext(tx, &user)
|
|
|
|
} else {
|
|
|
|
tx = services.FilterPostWithUserContext(tx, nil)
|
|
|
|
}
|
|
|
|
|
2024-08-18 16:04:49 +00:00
|
|
|
if len(realm) > 0 {
|
|
|
|
if realm, err := services.GetRealmWithAlias(realm); err != nil {
|
2024-06-22 17:18:12 +00:00
|
|
|
return fiber.NewError(fiber.StatusBadRequest, fmt.Sprintf("realm was not found: %v", err))
|
|
|
|
} else {
|
2024-07-03 14:16:23 +00:00
|
|
|
tx = services.FilterPostWithRealm(tx, realm.ID)
|
2024-06-22 17:18:12 +00:00
|
|
|
}
|
2024-05-15 11:45:49 +00:00
|
|
|
}
|
2024-03-05 15:40:54 +00:00
|
|
|
|
2024-09-16 13:24:48 +00:00
|
|
|
if c.QueryBool("noReply", true) {
|
|
|
|
tx = services.FilterPostReply(tx)
|
|
|
|
}
|
|
|
|
|
2024-07-26 08:15:08 +00:00
|
|
|
if len(c.Query("author")) > 0 {
|
2024-05-15 11:45:49 +00:00
|
|
|
var author models.Account
|
2024-09-11 15:42:46 +00:00
|
|
|
if err := database.C.Where(&hyper.BaseUser{Name: c.Query("author")}).First(&author).Error; err != nil {
|
2024-03-05 15:40:54 +00:00
|
|
|
return fiber.NewError(fiber.StatusNotFound, err.Error())
|
|
|
|
}
|
2024-05-15 11:45:49 +00:00
|
|
|
tx = tx.Where("author_id = ?", author.ID)
|
2024-03-05 15:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(c.Query("category")) > 0 {
|
2024-05-15 11:45:49 +00:00
|
|
|
tx = services.FilterPostWithCategory(tx, c.Query("category"))
|
2024-03-05 15:40:54 +00:00
|
|
|
}
|
|
|
|
if len(c.Query("tag")) > 0 {
|
2024-05-15 11:45:49 +00:00
|
|
|
tx = services.FilterPostWithTag(tx, c.Query("tag"))
|
2024-03-05 15:40:54 +00:00
|
|
|
}
|
|
|
|
|
2024-07-05 13:06:18 +00:00
|
|
|
countTx := tx
|
|
|
|
count, err := services.CountPost(countTx)
|
2024-03-05 15:40:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
|
|
}
|
|
|
|
|
2024-07-23 08:12:19 +00:00
|
|
|
items, err := services.ListPost(tx, take, offset, "published_at DESC")
|
2024-03-05 15:40:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(fiber.Map{
|
|
|
|
"count": count,
|
|
|
|
"data": items,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-08-10 13:11:55 +00:00
|
|
|
func listPostMinimal(c *fiber.Ctx) error {
|
|
|
|
take := c.QueryInt("take", 0)
|
|
|
|
offset := c.QueryInt("offset", 0)
|
2024-08-18 16:04:49 +00:00
|
|
|
realm := c.Query("realm")
|
2024-08-10 13:11:55 +00:00
|
|
|
|
|
|
|
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-08-18 16:04:49 +00:00
|
|
|
if len(realm) > 0 {
|
|
|
|
if realm, err := services.GetRealmWithAlias(realm); err != nil {
|
2024-08-10 13:11:55 +00:00
|
|
|
return fiber.NewError(fiber.StatusBadRequest, fmt.Sprintf("realm was not found: %v", err))
|
|
|
|
} else {
|
|
|
|
tx = services.FilterPostWithRealm(tx, realm.ID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(c.Query("author")) > 0 {
|
|
|
|
var author models.Account
|
2024-09-11 15:42:46 +00:00
|
|
|
if err := database.C.Where(&hyper.BaseUser{Name: c.Query("author")}).First(&author).Error; err != nil {
|
2024-08-10 13:11:55 +00:00
|
|
|
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"))
|
|
|
|
}
|
|
|
|
|
|
|
|
countTx := tx
|
|
|
|
count, err := services.CountPost(countTx)
|
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
items, err := services.ListPostMinimal(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,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-07-03 14:16:23 +00:00
|
|
|
func listDraftPost(c *fiber.Ctx) error {
|
|
|
|
take := c.QueryInt("take", 0)
|
|
|
|
offset := c.QueryInt("offset", 0)
|
|
|
|
|
|
|
|
if err := gap.H.EnsureAuthenticated(c); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
user := c.Locals("user").(models.Account)
|
|
|
|
|
|
|
|
tx := services.FilterPostWithAuthorDraft(database.C, user.ID)
|
|
|
|
|
|
|
|
count, err := services.CountPost(tx)
|
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
|
|
}
|
|
|
|
|
2024-07-23 08:12:19 +00:00
|
|
|
items, err := services.ListPost(tx, take, offset, "created_at DESC", true)
|
2024-07-03 14:16:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(fiber.Map{
|
|
|
|
"count": count,
|
|
|
|
"data": items,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-05-15 11:45:49 +00:00
|
|
|
func deletePost(c *fiber.Ctx) error {
|
2024-06-22 09:29:53 +00:00
|
|
|
if err := gap.H.EnsureAuthenticated(c); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
user := c.Locals("user").(models.Account)
|
2024-05-15 11:45:49 +00:00
|
|
|
id, _ := c.ParamsInt("postId", 0)
|
|
|
|
|
|
|
|
var item models.Post
|
|
|
|
if err := database.C.Where(models.Post{
|
2024-09-11 15:42:46 +00:00
|
|
|
BaseModel: hyper.BaseModel{ID: uint(id)},
|
2024-05-15 11:45:49 +00:00
|
|
|
AuthorID: user.ID,
|
|
|
|
}).First(&item).Error; err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusNotFound, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := services.DeletePost(item); err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.SendStatus(fiber.StatusOK)
|
|
|
|
}
|
|
|
|
|
2024-03-05 15:40:54 +00:00
|
|
|
func reactPost(c *fiber.Ctx) error {
|
2024-08-04 14:24:41 +00:00
|
|
|
if err := gap.H.EnsureGrantedPerm(c, "CreateReactions", true); err != nil {
|
2024-06-22 09:29:53 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
user := c.Locals("user").(models.Account)
|
2024-03-05 15:40:54 +00:00
|
|
|
|
|
|
|
var data struct {
|
2024-07-03 14:16:23 +00:00
|
|
|
Symbol string `json:"symbol"`
|
|
|
|
Attitude models.ReactionAttitude `json:"attitude"`
|
2024-03-05 15:40:54 +00:00
|
|
|
}
|
|
|
|
|
2024-06-22 09:29:53 +00:00
|
|
|
if err := exts.BindAndValidate(c, &data); err != nil {
|
2024-03-05 15:40:54 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
reaction := models.Reaction{
|
|
|
|
Symbol: data.Symbol,
|
|
|
|
Attitude: data.Attitude,
|
|
|
|
AccountID: user.ID,
|
2024-03-06 15:31:22 +00:00
|
|
|
}
|
|
|
|
|
2024-05-15 11:45:49 +00:00
|
|
|
var res models.Post
|
2024-07-23 16:10:04 +00:00
|
|
|
if err := database.C.Where("id = ?", c.Params("postId")).Select("id").First(&res).Error; err != nil {
|
2024-05-15 11:45:49 +00:00
|
|
|
return fiber.NewError(fiber.StatusBadRequest, fmt.Sprintf("unable to find post to react: %v", err))
|
2024-03-06 15:31:22 +00:00
|
|
|
} else {
|
2024-05-15 11:45:49 +00:00
|
|
|
reaction.PostID = &res.ID
|
2024-03-05 15:40:54 +00:00
|
|
|
}
|
|
|
|
|
2024-06-08 04:33:10 +00:00
|
|
|
if positive, reaction, err := services.ReactPost(user, reaction); err != nil {
|
2024-03-05 15:40:54 +00:00
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
} else {
|
|
|
|
return c.Status(lo.Ternary(positive, fiber.StatusCreated, fiber.StatusNoContent)).JSON(reaction)
|
|
|
|
}
|
|
|
|
}
|
2024-07-25 14:45:31 +00:00
|
|
|
|
|
|
|
func pinPost(c *fiber.Ctx) error {
|
|
|
|
if err := gap.H.EnsureAuthenticated(c); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
user := c.Locals("user").(models.Account)
|
|
|
|
|
|
|
|
var res models.Post
|
|
|
|
if err := database.C.Where("id = ? AND author_id = ?", c.Params("postId"), user.ID).First(&res).Error; err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, fmt.Sprintf("unable to find post in your posts to pin: %v", err))
|
|
|
|
}
|
|
|
|
|
2024-07-25 14:58:47 +00:00
|
|
|
if status, err := services.PinPost(res); err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
|
|
} else if status {
|
|
|
|
return c.SendStatus(fiber.StatusOK)
|
|
|
|
} else {
|
|
|
|
return c.SendStatus(fiber.StatusNoContent)
|
2024-07-25 14:45:31 +00:00
|
|
|
}
|
|
|
|
}
|