79 lines
1.8 KiB
Go
79 lines
1.8 KiB
Go
package services
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg/database"
|
|
"git.solsynth.dev/hydrogen/passport/pkg/models"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
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,
|
|
AccountID: user.ID,
|
|
}); err != nil {
|
|
subscriber = models.NotificationSubscriber{
|
|
UserAgent: ua,
|
|
Provider: provider,
|
|
DeviceID: id,
|
|
DeviceToken: tk,
|
|
AccountID: user.ID,
|
|
}
|
|
} else {
|
|
prev = subscriber
|
|
}
|
|
|
|
subscriber.UserAgent = ua
|
|
subscriber.Provider = provider
|
|
subscriber.DeviceToken = tk
|
|
|
|
var err error
|
|
if !reflect.DeepEqual(subscriber, prev) {
|
|
err = database.C.Save(&subscriber).Error
|
|
}
|
|
|
|
return subscriber, err
|
|
}
|
|
|
|
func NewNotification(notification models.Notification) error {
|
|
if err := database.C.Save(¬ification).Error; err != nil {
|
|
return err
|
|
}
|
|
|
|
go func() {
|
|
err := PushNotification(notification)
|
|
if err != nil {
|
|
log.Error().Err(err).Msg("Unexpected error occurred during the notification.")
|
|
}
|
|
}()
|
|
|
|
return nil
|
|
}
|
|
|
|
func PushNotification(notification models.Notification) error {
|
|
for conn := range wsConn[notification.RecipientID] {
|
|
_ = conn.WriteMessage(1, models.UnifiedCommand{
|
|
Action: "notifications.new",
|
|
Payload: notification,
|
|
}.Marshal())
|
|
}
|
|
|
|
var subscribers []models.NotificationSubscriber
|
|
if err := database.C.Where(&models.NotificationSubscriber{
|
|
AccountID: notification.RecipientID,
|
|
}).Find(&subscribers).Error; err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, subscriber := range subscribers {
|
|
switch subscriber.Provider {
|
|
case models.NotifySubscriberAPN:
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|