41 lines
1.0 KiB
Go
41 lines
1.0 KiB
Go
package api
|
|
|
|
import (
|
|
"git.solsynth.dev/hypernet/passport/pkg/authkit/models"
|
|
"git.solsynth.dev/hypernet/passport/pkg/internal/database"
|
|
"git.solsynth.dev/hypernet/passport/pkg/internal/http/exts"
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func getEvents(c *fiber.Ctx) error {
|
|
if err := exts.EnsureAuthenticated(c); err != nil {
|
|
return err
|
|
}
|
|
user := c.Locals("user").(models.Account)
|
|
take := c.QueryInt("take", 0)
|
|
offset := c.QueryInt("offset", 0)
|
|
|
|
var count int64
|
|
var events []models.ActionEvent
|
|
if err := database.C.
|
|
Where(&models.ActionEvent{AccountID: user.ID}).
|
|
Model(&models.ActionEvent{}).
|
|
Count(&count).Error; err != nil {
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
}
|
|
|
|
if err := database.C.
|
|
Order("created_at desc").
|
|
Where(&models.ActionEvent{AccountID: user.ID}).
|
|
Limit(take).
|
|
Offset(offset).
|
|
Find(&events).Error; err != nil {
|
|
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
|
|
}
|
|
|
|
return c.JSON(fiber.Map{
|
|
"count": count,
|
|
"data": events,
|
|
})
|
|
}
|