65 lines
1.9 KiB
Go
65 lines
1.9 KiB
Go
package services
|
|
|
|
import (
|
|
"context"
|
|
"git.solsynth.dev/hydrogen/identity/pkg/grpc/proto"
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/database"
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/grpc"
|
|
"git.solsynth.dev/hydrogen/interactive/pkg/models"
|
|
"github.com/spf13/viper"
|
|
"time"
|
|
)
|
|
|
|
func FollowAccount(followerId, followingId uint) error {
|
|
relationship := models.AccountMembership{
|
|
FollowerID: followerId,
|
|
FollowingID: followingId,
|
|
}
|
|
return database.C.Create(&relationship).Error
|
|
}
|
|
|
|
func UnfollowAccount(followerId, followingId uint) error {
|
|
return database.C.Where(models.AccountMembership{
|
|
FollowerID: followerId,
|
|
FollowingID: followingId,
|
|
}).Delete(&models.AccountMembership{}).Error
|
|
}
|
|
|
|
func GetAccountFollowed(user models.Account, target models.Account) (models.AccountMembership, bool) {
|
|
var relationship models.AccountMembership
|
|
err := database.C.Model(&models.AccountMembership{}).
|
|
Where(&models.AccountMembership{FollowerID: user.ID, FollowingID: target.ID}).
|
|
First(&relationship).
|
|
Error
|
|
return relationship, err == nil
|
|
}
|
|
|
|
func GetAccountFriend(userId, relatedId uint, status int) (*proto.FriendshipResponse, error) {
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
|
|
defer cancel()
|
|
|
|
return grpc.Friendships.GetFriendship(ctx, &proto.FriendshipTwoSideLookupRequest{
|
|
AccountId: uint64(userId),
|
|
RelatedId: uint64(relatedId),
|
|
Status: uint32(status),
|
|
})
|
|
}
|
|
|
|
func NotifyAccount(user models.Account, subject, content string, realtime bool, links ...*proto.NotifyLink) error {
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
|
|
defer cancel()
|
|
|
|
_, err := grpc.Notify.NotifyUser(ctx, &proto.NotifyRequest{
|
|
ClientId: viper.GetString("identity.client_id"),
|
|
ClientSecret: viper.GetString("identity.client_secret"),
|
|
Subject: subject,
|
|
Content: content,
|
|
Links: links,
|
|
RecipientId: uint64(user.ExternalID),
|
|
IsRealtime: realtime,
|
|
IsImportant: false,
|
|
})
|
|
|
|
return err
|
|
}
|