2024-07-15 16:02:28 +00:00
|
|
|
package grpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2024-07-19 15:35:15 +00:00
|
|
|
|
2024-07-17 06:04:55 +00:00
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg/internal/database"
|
2024-07-15 16:02:28 +00:00
|
|
|
jsoniter "github.com/json-iterator/go"
|
2024-07-17 06:04:55 +00:00
|
|
|
"github.com/samber/lo"
|
2024-07-15 16:02:28 +00:00
|
|
|
|
|
|
|
"git.solsynth.dev/hydrogen/dealer/pkg/proto"
|
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg/internal/models"
|
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg/internal/services"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (v *Server) NotifyUser(_ context.Context, in *proto.NotifyUserRequest) (*proto.NotifyResponse, error) {
|
|
|
|
var err error
|
|
|
|
var user models.Account
|
|
|
|
if user, err = services.GetAccount(uint(in.GetUserId())); err != nil {
|
|
|
|
return nil, fmt.Errorf("unable to get account: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var metadata map[string]any
|
|
|
|
_ = jsoniter.Unmarshal(in.GetNotify().GetMetadata(), &metadata)
|
|
|
|
|
|
|
|
notification := models.Notification{
|
|
|
|
Topic: in.GetNotify().GetTopic(),
|
|
|
|
Title: in.GetNotify().GetTitle(),
|
|
|
|
Subtitle: in.GetNotify().Subtitle,
|
|
|
|
Body: in.GetNotify().GetBody(),
|
|
|
|
Metadata: metadata,
|
2024-07-19 15:35:15 +00:00
|
|
|
Avatar: in.GetNotify().Avatar,
|
|
|
|
Picture: in.GetNotify().Picture,
|
2024-07-15 16:02:28 +00:00
|
|
|
IsRealtime: in.GetNotify().GetIsRealtime(),
|
|
|
|
IsForcePush: in.GetNotify().GetIsForcePush(),
|
2024-07-15 16:05:09 +00:00
|
|
|
AccountID: user.ID,
|
2024-07-15 16:02:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if notification.IsRealtime {
|
|
|
|
if err := services.PushNotification(notification); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if err := services.NewNotification(notification); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &proto.NotifyResponse{
|
|
|
|
IsSuccess: true,
|
|
|
|
}, nil
|
|
|
|
}
|
2024-07-17 06:04:55 +00:00
|
|
|
|
|
|
|
func (v *Server) NotifyUserBatch(_ context.Context, in *proto.NotifyUserBatchRequest) (*proto.NotifyResponse, error) {
|
|
|
|
var err error
|
|
|
|
var users []models.Account
|
|
|
|
if users, err = services.GetAccountList(lo.Map(in.GetUserId(), func(item uint64, index int) uint {
|
|
|
|
return uint(item)
|
|
|
|
})); err != nil {
|
|
|
|
return nil, fmt.Errorf("unable to get account: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var metadata map[string]any
|
|
|
|
_ = jsoniter.Unmarshal(in.GetNotify().GetMetadata(), &metadata)
|
|
|
|
|
|
|
|
var notifications []models.Notification
|
|
|
|
for _, user := range users {
|
|
|
|
notification := models.Notification{
|
|
|
|
Topic: in.GetNotify().GetTopic(),
|
|
|
|
Title: in.GetNotify().GetTitle(),
|
|
|
|
Subtitle: in.GetNotify().Subtitle,
|
|
|
|
Body: in.GetNotify().GetBody(),
|
|
|
|
Metadata: metadata,
|
2024-07-19 15:35:15 +00:00
|
|
|
Avatar: in.GetNotify().Avatar,
|
|
|
|
Picture: in.GetNotify().Picture,
|
2024-07-17 06:04:55 +00:00
|
|
|
IsRealtime: in.GetNotify().GetIsRealtime(),
|
|
|
|
IsForcePush: in.GetNotify().GetIsForcePush(),
|
2024-09-17 13:15:34 +00:00
|
|
|
Account: user,
|
2024-07-17 06:04:55 +00:00
|
|
|
AccountID: user.ID,
|
|
|
|
}
|
|
|
|
|
|
|
|
notifications = append(notifications, notification)
|
|
|
|
}
|
|
|
|
|
|
|
|
if in.GetNotify().GetIsRealtime() {
|
|
|
|
services.PushNotificationBatch(notifications)
|
|
|
|
} else {
|
|
|
|
if err := services.NewNotificationBatch(notifications); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &proto.NotifyResponse{
|
|
|
|
IsSuccess: true,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Server) NotifyAllUser(_ context.Context, in *proto.NotifyRequest) (*proto.NotifyResponse, error) {
|
|
|
|
var users []models.Account
|
|
|
|
if err := database.C.Find(&users).Error; err != nil {
|
|
|
|
return nil, fmt.Errorf("unable to get account: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var metadata map[string]any
|
|
|
|
_ = jsoniter.Unmarshal(in.GetMetadata(), &metadata)
|
|
|
|
|
|
|
|
var notifications []models.Notification
|
|
|
|
for _, user := range users {
|
|
|
|
notification := models.Notification{
|
|
|
|
Topic: in.GetTopic(),
|
|
|
|
Title: in.GetTitle(),
|
|
|
|
Subtitle: in.Subtitle,
|
|
|
|
Body: in.GetBody(),
|
|
|
|
Metadata: metadata,
|
2024-07-19 15:35:15 +00:00
|
|
|
Avatar: in.Avatar,
|
|
|
|
Picture: in.Picture,
|
2024-07-17 06:04:55 +00:00
|
|
|
IsRealtime: in.GetIsRealtime(),
|
|
|
|
IsForcePush: in.GetIsForcePush(),
|
2024-09-20 13:55:25 +00:00
|
|
|
Account: user,
|
2024-07-17 06:04:55 +00:00
|
|
|
AccountID: user.ID,
|
|
|
|
}
|
|
|
|
|
|
|
|
notifications = append(notifications, notification)
|
|
|
|
}
|
|
|
|
|
|
|
|
if in.GetIsRealtime() {
|
|
|
|
services.PushNotificationBatch(notifications)
|
|
|
|
} else {
|
|
|
|
if err := services.NewNotificationBatch(notifications); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &proto.NotifyResponse{
|
|
|
|
IsSuccess: true,
|
|
|
|
}, nil
|
|
|
|
}
|