You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/internal/api/friend.go

78 lines
2.0 KiB

2 years ago
package api
3 years ago
2 years ago
import (
"context"
2 years ago
2 years ago
"github.com/OpenIMSDK/Open-IM-Server/pkg/a2r"
2 years ago
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
"github.com/OpenIMSDK/Open-IM-Server/pkg/discoveryregistry"
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/friend"
"google.golang.org/grpc"
2 years ago
2 years ago
"github.com/gin-gonic/gin"
)
2 years ago
func NewFriend(c discoveryregistry.SvcDiscoveryRegistry) *Friend {
conn, err := c.GetConn(context.Background(), config.Config.RpcRegisterName.OpenImFriendName)
if err != nil {
panic(err)
}
return &Friend{conn: conn}
2 years ago
}
type Friend struct {
conn *grpc.ClientConn
2 years ago
}
2 years ago
func (o *Friend) client(ctx context.Context) (friend.FriendClient, error) {
return friend.NewFriendClient(o.conn), nil
2 years ago
}
2 years ago
func (o *Friend) ApplyToAddFriend(c *gin.Context) {
a2r.Call(friend.FriendClient.ApplyToAddFriend, o.client, c)
2 years ago
}
2 years ago
func (o *Friend) RespondFriendApply(c *gin.Context) {
a2r.Call(friend.FriendClient.RespondFriendApply, o.client, c)
}
2 years ago
func (o *Friend) DeleteFriend(c *gin.Context) {
a2r.Call(friend.FriendClient.DeleteFriend, o.client, c)
2 years ago
}
2 years ago
func (o *Friend) GetFriendApplyList(c *gin.Context) {
2 years ago
a2r.Call(friend.FriendClient.GetPaginationFriendsApplyTo, o.client, c)
2 years ago
}
2 years ago
func (o *Friend) GetSelfApplyList(c *gin.Context) {
2 years ago
a2r.Call(friend.FriendClient.GetPaginationFriendsApplyFrom, o.client, c)
2 years ago
}
2 years ago
func (o *Friend) GetFriendList(c *gin.Context) {
2 years ago
a2r.Call(friend.FriendClient.GetPaginationFriends, o.client, c)
2 years ago
}
2 years ago
func (o *Friend) SetFriendRemark(c *gin.Context) {
a2r.Call(friend.FriendClient.SetFriendRemark, o.client, c)
2 years ago
}
2 years ago
func (o *Friend) AddBlack(c *gin.Context) {
a2r.Call(friend.FriendClient.AddBlack, o.client, c)
2 years ago
}
2 years ago
func (o *Friend) GetPaginationBlacks(c *gin.Context) {
a2r.Call(friend.FriendClient.GetPaginationBlacks, o.client, c)
2 years ago
}
2 years ago
func (o *Friend) RemoveBlack(c *gin.Context) {
a2r.Call(friend.FriendClient.RemoveBlack, o.client, c)
2 years ago
}
2 years ago
func (o *Friend) ImportFriends(c *gin.Context) {
a2r.Call(friend.FriendClient.ImportFriends, o.client, c)
2 years ago
}
2 years ago
func (o *Friend) IsFriend(c *gin.Context) {
a2r.Call(friend.FriendClient.IsFriend, o.client, c)
2 years ago
}