2024-02-01 16:53:22 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.smartsheep.studio/hydrogen/interactive/pkg/database"
|
|
|
|
"code.smartsheep.studio/hydrogen/interactive/pkg/models"
|
2024-02-03 07:20:32 +00:00
|
|
|
"code.smartsheep.studio/hydrogen/interactive/pkg/services"
|
2024-02-01 16:53:22 +00:00
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func getUserinfo(c *fiber.Ctx) error {
|
|
|
|
user := c.Locals("principal").(models.Account)
|
|
|
|
|
|
|
|
var data models.Account
|
|
|
|
if err := database.C.
|
|
|
|
Where(&models.Account{BaseModel: models.BaseModel{ID: user.ID}}).
|
|
|
|
First(&data).Error; err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(data)
|
|
|
|
}
|
2024-02-03 07:20:32 +00:00
|
|
|
|
|
|
|
func doFollowAccount(c *fiber.Ctx) error {
|
|
|
|
user := c.Locals("principal").(models.Account)
|
|
|
|
id, _ := c.ParamsInt("accountId", 0)
|
|
|
|
|
|
|
|
var account models.Account
|
|
|
|
if err := database.C.Where(&models.Account{
|
|
|
|
BaseModel: models.BaseModel{ID: uint(id)},
|
|
|
|
}).First(&account).Error; err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusNotFound, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := services.GetAccountFollowed(user, account); ok {
|
|
|
|
if err := services.UnfollowAccount(user.ID, account.ID); err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
return c.SendStatus(fiber.StatusNoContent)
|
|
|
|
} else {
|
|
|
|
if err := services.FollowAccount(user.ID, account.ID); err != nil {
|
|
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
|
|
}
|
|
|
|
return c.SendStatus(fiber.StatusCreated)
|
|
|
|
}
|
|
|
|
}
|