2024-02-06 04:28:12 +00:00
|
|
|
package services
|
|
|
|
|
|
|
|
import (
|
2024-05-07 13:00:20 +00:00
|
|
|
"reflect"
|
2024-03-20 12:56:43 +00:00
|
|
|
|
2024-04-13 05:48:19 +00:00
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg/database"
|
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg/models"
|
2024-02-07 15:40:43 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2024-02-06 04:28:12 +00:00
|
|
|
)
|
|
|
|
|
2024-05-07 13:00:20 +00:00
|
|
|
func AddNotifySubscriber(user models.Account, provider, id, tk, ua string) (models.NotificationSubscriber, error) {
|
|
|
|
var prev models.NotificationSubscriber
|
|
|
|
var subscriber models.NotificationSubscriber
|
|
|
|
if err := database.C.Where(&models.NotificationSubscriber{
|
|
|
|
DeviceID: id,
|
2024-02-07 15:15:16 +00:00
|
|
|
AccountID: user.ID,
|
2024-05-07 13:00:20 +00:00
|
|
|
}); err != nil {
|
|
|
|
subscriber = models.NotificationSubscriber{
|
|
|
|
UserAgent: ua,
|
|
|
|
Provider: provider,
|
|
|
|
DeviceID: id,
|
|
|
|
DeviceToken: tk,
|
|
|
|
AccountID: user.ID,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
prev = subscriber
|
2024-02-07 15:15:16 +00:00
|
|
|
}
|
|
|
|
|
2024-05-07 13:00:20 +00:00
|
|
|
subscriber.UserAgent = ua
|
|
|
|
subscriber.Provider = provider
|
|
|
|
subscriber.DeviceToken = tk
|
|
|
|
|
|
|
|
var err error
|
|
|
|
if !reflect.DeepEqual(subscriber, prev) {
|
|
|
|
err = database.C.Save(&subscriber).Error
|
|
|
|
}
|
2024-02-07 15:15:16 +00:00
|
|
|
|
|
|
|
return subscriber, err
|
|
|
|
}
|
|
|
|
|
2024-03-31 05:04:48 +00:00
|
|
|
func NewNotification(notification models.Notification) error {
|
2024-02-06 04:28:12 +00:00
|
|
|
if err := database.C.Save(¬ification).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-03-31 05:04:48 +00:00
|
|
|
go func() {
|
|
|
|
err := PushNotification(notification)
|
2024-03-31 08:03:59 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("Unexpected error occurred during the notification.")
|
|
|
|
}
|
2024-03-31 05:04:48 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func PushNotification(notification models.Notification) error {
|
2024-05-07 12:54:01 +00:00
|
|
|
for conn := range wsConn[notification.RecipientID] {
|
2024-05-09 15:35:13 +00:00
|
|
|
_ = conn.WriteMessage(1, models.UnifiedCommand{
|
|
|
|
Action: "notifications.new",
|
2024-05-13 14:31:19 +00:00
|
|
|
Payload: notification,
|
2024-05-09 15:35:13 +00:00
|
|
|
}.Marshal())
|
2024-03-31 08:03:59 +00:00
|
|
|
}
|
2024-03-31 05:04:48 +00:00
|
|
|
|
2024-02-07 15:40:43 +00:00
|
|
|
var subscribers []models.NotificationSubscriber
|
|
|
|
if err := database.C.Where(&models.NotificationSubscriber{
|
2024-03-31 05:04:48 +00:00
|
|
|
AccountID: notification.RecipientID,
|
2024-02-07 15:40:43 +00:00
|
|
|
}).Find(&subscribers).Error; err != nil {
|
2024-03-31 05:04:48 +00:00
|
|
|
return err
|
2024-02-07 15:40:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, subscriber := range subscribers {
|
|
|
|
switch subscriber.Provider {
|
2024-06-02 12:15:04 +00:00
|
|
|
case models.NotifySubscriberAPN:
|
2024-02-07 15:40:43 +00:00
|
|
|
}
|
|
|
|
}
|
2024-02-06 04:28:12 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|