mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-05-01 23:32:54 +08:00
Error code standardization
This commit is contained in:
parent
82c1b2352c
commit
6bce40535e
11
internal/common/check/check_user.go
Normal file
11
internal/common/check/check_user.go
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
package check
|
||||||
|
|
||||||
|
import (
|
||||||
|
server_api_params "Open_IM/pkg/proto/sdk_ws"
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
)
|
||||||
|
|
||||||
|
func GetUsersInfo(ctx context.Context, args ...interface{}) ([]*server_api_params.UserInfo, error) {
|
||||||
|
return nil, errors.New("TODO:GetUserInfo")
|
||||||
|
}
|
@ -12,7 +12,6 @@ import (
|
|||||||
"Open_IM/pkg/common/middleware"
|
"Open_IM/pkg/common/middleware"
|
||||||
promePkg "Open_IM/pkg/common/prometheus"
|
promePkg "Open_IM/pkg/common/prometheus"
|
||||||
"Open_IM/pkg/common/token_verify"
|
"Open_IM/pkg/common/token_verify"
|
||||||
"Open_IM/pkg/common/tools"
|
|
||||||
"Open_IM/pkg/getcdv3"
|
"Open_IM/pkg/getcdv3"
|
||||||
pbFriend "Open_IM/pkg/proto/friend"
|
pbFriend "Open_IM/pkg/proto/friend"
|
||||||
sdkws "Open_IM/pkg/proto/sdk_ws"
|
sdkws "Open_IM/pkg/proto/sdk_ws"
|
||||||
@ -23,6 +22,7 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"Open_IM/internal/common/check"
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -138,7 +138,7 @@ func (s *friendServer) AddFriend(ctx context.Context, req *pbFriend.AddFriendReq
|
|||||||
}
|
}
|
||||||
|
|
||||||
//检查toUserID fromUserID是否存在
|
//检查toUserID fromUserID是否存在
|
||||||
if _, err := GetUsersInfo(ctx, req.ToUserID, req.FromUserID); err != nil {
|
if _, err := check.GetUsersInfo(ctx, req.ToUserID, req.FromUserID); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,7 +12,3 @@ func GetPublicUserInfoBatch(ctx context.Context, userIDs []string) ([]*server_ap
|
|||||||
}
|
}
|
||||||
return nil, errors.New("TODO:GetUserInfo")
|
return nil, errors.New("TODO:GetUserInfo")
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetUsersInfo(ctx context.Context, args ...interface{}) ([]*server_api_params.UserInfo, error) {
|
|
||||||
return nil, errors.New("TODO:GetUserInfo")
|
|
||||||
}
|
|
||||||
|
@ -36,7 +36,7 @@ func (m *GetFriendsInfoReq) Reset() { *m = GetFriendsInfoReq{} }
|
|||||||
func (m *GetFriendsInfoReq) String() string { return proto.CompactTextString(m) }
|
func (m *GetFriendsInfoReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*GetFriendsInfoReq) ProtoMessage() {}
|
func (*GetFriendsInfoReq) ProtoMessage() {}
|
||||||
func (*GetFriendsInfoReq) Descriptor() ([]byte, []int) {
|
func (*GetFriendsInfoReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{0}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{0}
|
||||||
}
|
}
|
||||||
func (m *GetFriendsInfoReq) XXX_Unmarshal(b []byte) error {
|
func (m *GetFriendsInfoReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_GetFriendsInfoReq.Unmarshal(m, b)
|
return xxx_messageInfo_GetFriendsInfoReq.Unmarshal(m, b)
|
||||||
@ -71,7 +71,7 @@ func (m *GetFriendsInfoReq) GetFriendUserIDs() []string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type GetFriendsInfoResp struct {
|
type GetFriendsInfoResp struct {
|
||||||
FriendInfoList []*sdk_ws.FriendInfo `protobuf:"bytes,1,rep,name=FriendInfoList" json:"FriendInfoList,omitempty"`
|
FriendsInfo []*sdk_ws.FriendInfo `protobuf:"bytes,1,rep,name=friendsInfo" json:"friendsInfo,omitempty"`
|
||||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||||
XXX_unrecognized []byte `json:"-"`
|
XXX_unrecognized []byte `json:"-"`
|
||||||
XXX_sizecache int32 `json:"-"`
|
XXX_sizecache int32 `json:"-"`
|
||||||
@ -81,7 +81,7 @@ func (m *GetFriendsInfoResp) Reset() { *m = GetFriendsInfoResp{} }
|
|||||||
func (m *GetFriendsInfoResp) String() string { return proto.CompactTextString(m) }
|
func (m *GetFriendsInfoResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*GetFriendsInfoResp) ProtoMessage() {}
|
func (*GetFriendsInfoResp) ProtoMessage() {}
|
||||||
func (*GetFriendsInfoResp) Descriptor() ([]byte, []int) {
|
func (*GetFriendsInfoResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{1}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{1}
|
||||||
}
|
}
|
||||||
func (m *GetFriendsInfoResp) XXX_Unmarshal(b []byte) error {
|
func (m *GetFriendsInfoResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_GetFriendsInfoResp.Unmarshal(m, b)
|
return xxx_messageInfo_GetFriendsInfoResp.Unmarshal(m, b)
|
||||||
@ -101,9 +101,9 @@ func (m *GetFriendsInfoResp) XXX_DiscardUnknown() {
|
|||||||
|
|
||||||
var xxx_messageInfo_GetFriendsInfoResp proto.InternalMessageInfo
|
var xxx_messageInfo_GetFriendsInfoResp proto.InternalMessageInfo
|
||||||
|
|
||||||
func (m *GetFriendsInfoResp) GetFriendInfoList() []*sdk_ws.FriendInfo {
|
func (m *GetFriendsInfoResp) GetFriendsInfo() []*sdk_ws.FriendInfo {
|
||||||
if m != nil {
|
if m != nil {
|
||||||
return m.FriendInfoList
|
return m.FriendsInfo
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -122,7 +122,7 @@ func (m *AddFriendReq) Reset() { *m = AddFriendReq{} }
|
|||||||
func (m *AddFriendReq) String() string { return proto.CompactTextString(m) }
|
func (m *AddFriendReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*AddFriendReq) ProtoMessage() {}
|
func (*AddFriendReq) ProtoMessage() {}
|
||||||
func (*AddFriendReq) Descriptor() ([]byte, []int) {
|
func (*AddFriendReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{2}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{2}
|
||||||
}
|
}
|
||||||
func (m *AddFriendReq) XXX_Unmarshal(b []byte) error {
|
func (m *AddFriendReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_AddFriendReq.Unmarshal(m, b)
|
return xxx_messageInfo_AddFriendReq.Unmarshal(m, b)
|
||||||
@ -180,7 +180,7 @@ func (m *AddFriendResp) Reset() { *m = AddFriendResp{} }
|
|||||||
func (m *AddFriendResp) String() string { return proto.CompactTextString(m) }
|
func (m *AddFriendResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*AddFriendResp) ProtoMessage() {}
|
func (*AddFriendResp) ProtoMessage() {}
|
||||||
func (*AddFriendResp) Descriptor() ([]byte, []int) {
|
func (*AddFriendResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{3}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{3}
|
||||||
}
|
}
|
||||||
func (m *AddFriendResp) XXX_Unmarshal(b []byte) error {
|
func (m *AddFriendResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_AddFriendResp.Unmarshal(m, b)
|
return xxx_messageInfo_AddFriendResp.Unmarshal(m, b)
|
||||||
@ -212,7 +212,7 @@ func (m *ImportFriendReq) Reset() { *m = ImportFriendReq{} }
|
|||||||
func (m *ImportFriendReq) String() string { return proto.CompactTextString(m) }
|
func (m *ImportFriendReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*ImportFriendReq) ProtoMessage() {}
|
func (*ImportFriendReq) ProtoMessage() {}
|
||||||
func (*ImportFriendReq) Descriptor() ([]byte, []int) {
|
func (*ImportFriendReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{4}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{4}
|
||||||
}
|
}
|
||||||
func (m *ImportFriendReq) XXX_Unmarshal(b []byte) error {
|
func (m *ImportFriendReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_ImportFriendReq.Unmarshal(m, b)
|
return xxx_messageInfo_ImportFriendReq.Unmarshal(m, b)
|
||||||
@ -256,7 +256,7 @@ func (m *ImportFriendResp) Reset() { *m = ImportFriendResp{} }
|
|||||||
func (m *ImportFriendResp) String() string { return proto.CompactTextString(m) }
|
func (m *ImportFriendResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*ImportFriendResp) ProtoMessage() {}
|
func (*ImportFriendResp) ProtoMessage() {}
|
||||||
func (*ImportFriendResp) Descriptor() ([]byte, []int) {
|
func (*ImportFriendResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{5}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{5}
|
||||||
}
|
}
|
||||||
func (m *ImportFriendResp) XXX_Unmarshal(b []byte) error {
|
func (m *ImportFriendResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_ImportFriendResp.Unmarshal(m, b)
|
return xxx_messageInfo_ImportFriendResp.Unmarshal(m, b)
|
||||||
@ -288,7 +288,7 @@ func (m *GetToFriendsApplyReq) Reset() { *m = GetToFriendsApplyReq{} }
|
|||||||
func (m *GetToFriendsApplyReq) String() string { return proto.CompactTextString(m) }
|
func (m *GetToFriendsApplyReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*GetToFriendsApplyReq) ProtoMessage() {}
|
func (*GetToFriendsApplyReq) ProtoMessage() {}
|
||||||
func (*GetToFriendsApplyReq) Descriptor() ([]byte, []int) {
|
func (*GetToFriendsApplyReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{6}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{6}
|
||||||
}
|
}
|
||||||
func (m *GetToFriendsApplyReq) XXX_Unmarshal(b []byte) error {
|
func (m *GetToFriendsApplyReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_GetToFriendsApplyReq.Unmarshal(m, b)
|
return xxx_messageInfo_GetToFriendsApplyReq.Unmarshal(m, b)
|
||||||
@ -334,7 +334,7 @@ func (m *GetToFriendsApplyResp) Reset() { *m = GetToFriendsApplyResp{} }
|
|||||||
func (m *GetToFriendsApplyResp) String() string { return proto.CompactTextString(m) }
|
func (m *GetToFriendsApplyResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*GetToFriendsApplyResp) ProtoMessage() {}
|
func (*GetToFriendsApplyResp) ProtoMessage() {}
|
||||||
func (*GetToFriendsApplyResp) Descriptor() ([]byte, []int) {
|
func (*GetToFriendsApplyResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{7}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{7}
|
||||||
}
|
}
|
||||||
func (m *GetToFriendsApplyResp) XXX_Unmarshal(b []byte) error {
|
func (m *GetToFriendsApplyResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_GetToFriendsApplyResp.Unmarshal(m, b)
|
return xxx_messageInfo_GetToFriendsApplyResp.Unmarshal(m, b)
|
||||||
@ -380,7 +380,7 @@ func (m *GetFriendsReq) Reset() { *m = GetFriendsReq{} }
|
|||||||
func (m *GetFriendsReq) String() string { return proto.CompactTextString(m) }
|
func (m *GetFriendsReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*GetFriendsReq) ProtoMessage() {}
|
func (*GetFriendsReq) ProtoMessage() {}
|
||||||
func (*GetFriendsReq) Descriptor() ([]byte, []int) {
|
func (*GetFriendsReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{8}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{8}
|
||||||
}
|
}
|
||||||
func (m *GetFriendsReq) XXX_Unmarshal(b []byte) error {
|
func (m *GetFriendsReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_GetFriendsReq.Unmarshal(m, b)
|
return xxx_messageInfo_GetFriendsReq.Unmarshal(m, b)
|
||||||
@ -426,7 +426,7 @@ func (m *GetFriendsResp) Reset() { *m = GetFriendsResp{} }
|
|||||||
func (m *GetFriendsResp) String() string { return proto.CompactTextString(m) }
|
func (m *GetFriendsResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*GetFriendsResp) ProtoMessage() {}
|
func (*GetFriendsResp) ProtoMessage() {}
|
||||||
func (*GetFriendsResp) Descriptor() ([]byte, []int) {
|
func (*GetFriendsResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{9}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{9}
|
||||||
}
|
}
|
||||||
func (m *GetFriendsResp) XXX_Unmarshal(b []byte) error {
|
func (m *GetFriendsResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_GetFriendsResp.Unmarshal(m, b)
|
return xxx_messageInfo_GetFriendsResp.Unmarshal(m, b)
|
||||||
@ -472,7 +472,7 @@ func (m *AddBlackReq) Reset() { *m = AddBlackReq{} }
|
|||||||
func (m *AddBlackReq) String() string { return proto.CompactTextString(m) }
|
func (m *AddBlackReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*AddBlackReq) ProtoMessage() {}
|
func (*AddBlackReq) ProtoMessage() {}
|
||||||
func (*AddBlackReq) Descriptor() ([]byte, []int) {
|
func (*AddBlackReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{10}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{10}
|
||||||
}
|
}
|
||||||
func (m *AddBlackReq) XXX_Unmarshal(b []byte) error {
|
func (m *AddBlackReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_AddBlackReq.Unmarshal(m, b)
|
return xxx_messageInfo_AddBlackReq.Unmarshal(m, b)
|
||||||
@ -516,7 +516,7 @@ func (m *AddBlackResp) Reset() { *m = AddBlackResp{} }
|
|||||||
func (m *AddBlackResp) String() string { return proto.CompactTextString(m) }
|
func (m *AddBlackResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*AddBlackResp) ProtoMessage() {}
|
func (*AddBlackResp) ProtoMessage() {}
|
||||||
func (*AddBlackResp) Descriptor() ([]byte, []int) {
|
func (*AddBlackResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{11}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{11}
|
||||||
}
|
}
|
||||||
func (m *AddBlackResp) XXX_Unmarshal(b []byte) error {
|
func (m *AddBlackResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_AddBlackResp.Unmarshal(m, b)
|
return xxx_messageInfo_AddBlackResp.Unmarshal(m, b)
|
||||||
@ -548,7 +548,7 @@ func (m *RemoveBlackReq) Reset() { *m = RemoveBlackReq{} }
|
|||||||
func (m *RemoveBlackReq) String() string { return proto.CompactTextString(m) }
|
func (m *RemoveBlackReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*RemoveBlackReq) ProtoMessage() {}
|
func (*RemoveBlackReq) ProtoMessage() {}
|
||||||
func (*RemoveBlackReq) Descriptor() ([]byte, []int) {
|
func (*RemoveBlackReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{12}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{12}
|
||||||
}
|
}
|
||||||
func (m *RemoveBlackReq) XXX_Unmarshal(b []byte) error {
|
func (m *RemoveBlackReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_RemoveBlackReq.Unmarshal(m, b)
|
return xxx_messageInfo_RemoveBlackReq.Unmarshal(m, b)
|
||||||
@ -582,35 +582,35 @@ func (m *RemoveBlackReq) GetBlackUserID() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
type RemoveBlackReqResp struct {
|
type RemoveBlackResp struct {
|
||||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||||
XXX_unrecognized []byte `json:"-"`
|
XXX_unrecognized []byte `json:"-"`
|
||||||
XXX_sizecache int32 `json:"-"`
|
XXX_sizecache int32 `json:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *RemoveBlackReqResp) Reset() { *m = RemoveBlackReqResp{} }
|
func (m *RemoveBlackResp) Reset() { *m = RemoveBlackResp{} }
|
||||||
func (m *RemoveBlackReqResp) String() string { return proto.CompactTextString(m) }
|
func (m *RemoveBlackResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*RemoveBlackReqResp) ProtoMessage() {}
|
func (*RemoveBlackResp) ProtoMessage() {}
|
||||||
func (*RemoveBlackReqResp) Descriptor() ([]byte, []int) {
|
func (*RemoveBlackResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{13}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{13}
|
||||||
}
|
}
|
||||||
func (m *RemoveBlackReqResp) XXX_Unmarshal(b []byte) error {
|
func (m *RemoveBlackResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_RemoveBlackReqResp.Unmarshal(m, b)
|
return xxx_messageInfo_RemoveBlackResp.Unmarshal(m, b)
|
||||||
}
|
}
|
||||||
func (m *RemoveBlackReqResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
func (m *RemoveBlackResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||||
return xxx_messageInfo_RemoveBlackReqResp.Marshal(b, m, deterministic)
|
return xxx_messageInfo_RemoveBlackResp.Marshal(b, m, deterministic)
|
||||||
}
|
}
|
||||||
func (dst *RemoveBlackReqResp) XXX_Merge(src proto.Message) {
|
func (dst *RemoveBlackResp) XXX_Merge(src proto.Message) {
|
||||||
xxx_messageInfo_RemoveBlackReqResp.Merge(dst, src)
|
xxx_messageInfo_RemoveBlackResp.Merge(dst, src)
|
||||||
}
|
}
|
||||||
func (m *RemoveBlackReqResp) XXX_Size() int {
|
func (m *RemoveBlackResp) XXX_Size() int {
|
||||||
return xxx_messageInfo_RemoveBlackReqResp.Size(m)
|
return xxx_messageInfo_RemoveBlackResp.Size(m)
|
||||||
}
|
}
|
||||||
func (m *RemoveBlackReqResp) XXX_DiscardUnknown() {
|
func (m *RemoveBlackResp) XXX_DiscardUnknown() {
|
||||||
xxx_messageInfo_RemoveBlackReqResp.DiscardUnknown(m)
|
xxx_messageInfo_RemoveBlackResp.DiscardUnknown(m)
|
||||||
}
|
}
|
||||||
|
|
||||||
var xxx_messageInfo_RemoveBlackReqResp proto.InternalMessageInfo
|
var xxx_messageInfo_RemoveBlackResp proto.InternalMessageInfo
|
||||||
|
|
||||||
type GetBlacksReq struct {
|
type GetBlacksReq struct {
|
||||||
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
|
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
|
||||||
@ -624,7 +624,7 @@ func (m *GetBlacksReq) Reset() { *m = GetBlacksReq{} }
|
|||||||
func (m *GetBlacksReq) String() string { return proto.CompactTextString(m) }
|
func (m *GetBlacksReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*GetBlacksReq) ProtoMessage() {}
|
func (*GetBlacksReq) ProtoMessage() {}
|
||||||
func (*GetBlacksReq) Descriptor() ([]byte, []int) {
|
func (*GetBlacksReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{14}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{14}
|
||||||
}
|
}
|
||||||
func (m *GetBlacksReq) XXX_Unmarshal(b []byte) error {
|
func (m *GetBlacksReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_GetBlacksReq.Unmarshal(m, b)
|
return xxx_messageInfo_GetBlacksReq.Unmarshal(m, b)
|
||||||
@ -659,7 +659,7 @@ func (m *GetBlacksReq) GetPagination() *sdk_ws.RequestPagination {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type GetBlacksResp struct {
|
type GetBlacksResp struct {
|
||||||
BlackUserInfoList []*sdk_ws.PublicUserInfo `protobuf:"bytes,1,rep,name=BlackUserInfoList" json:"BlackUserInfoList,omitempty"`
|
BlackUsersInfo []*sdk_ws.PublicUserInfo `protobuf:"bytes,1,rep,name=blackUsersInfo" json:"blackUsersInfo,omitempty"`
|
||||||
Total int32 `protobuf:"varint,2,opt,name=total" json:"total,omitempty"`
|
Total int32 `protobuf:"varint,2,opt,name=total" json:"total,omitempty"`
|
||||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||||
XXX_unrecognized []byte `json:"-"`
|
XXX_unrecognized []byte `json:"-"`
|
||||||
@ -670,7 +670,7 @@ func (m *GetBlacksResp) Reset() { *m = GetBlacksResp{} }
|
|||||||
func (m *GetBlacksResp) String() string { return proto.CompactTextString(m) }
|
func (m *GetBlacksResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*GetBlacksResp) ProtoMessage() {}
|
func (*GetBlacksResp) ProtoMessage() {}
|
||||||
func (*GetBlacksResp) Descriptor() ([]byte, []int) {
|
func (*GetBlacksResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{15}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{15}
|
||||||
}
|
}
|
||||||
func (m *GetBlacksResp) XXX_Unmarshal(b []byte) error {
|
func (m *GetBlacksResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_GetBlacksResp.Unmarshal(m, b)
|
return xxx_messageInfo_GetBlacksResp.Unmarshal(m, b)
|
||||||
@ -690,9 +690,9 @@ func (m *GetBlacksResp) XXX_DiscardUnknown() {
|
|||||||
|
|
||||||
var xxx_messageInfo_GetBlacksResp proto.InternalMessageInfo
|
var xxx_messageInfo_GetBlacksResp proto.InternalMessageInfo
|
||||||
|
|
||||||
func (m *GetBlacksResp) GetBlackUserInfoList() []*sdk_ws.PublicUserInfo {
|
func (m *GetBlacksResp) GetBlackUsersInfo() []*sdk_ws.PublicUserInfo {
|
||||||
if m != nil {
|
if m != nil {
|
||||||
return m.BlackUserInfoList
|
return m.BlackUsersInfo
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -716,7 +716,7 @@ func (m *IsFriendReq) Reset() { *m = IsFriendReq{} }
|
|||||||
func (m *IsFriendReq) String() string { return proto.CompactTextString(m) }
|
func (m *IsFriendReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*IsFriendReq) ProtoMessage() {}
|
func (*IsFriendReq) ProtoMessage() {}
|
||||||
func (*IsFriendReq) Descriptor() ([]byte, []int) {
|
func (*IsFriendReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{16}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{16}
|
||||||
}
|
}
|
||||||
func (m *IsFriendReq) XXX_Unmarshal(b []byte) error {
|
func (m *IsFriendReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_IsFriendReq.Unmarshal(m, b)
|
return xxx_messageInfo_IsFriendReq.Unmarshal(m, b)
|
||||||
@ -761,7 +761,7 @@ func (m *IsFriendResp) Reset() { *m = IsFriendResp{} }
|
|||||||
func (m *IsFriendResp) String() string { return proto.CompactTextString(m) }
|
func (m *IsFriendResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*IsFriendResp) ProtoMessage() {}
|
func (*IsFriendResp) ProtoMessage() {}
|
||||||
func (*IsFriendResp) Descriptor() ([]byte, []int) {
|
func (*IsFriendResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{17}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{17}
|
||||||
}
|
}
|
||||||
func (m *IsFriendResp) XXX_Unmarshal(b []byte) error {
|
func (m *IsFriendResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_IsFriendResp.Unmarshal(m, b)
|
return xxx_messageInfo_IsFriendResp.Unmarshal(m, b)
|
||||||
@ -800,7 +800,7 @@ func (m *IsBlackReq) Reset() { *m = IsBlackReq{} }
|
|||||||
func (m *IsBlackReq) String() string { return proto.CompactTextString(m) }
|
func (m *IsBlackReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*IsBlackReq) ProtoMessage() {}
|
func (*IsBlackReq) ProtoMessage() {}
|
||||||
func (*IsBlackReq) Descriptor() ([]byte, []int) {
|
func (*IsBlackReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{18}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{18}
|
||||||
}
|
}
|
||||||
func (m *IsBlackReq) XXX_Unmarshal(b []byte) error {
|
func (m *IsBlackReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_IsBlackReq.Unmarshal(m, b)
|
return xxx_messageInfo_IsBlackReq.Unmarshal(m, b)
|
||||||
@ -845,7 +845,7 @@ func (m *IsBlackResp) Reset() { *m = IsBlackResp{} }
|
|||||||
func (m *IsBlackResp) String() string { return proto.CompactTextString(m) }
|
func (m *IsBlackResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*IsBlackResp) ProtoMessage() {}
|
func (*IsBlackResp) ProtoMessage() {}
|
||||||
func (*IsBlackResp) Descriptor() ([]byte, []int) {
|
func (*IsBlackResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{19}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{19}
|
||||||
}
|
}
|
||||||
func (m *IsBlackResp) XXX_Unmarshal(b []byte) error {
|
func (m *IsBlackResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_IsBlackResp.Unmarshal(m, b)
|
return xxx_messageInfo_IsBlackResp.Unmarshal(m, b)
|
||||||
@ -884,7 +884,7 @@ func (m *DeleteFriendReq) Reset() { *m = DeleteFriendReq{} }
|
|||||||
func (m *DeleteFriendReq) String() string { return proto.CompactTextString(m) }
|
func (m *DeleteFriendReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*DeleteFriendReq) ProtoMessage() {}
|
func (*DeleteFriendReq) ProtoMessage() {}
|
||||||
func (*DeleteFriendReq) Descriptor() ([]byte, []int) {
|
func (*DeleteFriendReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{20}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{20}
|
||||||
}
|
}
|
||||||
func (m *DeleteFriendReq) XXX_Unmarshal(b []byte) error {
|
func (m *DeleteFriendReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_DeleteFriendReq.Unmarshal(m, b)
|
return xxx_messageInfo_DeleteFriendReq.Unmarshal(m, b)
|
||||||
@ -928,7 +928,7 @@ func (m *DeleteFriendResp) Reset() { *m = DeleteFriendResp{} }
|
|||||||
func (m *DeleteFriendResp) String() string { return proto.CompactTextString(m) }
|
func (m *DeleteFriendResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*DeleteFriendResp) ProtoMessage() {}
|
func (*DeleteFriendResp) ProtoMessage() {}
|
||||||
func (*DeleteFriendResp) Descriptor() ([]byte, []int) {
|
func (*DeleteFriendResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{21}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{21}
|
||||||
}
|
}
|
||||||
func (m *DeleteFriendResp) XXX_Unmarshal(b []byte) error {
|
func (m *DeleteFriendResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_DeleteFriendResp.Unmarshal(m, b)
|
return xxx_messageInfo_DeleteFriendResp.Unmarshal(m, b)
|
||||||
@ -963,7 +963,7 @@ func (m *RespondFriendApplyReq) Reset() { *m = RespondFriendApplyReq{} }
|
|||||||
func (m *RespondFriendApplyReq) String() string { return proto.CompactTextString(m) }
|
func (m *RespondFriendApplyReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*RespondFriendApplyReq) ProtoMessage() {}
|
func (*RespondFriendApplyReq) ProtoMessage() {}
|
||||||
func (*RespondFriendApplyReq) Descriptor() ([]byte, []int) {
|
func (*RespondFriendApplyReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{22}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{22}
|
||||||
}
|
}
|
||||||
func (m *RespondFriendApplyReq) XXX_Unmarshal(b []byte) error {
|
func (m *RespondFriendApplyReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_RespondFriendApplyReq.Unmarshal(m, b)
|
return xxx_messageInfo_RespondFriendApplyReq.Unmarshal(m, b)
|
||||||
@ -1021,7 +1021,7 @@ func (m *RespondFriendApplyResp) Reset() { *m = RespondFriendApplyResp{}
|
|||||||
func (m *RespondFriendApplyResp) String() string { return proto.CompactTextString(m) }
|
func (m *RespondFriendApplyResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*RespondFriendApplyResp) ProtoMessage() {}
|
func (*RespondFriendApplyResp) ProtoMessage() {}
|
||||||
func (*RespondFriendApplyResp) Descriptor() ([]byte, []int) {
|
func (*RespondFriendApplyResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{23}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{23}
|
||||||
}
|
}
|
||||||
func (m *RespondFriendApplyResp) XXX_Unmarshal(b []byte) error {
|
func (m *RespondFriendApplyResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_RespondFriendApplyResp.Unmarshal(m, b)
|
return xxx_messageInfo_RespondFriendApplyResp.Unmarshal(m, b)
|
||||||
@ -1054,7 +1054,7 @@ func (m *SetFriendRemarkReq) Reset() { *m = SetFriendRemarkReq{} }
|
|||||||
func (m *SetFriendRemarkReq) String() string { return proto.CompactTextString(m) }
|
func (m *SetFriendRemarkReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*SetFriendRemarkReq) ProtoMessage() {}
|
func (*SetFriendRemarkReq) ProtoMessage() {}
|
||||||
func (*SetFriendRemarkReq) Descriptor() ([]byte, []int) {
|
func (*SetFriendRemarkReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{24}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{24}
|
||||||
}
|
}
|
||||||
func (m *SetFriendRemarkReq) XXX_Unmarshal(b []byte) error {
|
func (m *SetFriendRemarkReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_SetFriendRemarkReq.Unmarshal(m, b)
|
return xxx_messageInfo_SetFriendRemarkReq.Unmarshal(m, b)
|
||||||
@ -1105,7 +1105,7 @@ func (m *SetFriendRemarkResp) Reset() { *m = SetFriendRemarkResp{} }
|
|||||||
func (m *SetFriendRemarkResp) String() string { return proto.CompactTextString(m) }
|
func (m *SetFriendRemarkResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*SetFriendRemarkResp) ProtoMessage() {}
|
func (*SetFriendRemarkResp) ProtoMessage() {}
|
||||||
func (*SetFriendRemarkResp) Descriptor() ([]byte, []int) {
|
func (*SetFriendRemarkResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{25}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{25}
|
||||||
}
|
}
|
||||||
func (m *SetFriendRemarkResp) XXX_Unmarshal(b []byte) error {
|
func (m *SetFriendRemarkResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_SetFriendRemarkResp.Unmarshal(m, b)
|
return xxx_messageInfo_SetFriendRemarkResp.Unmarshal(m, b)
|
||||||
@ -1137,7 +1137,7 @@ func (m *GetFromFriendsApplyReq) Reset() { *m = GetFromFriendsApplyReq{}
|
|||||||
func (m *GetFromFriendsApplyReq) String() string { return proto.CompactTextString(m) }
|
func (m *GetFromFriendsApplyReq) String() string { return proto.CompactTextString(m) }
|
||||||
func (*GetFromFriendsApplyReq) ProtoMessage() {}
|
func (*GetFromFriendsApplyReq) ProtoMessage() {}
|
||||||
func (*GetFromFriendsApplyReq) Descriptor() ([]byte, []int) {
|
func (*GetFromFriendsApplyReq) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{26}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{26}
|
||||||
}
|
}
|
||||||
func (m *GetFromFriendsApplyReq) XXX_Unmarshal(b []byte) error {
|
func (m *GetFromFriendsApplyReq) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_GetFromFriendsApplyReq.Unmarshal(m, b)
|
return xxx_messageInfo_GetFromFriendsApplyReq.Unmarshal(m, b)
|
||||||
@ -1183,7 +1183,7 @@ func (m *GetFromFriendsApplyResp) Reset() { *m = GetFromFriendsApplyResp
|
|||||||
func (m *GetFromFriendsApplyResp) String() string { return proto.CompactTextString(m) }
|
func (m *GetFromFriendsApplyResp) String() string { return proto.CompactTextString(m) }
|
||||||
func (*GetFromFriendsApplyResp) ProtoMessage() {}
|
func (*GetFromFriendsApplyResp) ProtoMessage() {}
|
||||||
func (*GetFromFriendsApplyResp) Descriptor() ([]byte, []int) {
|
func (*GetFromFriendsApplyResp) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_friend_fcfb8eb4800a740c, []int{27}
|
return fileDescriptor_friend_a69e7413271cca0f, []int{27}
|
||||||
}
|
}
|
||||||
func (m *GetFromFriendsApplyResp) XXX_Unmarshal(b []byte) error {
|
func (m *GetFromFriendsApplyResp) XXX_Unmarshal(b []byte) error {
|
||||||
return xxx_messageInfo_GetFromFriendsApplyResp.Unmarshal(m, b)
|
return xxx_messageInfo_GetFromFriendsApplyResp.Unmarshal(m, b)
|
||||||
@ -1231,7 +1231,7 @@ func init() {
|
|||||||
proto.RegisterType((*AddBlackReq)(nil), "friend.addBlackReq")
|
proto.RegisterType((*AddBlackReq)(nil), "friend.addBlackReq")
|
||||||
proto.RegisterType((*AddBlackResp)(nil), "friend.addBlackResp")
|
proto.RegisterType((*AddBlackResp)(nil), "friend.addBlackResp")
|
||||||
proto.RegisterType((*RemoveBlackReq)(nil), "friend.removeBlackReq")
|
proto.RegisterType((*RemoveBlackReq)(nil), "friend.removeBlackReq")
|
||||||
proto.RegisterType((*RemoveBlackReqResp)(nil), "friend.removeBlackReqResp")
|
proto.RegisterType((*RemoveBlackResp)(nil), "friend.removeBlackResp")
|
||||||
proto.RegisterType((*GetBlacksReq)(nil), "friend.getBlacksReq")
|
proto.RegisterType((*GetBlacksReq)(nil), "friend.getBlacksReq")
|
||||||
proto.RegisterType((*GetBlacksResp)(nil), "friend.getBlacksResp")
|
proto.RegisterType((*GetBlacksResp)(nil), "friend.getBlacksResp")
|
||||||
proto.RegisterType((*IsFriendReq)(nil), "friend.isFriendReq")
|
proto.RegisterType((*IsFriendReq)(nil), "friend.isFriendReq")
|
||||||
@ -1270,7 +1270,7 @@ type FriendClient interface {
|
|||||||
// 添加黑名单
|
// 添加黑名单
|
||||||
AddBlack(ctx context.Context, in *AddBlackReq, opts ...grpc.CallOption) (*AddBlackResp, error)
|
AddBlack(ctx context.Context, in *AddBlackReq, opts ...grpc.CallOption) (*AddBlackResp, error)
|
||||||
// 移除黑名单
|
// 移除黑名单
|
||||||
RemoveBlack(ctx context.Context, in *RemoveBlackReq, opts ...grpc.CallOption) (*RemoveBlackReqResp, error)
|
RemoveBlack(ctx context.Context, in *RemoveBlackReq, opts ...grpc.CallOption) (*RemoveBlackResp, error)
|
||||||
// 判断是否好友关系
|
// 判断是否好友关系
|
||||||
IsFriend(ctx context.Context, in *IsFriendReq, opts ...grpc.CallOption) (*IsFriendResp, error)
|
IsFriend(ctx context.Context, in *IsFriendReq, opts ...grpc.CallOption) (*IsFriendResp, error)
|
||||||
// 判断是否在黑名单中
|
// 判断是否在黑名单中
|
||||||
@ -1342,8 +1342,8 @@ func (c *friendClient) AddBlack(ctx context.Context, in *AddBlackReq, opts ...gr
|
|||||||
return out, nil
|
return out, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *friendClient) RemoveBlack(ctx context.Context, in *RemoveBlackReq, opts ...grpc.CallOption) (*RemoveBlackReqResp, error) {
|
func (c *friendClient) RemoveBlack(ctx context.Context, in *RemoveBlackReq, opts ...grpc.CallOption) (*RemoveBlackResp, error) {
|
||||||
out := new(RemoveBlackReqResp)
|
out := new(RemoveBlackResp)
|
||||||
err := grpc.Invoke(ctx, "/friend.friend/removeBlack", in, out, c.cc, opts...)
|
err := grpc.Invoke(ctx, "/friend.friend/removeBlack", in, out, c.cc, opts...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@ -1437,7 +1437,7 @@ type FriendServer interface {
|
|||||||
// 添加黑名单
|
// 添加黑名单
|
||||||
AddBlack(context.Context, *AddBlackReq) (*AddBlackResp, error)
|
AddBlack(context.Context, *AddBlackReq) (*AddBlackResp, error)
|
||||||
// 移除黑名单
|
// 移除黑名单
|
||||||
RemoveBlack(context.Context, *RemoveBlackReq) (*RemoveBlackReqResp, error)
|
RemoveBlack(context.Context, *RemoveBlackReq) (*RemoveBlackResp, error)
|
||||||
// 判断是否好友关系
|
// 判断是否好友关系
|
||||||
IsFriend(context.Context, *IsFriendReq) (*IsFriendResp, error)
|
IsFriend(context.Context, *IsFriendReq) (*IsFriendResp, error)
|
||||||
// 判断是否在黑名单中
|
// 判断是否在黑名单中
|
||||||
@ -1777,66 +1777,65 @@ var _Friend_serviceDesc = grpc.ServiceDesc{
|
|||||||
Metadata: "friend/friend.proto",
|
Metadata: "friend/friend.proto",
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { proto.RegisterFile("friend/friend.proto", fileDescriptor_friend_fcfb8eb4800a740c) }
|
func init() { proto.RegisterFile("friend/friend.proto", fileDescriptor_friend_a69e7413271cca0f) }
|
||||||
|
|
||||||
var fileDescriptor_friend_fcfb8eb4800a740c = []byte{
|
var fileDescriptor_friend_a69e7413271cca0f = []byte{
|
||||||
// 917 bytes of a gzipped FileDescriptorProto
|
// 912 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xdb, 0x6e, 0xdb, 0x46,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xe1, 0x6e, 0xdb, 0x46,
|
||||||
0x10, 0x85, 0xe4, 0xda, 0xb1, 0x87, 0xb2, 0x9c, 0x8c, 0x2e, 0x51, 0xd9, 0xd8, 0x51, 0x16, 0x79,
|
0x0c, 0x86, 0x9d, 0x25, 0x4d, 0x28, 0xc7, 0x6e, 0xe9, 0xd8, 0xf5, 0xb4, 0x26, 0x75, 0x0f, 0xfd,
|
||||||
0x70, 0x0b, 0x44, 0x02, 0x54, 0x14, 0x28, 0x90, 0x87, 0x22, 0x42, 0x7a, 0x51, 0x51, 0x23, 0x2a,
|
0x91, 0x0d, 0x68, 0x0c, 0x64, 0x18, 0x30, 0xa0, 0xc0, 0x86, 0x06, 0x45, 0x37, 0x0f, 0x08, 0x96,
|
||||||
0x9d, 0xb6, 0x68, 0xf3, 0x20, 0xd0, 0xe1, 0x4a, 0x25, 0x44, 0x91, 0x6b, 0x0e, 0x25, 0x25, 0x1f,
|
0x29, 0xed, 0x86, 0x6d, 0x3f, 0x02, 0xa5, 0x3a, 0x7b, 0x42, 0x64, 0x89, 0x11, 0x95, 0xb8, 0x7d,
|
||||||
0xd2, 0x8f, 0xe9, 0xdf, 0x15, 0x5c, 0xde, 0x96, 0x14, 0x25, 0xb8, 0xa9, 0x9a, 0x27, 0x62, 0xcf,
|
0x90, 0xbd, 0xca, 0x9e, 0x6f, 0xd0, 0x9d, 0x2c, 0x9d, 0x6c, 0xd9, 0x68, 0x33, 0xaf, 0xbf, 0x04,
|
||||||
0xce, 0x65, 0x67, 0x76, 0x78, 0x66, 0x16, 0x1a, 0x53, 0xdf, 0xe6, 0xae, 0xd5, 0x8f, 0x3e, 0x3d,
|
0x92, 0x47, 0xf2, 0xc8, 0xe3, 0x7d, 0xdf, 0x09, 0xda, 0xa3, 0xd8, 0x97, 0xa1, 0x37, 0xd0, 0x9f,
|
||||||
0xe1, 0x7b, 0x81, 0x87, 0x47, 0xd1, 0x4a, 0xbf, 0x7c, 0x25, 0xb8, 0xfb, 0x6c, 0x74, 0xf5, 0xec,
|
0x23, 0x8a, 0xa3, 0x24, 0xc2, 0x2d, 0x2d, 0xd9, 0x87, 0x3f, 0x93, 0x0c, 0x9f, 0x0d, 0x4f, 0x9f,
|
||||||
0x9a, 0xfb, 0x2b, 0xee, 0xf7, 0xc5, 0x7c, 0xd6, 0x97, 0x12, 0x7d, 0xb2, 0xe6, 0x93, 0x35, 0xf5,
|
0x9d, 0xcb, 0xf8, 0x56, 0xc6, 0x03, 0xba, 0x1a, 0x0f, 0xd4, 0x8a, 0x01, 0x7b, 0x57, 0x17, 0x53,
|
||||||
0xd7, 0x14, 0x69, 0xb0, 0x37, 0xf0, 0x60, 0xc6, 0x83, 0xef, 0xa4, 0x1a, 0x8d, 0xdc, 0xa9, 0x67,
|
0x1e, 0x4c, 0x59, 0x7b, 0x88, 0x3f, 0xe1, 0xc1, 0x58, 0x26, 0xaf, 0x94, 0x1b, 0x0f, 0xc3, 0x51,
|
||||||
0xf0, 0x5b, 0xec, 0x82, 0xe6, 0xad, 0x5d, 0xee, 0xff, 0x42, 0xdc, 0x1f, 0xbd, 0xec, 0x54, 0xba,
|
0xe4, 0xc8, 0x6b, 0xec, 0x83, 0x15, 0x4d, 0x43, 0x19, 0xbf, 0x61, 0x19, 0x0f, 0x5f, 0xf6, 0x6a,
|
||||||
0x95, 0xcb, 0x13, 0x43, 0x85, 0xf0, 0x29, 0x9c, 0x46, 0xae, 0xa2, 0x35, 0x75, 0xaa, 0xdd, 0x83,
|
0xfd, 0xda, 0xe1, 0x8e, 0x63, 0xaa, 0xf0, 0x29, 0xec, 0xea, 0x54, 0x5a, 0xe6, 0x5e, 0xbd, 0xbf,
|
||||||
0xcb, 0x13, 0x23, 0x0f, 0xb2, 0x37, 0x80, 0x45, 0xe3, 0x24, 0xf0, 0x5b, 0xa8, 0x47, 0x50, 0x88,
|
0x71, 0xb8, 0xe3, 0x94, 0x95, 0xe2, 0x0d, 0xe0, 0x7c, 0x70, 0x26, 0xfc, 0x1e, 0xac, 0x51, 0xa1,
|
||||||
0xfc, 0x64, 0x53, 0xd0, 0xa9, 0x74, 0x0f, 0x2e, 0xb5, 0xc1, 0x79, 0x8f, 0xe4, 0x69, 0x27, 0xa6,
|
0xea, 0xd5, 0xfa, 0x1b, 0x87, 0xd6, 0xf1, 0xfe, 0x11, 0xab, 0xad, 0x5e, 0xb8, 0xe4, 0x5f, 0x90,
|
||||||
0xb0, 0x27, 0xc2, 0xf4, 0xcd, 0x05, 0xf5, 0x32, 0x41, 0xa3, 0xa0, 0xc4, 0x7c, 0xa8, 0x99, 0x96,
|
0x1b, 0xbb, 0x13, 0x3e, 0xd2, 0x8e, 0xca, 0xcf, 0xf4, 0x10, 0x31, 0x34, 0x5c, 0xcf, 0xd3, 0xd6,
|
||||||
0x15, 0x81, 0xe1, 0xa1, 0x2f, 0x00, 0xa6, 0xbe, 0xb7, 0xc8, 0x9d, 0x59, 0x41, 0x50, 0x87, 0xe3,
|
0x74, 0xbb, 0x07, 0x00, 0xa3, 0x38, 0x9a, 0x94, 0x76, 0x6b, 0x68, 0xd0, 0x86, 0xed, 0x24, 0xca,
|
||||||
0xc0, 0x8b, 0x77, 0xab, 0x72, 0x37, 0x5d, 0x63, 0x1b, 0x8e, 0x7c, 0x7e, 0x7b, 0x45, 0xb3, 0xce,
|
0xac, 0x75, 0x65, 0xcd, 0x65, 0xec, 0xc2, 0x56, 0x2c, 0xaf, 0x4f, 0x79, 0xdc, 0xdb, 0x50, 0x96,
|
||||||
0x81, 0xdc, 0x89, 0x57, 0x58, 0x87, 0x2a, 0x7f, 0xd7, 0xf9, 0x44, 0x62, 0x55, 0xfe, 0x8e, 0x9d,
|
0x4c, 0xc2, 0x26, 0xd4, 0xe5, 0xbb, 0xde, 0x67, 0x4a, 0x57, 0x97, 0xef, 0x44, 0x0b, 0x76, 0x8d,
|
||||||
0xc1, 0xa9, 0xe2, 0x93, 0x04, 0xfb, 0x1d, 0xce, 0xec, 0x85, 0xf0, 0xfc, 0x20, 0x3b, 0xc7, 0xbe,
|
0x9c, 0x4c, 0xe2, 0x77, 0x68, 0xf9, 0x13, 0x8a, 0xe2, 0xa4, 0xd8, 0xc7, 0xba, 0xda, 0x86, 0x70,
|
||||||
0x92, 0x87, 0x70, 0x3f, 0x6f, 0x9a, 0x04, 0x0b, 0xa0, 0x39, 0xe3, 0xc1, 0x6b, 0x2f, 0x4e, 0xe9,
|
0xbf, 0x1c, 0x9a, 0x49, 0x24, 0xb0, 0x37, 0x96, 0xc9, 0xeb, 0x28, 0x6b, 0xe6, 0x0b, 0xa2, 0xe0,
|
||||||
0x0b, 0x21, 0x9c, 0xf7, 0xa1, 0xcf, 0x36, 0x1c, 0x2d, 0x55, 0x77, 0xf1, 0x0a, 0x5f, 0x02, 0x08,
|
0x7d, 0x9a, 0xb3, 0x0b, 0x5b, 0x37, 0x66, 0xba, 0x4c, 0xc2, 0x97, 0x00, 0xe4, 0x8e, 0xfd, 0xd0,
|
||||||
0x73, 0x66, 0xbb, 0x66, 0x60, 0x7b, 0xae, 0x8c, 0x5a, 0x1b, 0x3c, 0x2d, 0x49, 0xb3, 0xc1, 0x6f,
|
0x4d, 0xfc, 0x28, 0x54, 0x55, 0x5b, 0xc7, 0x4f, 0x2b, 0x7a, 0xec, 0xc8, 0xeb, 0x1b, 0xc9, 0xc9,
|
||||||
0x97, 0x9c, 0x82, 0x71, 0x2a, 0x6b, 0x28, 0x7a, 0x6c, 0x0d, 0xad, 0x12, 0xaf, 0x24, 0xf0, 0x87,
|
0x59, 0xbe, 0xd6, 0x31, 0xfc, 0xc4, 0x14, 0x3a, 0x15, 0x59, 0x99, 0xf0, 0x47, 0x68, 0xe6, 0x75,
|
||||||
0xe4, 0x26, 0x63, 0x7d, 0x8a, 0x6f, 0xb2, 0xbb, 0xf5, 0x26, 0x63, 0x41, 0xa3, 0xa0, 0x87, 0x4d,
|
0xa7, 0xfe, 0x9c, 0x1d, 0x63, 0x7f, 0xe9, 0x31, 0x66, 0x0b, 0x9d, 0x39, 0x3f, 0xdc, 0x83, 0xcd,
|
||||||
0x38, 0x0c, 0xbc, 0xc0, 0x74, 0xe4, 0x19, 0x0f, 0x8d, 0x68, 0xc1, 0x16, 0x70, 0x9a, 0xd5, 0x4f,
|
0x24, 0x4a, 0xdc, 0x40, 0xed, 0x71, 0xd3, 0xd1, 0x82, 0x98, 0xc0, 0x6e, 0x31, 0x39, 0x69, 0x9d,
|
||||||
0x18, 0x67, 0x3e, 0x9e, 0xca, 0x87, 0xc5, 0xa3, 0x64, 0xab, 0xaa, 0x66, 0x8b, 0xcd, 0xa0, 0xae,
|
0xe5, 0x7a, 0x6a, 0x77, 0xab, 0xc7, 0xe8, 0x56, 0xdd, 0xec, 0x96, 0x18, 0x43, 0xd3, 0x4c, 0xa7,
|
||||||
0xba, 0x23, 0x81, 0xdf, 0x80, 0xa6, 0x54, 0xef, 0xdd, 0xea, 0x54, 0xd5, 0xd8, 0x12, 0xd7, 0xcf,
|
0x87, 0xf4, 0xd5, 0x47, 0x0f, 0xa9, 0xe1, 0xb1, 0xa4, 0xae, 0x5f, 0xc0, 0x72, 0x3d, 0xef, 0x24,
|
||||||
0xa0, 0x99, 0x96, 0x35, 0x74, 0xcc, 0xb7, 0xf3, 0xbb, 0x55, 0x4c, 0x17, 0xb4, 0x9b, 0x50, 0x3a,
|
0x70, 0xdf, 0x5e, 0x7d, 0xd8, 0xc4, 0xf4, 0xc1, 0xba, 0x4c, 0x57, 0x97, 0xc6, 0xd7, 0x54, 0x89,
|
||||||
0x57, 0xbe, 0x2a, 0xc4, 0xea, 0xf2, 0x6f, 0x88, 0x4d, 0x92, 0x60, 0xaf, 0xa1, 0xee, 0xf3, 0x85,
|
0xa6, 0xba, 0x0d, 0x59, 0x48, 0x26, 0xf1, 0x1a, 0x9a, 0xb1, 0x9c, 0x44, 0xb7, 0x72, 0xad, 0x59,
|
||||||
0xb7, 0xe2, 0x7b, 0xf5, 0xd2, 0x04, 0xcc, 0x5b, 0x95, 0xbe, 0x1c, 0xa8, 0xcd, 0x78, 0x20, 0x21,
|
0x1e, 0x40, 0xab, 0x14, 0x95, 0x49, 0x04, 0xd0, 0x18, 0xcb, 0x44, 0xc9, 0xfc, 0xff, 0x8f, 0x22,
|
||||||
0xfa, 0xff, 0xab, 0x71, 0x25, 0x8b, 0x22, 0xf1, 0x46, 0x02, 0x5f, 0xc1, 0x83, 0x61, 0x7a, 0xc6,
|
0xa9, 0x89, 0x98, 0x65, 0x63, 0xc2, 0x21, 0x34, 0xf3, 0x0d, 0x9a, 0x87, 0xf4, 0xa4, 0x22, 0xf4,
|
||||||
0x3c, 0xa5, 0x3c, 0x29, 0xb1, 0x3e, 0x5e, 0xde, 0x38, 0xf6, 0xdb, 0x44, 0xd8, 0xd8, 0xd4, 0xdd,
|
0xd9, 0xcd, 0x65, 0xe0, 0xbf, 0x55, 0xa5, 0xa4, 0x07, 0x35, 0xe7, 0xb8, 0xe4, 0xac, 0xce, 0xc1,
|
||||||
0x72, 0x69, 0xd7, 0xa0, 0xd9, 0xf4, 0x6f, 0x7e, 0x73, 0x06, 0x35, 0xf5, 0x8f, 0x8e, 0xf3, 0x99,
|
0xf2, 0xf9, 0x63, 0x6e, 0xb7, 0x80, 0x86, 0x79, 0x91, 0xb3, 0x36, 0x96, 0x74, 0xe2, 0x2b, 0x68,
|
||||||
0xc3, 0xd8, 0x17, 0x50, 0xcb, 0x8c, 0x92, 0x08, 0x49, 0xca, 0xe7, 0x24, 0x3c, 0x97, 0xb8, 0x34,
|
0x14, 0x41, 0x99, 0x52, 0x6c, 0x8a, 0x25, 0x53, 0x14, 0xb2, 0x54, 0x21, 0xb7, 0x9d, 0x5c, 0x16,
|
||||||
0x79, 0x6c, 0xa4, 0x6b, 0x36, 0x06, 0xb0, 0x69, 0xaf, 0xd7, 0xf9, 0x79, 0x18, 0x52, 0x5a, 0x33,
|
0x67, 0x00, 0x3e, 0xaf, 0xf5, 0x14, 0xbf, 0x4c, 0x4b, 0xca, 0x4f, 0x70, 0x65, 0xf2, 0xdf, 0xa0,
|
||||||
0x3b, 0x9d, 0xff, 0x06, 0x67, 0x16, 0x77, 0x78, 0xc0, 0xf7, 0x9d, 0x01, 0x84, 0xfb, 0x79, 0xc3,
|
0xe5, 0xc9, 0x40, 0x26, 0x72, 0xdd, 0x1d, 0x40, 0xb8, 0x5f, 0x0e, 0xcc, 0x24, 0xfe, 0xae, 0x41,
|
||||||
0x24, 0xd8, 0x5f, 0x15, 0x68, 0x45, 0x9e, 0x63, 0xae, 0x4d, 0x89, 0xee, 0xbf, 0x90, 0x3c, 0x83,
|
0x47, 0x67, 0xce, 0x20, 0x36, 0xc7, 0xb7, 0xff, 0x82, 0xed, 0x02, 0x1a, 0x7f, 0xb9, 0xa1, 0x17,
|
||||||
0xda, 0x9f, 0xa6, 0x6b, 0x39, 0xdc, 0xe0, 0xb4, 0x74, 0x02, 0x49, 0xf5, 0x87, 0x46, 0x0e, 0xc3,
|
0x48, 0x47, 0xf2, 0x4d, 0x90, 0x28, 0x84, 0xdf, 0x74, 0x4a, 0x3a, 0x7c, 0x04, 0x3b, 0x5a, 0x4e,
|
||||||
0x47, 0x70, 0x12, 0xad, 0xc3, 0x5e, 0x10, 0xf1, 0x7e, 0x06, 0xb0, 0x0e, 0xb4, 0xcb, 0x8e, 0x45,
|
0x29, 0x40, 0xc3, 0x7d, 0xa1, 0x10, 0x3d, 0xe8, 0x56, 0x6d, 0x8b, 0x49, 0xc4, 0x80, 0x2c, 0x73,
|
||||||
0x82, 0xf9, 0x80, 0xc4, 0x53, 0xa6, 0x5e, 0x98, 0xfe, 0x7c, 0x6f, 0x19, 0x8a, 0x9a, 0x53, 0x68,
|
0x80, 0x9e, 0xb8, 0xf1, 0xd5, 0xda, 0x3a, 0xa4, 0x39, 0x29, 0x0d, 0x59, 0x70, 0x52, 0x2a, 0x89,
|
||||||
0x32, 0x6b, 0x4e, 0xe1, 0x8a, 0xb5, 0xa0, 0xb1, 0xe1, 0x93, 0x04, 0x5b, 0x41, 0x5b, 0xb2, 0x98,
|
0x0e, 0xb4, 0x17, 0x72, 0x32, 0x89, 0x5b, 0xe8, 0x2a, 0xf0, 0x8a, 0x26, 0x9f, 0x96, 0x1c, 0xde,
|
||||||
0xb7, 0xf8, 0xb8, 0x5d, 0xe2, 0x3d, 0x3c, 0x2c, 0xf5, 0x1b, 0xf5, 0x89, 0xe9, 0x07, 0xf6, 0x89,
|
0xc3, 0xc3, 0xca, 0xbc, 0x9a, 0x1e, 0x46, 0x77, 0xa4, 0x87, 0xd1, 0x07, 0xd0, 0xc3, 0xf1, 0x3f,
|
||||||
0xe9, 0x1d, 0xfa, 0xc4, 0xe0, 0xef, 0x7b, 0x10, 0x4f, 0x3e, 0xf8, 0x35, 0x9c, 0xa4, 0x1d, 0x1a,
|
0xf7, 0x20, 0x7b, 0xea, 0xe0, 0xb7, 0xb0, 0x93, 0x13, 0x33, 0xee, 0x1d, 0x65, 0xcf, 0x21, 0xf3,
|
||||||
0x9b, 0xbd, 0x78, 0x3a, 0x52, 0x07, 0x05, 0xbd, 0x55, 0x82, 0x92, 0xc0, 0xb1, 0x9c, 0x84, 0xf2,
|
0x7d, 0x60, 0x77, 0x2a, 0xb4, 0x4c, 0x78, 0xa6, 0x9e, 0x3e, 0x65, 0x72, 0xc3, 0x47, 0xb3, 0xb5,
|
||||||
0x5d, 0x0e, 0x1f, 0x25, 0xb2, 0x65, 0x6d, 0x57, 0x3f, 0xdf, 0xb1, 0x4b, 0x02, 0x7f, 0x85, 0x46,
|
0x55, 0x6c, 0x6b, 0xef, 0xaf, 0xb0, 0x32, 0xe1, 0xaf, 0xd0, 0xae, 0xe8, 0x08, 0x1e, 0x18, 0x5e,
|
||||||
0x49, 0x46, 0xf0, 0x42, 0xd1, 0x2a, 0xb9, 0x26, 0xfd, 0xf1, 0xce, 0x7d, 0x12, 0xf8, 0x1c, 0x20,
|
0x15, 0xc7, 0x64, 0x3f, 0x5e, 0x69, 0x67, 0xc2, 0xe7, 0x00, 0x05, 0x3d, 0x61, 0xa7, 0xb4, 0x7c,
|
||||||
0xeb, 0x53, 0xd8, 0xca, 0x89, 0x27, 0xad, 0x52, 0x6f, 0x97, 0xc1, 0x24, 0xf0, 0x2b, 0x38, 0x4e,
|
0xc6, 0x90, 0x76, 0xb7, 0x4a, 0xcd, 0x84, 0xdf, 0xc0, 0xf6, 0x8c, 0x1f, 0xb0, 0x6d, 0x74, 0x62,
|
||||||
0x1a, 0x05, 0x36, 0x94, 0x4c, 0x24, 0xc4, 0xa2, 0x37, 0x37, 0x41, 0x12, 0xf8, 0x02, 0x34, 0x85,
|
0x06, 0x2c, 0xf6, 0xde, 0xa2, 0x92, 0x09, 0xbf, 0x03, 0xcb, 0x00, 0x7c, 0xcc, 0xa3, 0x97, 0xb9,
|
||||||
0xf9, 0x31, 0xb5, 0x9e, 0x6f, 0x07, 0xba, 0x5e, 0x8e, 0x27, 0x9e, 0x13, 0xae, 0xcb, 0x3c, 0x2b,
|
0xc5, 0x7e, 0x58, 0xa9, 0xd7, 0x69, 0x67, 0x40, 0x57, 0xa4, 0x35, 0xf0, 0xb4, 0x48, 0x5b, 0xc2,
|
||||||
0x94, 0x9a, 0x79, 0xce, 0x51, 0xe2, 0x00, 0xee, 0xc5, 0x24, 0x85, 0x98, 0x09, 0xa4, 0x1e, 0x1b,
|
0xc3, 0x63, 0xb8, 0x97, 0x21, 0x14, 0x62, 0xb1, 0x20, 0x4f, 0xd7, 0x5e, 0xd0, 0x31, 0xa5, 0x23,
|
||||||
0x1b, 0x18, 0x89, 0xb0, 0x0a, 0xd2, 0x1e, 0x91, 0x55, 0x81, 0xda, 0xa4, 0xf4, 0x56, 0x09, 0x2a,
|
0x90, 0x53, 0x43, 0x31, 0x02, 0x26, 0x37, 0xd9, 0x9d, 0x0a, 0x2d, 0x13, 0xbe, 0x80, 0x86, 0x89,
|
||||||
0xe3, 0xac, 0xa9, 0x74, 0x84, 0x0f, 0x13, 0xb1, 0x02, 0xfb, 0xe9, 0x9d, 0xf2, 0x0d, 0x12, 0x78,
|
0x45, 0x98, 0x57, 0x33, 0x07, 0x7d, 0x76, 0xaf, 0xda, 0xc0, 0x84, 0xe7, 0x80, 0x8b, 0x10, 0x81,
|
||||||
0x1d, 0x36, 0xc9, 0x22, 0x4b, 0xe0, 0x79, 0x96, 0x99, 0x12, 0x62, 0xd3, 0x2f, 0x76, 0x6d, 0x93,
|
0xfb, 0x45, 0x5b, 0x2a, 0x50, 0xcd, 0x3e, 0x58, 0x65, 0x66, 0xc2, 0x9f, 0xa0, 0x35, 0x77, 0xd3,
|
||||||
0xc0, 0x1f, 0xe1, 0xac, 0xf0, 0xb3, 0x63, 0x9a, 0xeb, 0x4d, 0xe6, 0xd1, 0x3f, 0xdb, 0xba, 0x47,
|
0xd1, 0x9e, 0xb9, 0x2c, 0xc2, 0x8e, 0xfd, 0xc5, 0x52, 0x1b, 0x13, 0x9e, 0xc0, 0xae, 0xf9, 0x9a,
|
||||||
0x02, 0x87, 0x70, 0xaa, 0x4e, 0x96, 0x94, 0x05, 0x59, 0x98, 0x65, 0xb3, 0x20, 0x8b, 0x93, 0x28,
|
0xe4, 0xa2, 0xc8, 0xb9, 0xf7, 0x6b, 0x51, 0xe4, 0xfc, 0xeb, 0x13, 0x7f, 0x30, 0xdf, 0x47, 0x8a,
|
||||||
0x7e, 0xaf, 0xce, 0x4a, 0x72, 0xd4, 0xf9, 0x74, 0xb3, 0xe0, 0xe2, 0xf7, 0x44, 0x56, 0x15, 0x9b,
|
0x32, 0x3f, 0x5f, 0x9c, 0xb6, 0xec, 0xef, 0xc1, 0xb6, 0x97, 0x99, 0x98, 0x4e, 0x9e, 0xfc, 0xf1,
|
||||||
0xaf, 0x81, 0xe1, 0x93, 0x3f, 0x1e, 0x87, 0x8f, 0x95, 0xc9, 0xe8, 0x4a, 0x79, 0xa5, 0x44, 0xe2,
|
0x38, 0xfd, 0x35, 0xb9, 0x18, 0x9e, 0x1a, 0xff, 0x24, 0x7a, 0xf9, 0x73, 0xfd, 0xb9, 0xdc, 0x52,
|
||||||
0xcf, 0xa3, 0xcf, 0xcd, 0x91, 0x04, 0xbf, 0xfc, 0x27, 0x00, 0x00, 0xff, 0xff, 0x05, 0x4c, 0x24,
|
0xca, 0xaf, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xf3, 0x1f, 0x6f, 0xae, 0xe1, 0x0c, 0x00, 0x00,
|
||||||
0x27, 0xf3, 0x0c, 0x00, 0x00,
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user