Passport/pkg/internal/server/api/notifications_api.go

173 lines
4.8 KiB
Go
Raw Normal View History

package api
2024-02-01 07:58:28 +00:00
import (
"git.solsynth.dev/hydrogen/passport/pkg/internal/database"
"git.solsynth.dev/hydrogen/passport/pkg/internal/models"
"git.solsynth.dev/hydrogen/passport/pkg/internal/server/exts"
"git.solsynth.dev/hydrogen/passport/pkg/internal/services"
2024-02-01 07:58:28 +00:00
"github.com/gofiber/fiber/v2"
"github.com/samber/lo"
2024-10-14 14:23:51 +00:00
"strconv"
"time"
2024-02-01 07:58:28 +00:00
)
func getNotifications(c *fiber.Ctx) error {
take := c.QueryInt("take", 0)
offset := c.QueryInt("offset", 0)
if err := exts.EnsureAuthenticated(c); err != nil {
return err
}
user := c.Locals("user").(models.Account)
2024-07-15 16:05:09 +00:00
tx := database.C.Where(&models.Notification{AccountID: user.ID}).Model(&models.Notification{})
2024-02-28 15:30:29 +00:00
2024-02-01 07:58:28 +00:00
var count int64
2024-02-28 15:30:29 +00:00
if err := tx.
2024-02-01 07:58:28 +00:00
Count(&count).Error; err != nil {
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
}
var notifications []models.Notification
2024-02-28 15:30:29 +00:00
if err := tx.
2024-02-01 07:58:28 +00:00
Limit(take).
Offset(offset).
2024-10-16 13:07:53 +00:00
Order("read_at DESC, created_at DESC").
2024-02-01 07:58:28 +00:00
Find(&notifications).Error; err != nil {
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
}
return c.JSON(fiber.Map{
"count": count,
"data": notifications,
})
}
func markNotificationRead(c *fiber.Ctx) error {
if err := exts.EnsureAuthenticated(c); err != nil {
return err
}
user := c.Locals("user").(models.Account)
2024-02-01 07:58:28 +00:00
id, _ := c.ParamsInt("notificationId", 0)
if err := exts.EnsureAuthenticated(c); err != nil {
return err
}
var notify models.Notification
2024-02-01 07:58:28 +00:00
if err := database.C.Where(&models.Notification{
BaseModel: models.BaseModel{ID: uint(id)},
2024-07-15 16:05:09 +00:00
AccountID: user.ID,
}).First(&notify).Error; err != nil {
2024-02-01 07:58:28 +00:00
return fiber.NewError(fiber.StatusNotFound, err.Error())
}
notify.ReadAt = lo.ToPtr(time.Now())
if err := database.C.Save(&notify).Error; err != nil {
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
} else {
2024-10-14 14:23:51 +00:00
services.AddEvent(user.ID, "notifications.mark.read", strconv.Itoa(int(notify.ID)), c.IP(), c.Get(fiber.HeaderUserAgent))
return c.SendStatus(fiber.StatusOK)
}
}
func markNotificationReadBatch(c *fiber.Ctx) error {
if err := exts.EnsureAuthenticated(c); err != nil {
return err
}
user := c.Locals("user").(models.Account)
var data struct {
MessageIDs []uint `json:"messages"`
}
if err := exts.BindAndValidate(c, &data); err != nil {
return fiber.NewError(fiber.StatusBadRequest, err.Error())
}
if err := database.C.Model(&models.Notification{}).
2024-07-23 14:04:52 +00:00
Where("account_id = ? AND id IN ?", user.ID, data.MessageIDs).
Updates(&models.Notification{ReadAt: lo.ToPtr(time.Now())}).Error; err != nil {
2024-02-01 07:58:28 +00:00
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
} else {
2024-10-14 14:23:51 +00:00
services.AddEvent(user.ID, "notifications.markAll.read", strconv.Itoa(int(user.ID)), c.IP(), c.Get(fiber.HeaderUserAgent))
2024-02-01 07:58:28 +00:00
return c.SendStatus(fiber.StatusOK)
}
}
2024-02-07 15:15:16 +00:00
func getNotifySubscriber(c *fiber.Ctx) error {
if err := exts.EnsureAuthenticated(c); err != nil {
return err
}
user := c.Locals("user").(models.Account)
var subscribers []models.NotificationSubscriber
if err := database.C.Where(&models.NotificationSubscriber{
AccountID: user.ID,
}).Find(&subscribers).Error; err != nil {
return fiber.NewError(fiber.StatusNotFound, err.Error())
}
return c.JSON(subscribers)
}
2024-02-07 15:15:16 +00:00
func addNotifySubscriber(c *fiber.Ctx) error {
if err := exts.EnsureAuthenticated(c); err != nil {
return err
}
user := c.Locals("user").(models.Account)
2024-02-07 15:15:16 +00:00
var data struct {
Provider string `json:"provider" validate:"required"`
DeviceToken string `json:"device_token" validate:"required"`
DeviceID string `json:"device_id" validate:"required"`
2024-02-07 15:15:16 +00:00
}
if err := exts.BindAndValidate(c, &data); err != nil {
2024-02-07 15:15:16 +00:00
return err
}
2024-02-08 03:08:29 +00:00
var count int64
if err := database.C.Where(&models.NotificationSubscriber{
DeviceID: data.DeviceID,
DeviceToken: data.DeviceToken,
AccountID: user.ID,
2024-02-08 03:08:29 +00:00
}).Model(&models.NotificationSubscriber{}).Count(&count).Error; err != nil || count > 0 {
return c.SendStatus(fiber.StatusOK)
}
2024-02-07 15:15:16 +00:00
subscriber, err := services.AddNotifySubscriber(
user,
data.Provider,
data.DeviceID,
data.DeviceToken,
2024-02-07 15:15:16 +00:00
c.Get(fiber.HeaderUserAgent),
)
if err != nil {
return fiber.NewError(fiber.StatusBadRequest, err.Error())
}
2024-10-14 14:23:51 +00:00
services.AddEvent(user.ID, "notifications.subscribe.push", data.DeviceID, c.IP(), c.Get(fiber.HeaderUserAgent))
2024-02-07 15:15:16 +00:00
return c.JSON(subscriber)
}
func removeNotifySubscriber(c *fiber.Ctx) error {
if err := exts.EnsureAuthenticated(c); err != nil {
return err
}
user := c.Locals("user").(models.Account)
device := c.Params("deviceId")
if err := database.C.Where(&models.NotificationSubscriber{
DeviceID: device,
AccountID: user.ID,
}).Delete(&models.NotificationSubscriber{}).Error; err != nil {
return fiber.NewError(fiber.StatusBadRequest, err.Error())
}
2024-10-14 14:23:51 +00:00
services.AddEvent(user.ID, "notifications.unsubscribe.push", device, c.IP(), c.Get(fiber.HeaderUserAgent))
return c.SendStatus(fiber.StatusOK)
}