From 8764be74616bde87bbbf6c32901cd9f43264d1e0 Mon Sep 17 00:00:00 2001 From: Ivanik Date: Fri, 29 Jan 2021 04:25:14 +0500 Subject: Add vk bridge (#1372) * Add vk bridge * Vk bridge attachments * Vk bridge forwarded messages * Vk bridge sample config and code cleanup * Vk bridge add vendor * Vk bridge message edit * Vk bridge: fix fetching names of other bots * Vk bridge: code cleanup * Vk bridge: fix shadows declaration * Vk bridge: remove UseFileURL --- .../SevereCloud/vksdk/v2/object/friends.go | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 vendor/github.com/SevereCloud/vksdk/v2/object/friends.go (limited to 'vendor/github.com/SevereCloud/vksdk/v2/object/friends.go') diff --git a/vendor/github.com/SevereCloud/vksdk/v2/object/friends.go b/vendor/github.com/SevereCloud/vksdk/v2/object/friends.go new file mode 100644 index 00000000..4f6866c3 --- /dev/null +++ b/vendor/github.com/SevereCloud/vksdk/v2/object/friends.go @@ -0,0 +1,63 @@ +package object // import "github.com/SevereCloud/vksdk/v2/object" + +// FriendsFriendStatus FriendStatus type. +const ( + FriendsStatusNotFriend = iota // not a friend + FriendsStatusOutComingRequest // out coming request + FriendsStatusInComingRequest // incoming request + FriendsStatusIsFriend // is friend +) + +// FriendsFriendStatus struct. +type FriendsFriendStatus struct { + FriendStatus int `json:"friend_status"` + ReadState BaseBoolInt `json:"read_state"` // Information whether request is unviewed + RequestMessage string `json:"request_message"` // Message sent with request + Sign string `json:"sign"` // MD5 hash for the result validation + UserID int `json:"user_id"` // User ID +} + +// FriendsFriendsList struct. +type FriendsFriendsList struct { + ID int `json:"id"` // List ID + Name string `json:"name"` // List title +} + +// type friendsMutualFriend struct { +// CommonCount int `json:"common_count"` // Total mutual friends number +// CommonFriends []int `json:"common_friends"` +// ID int `json:"id"` // User ID +// } + +// FriendsRequests struct. +type FriendsRequests struct { + UsersUser + From string `json:"from"` // ID of the user by whom friend has been suggested + Mutual FriendsRequestsMutual `json:"mutual"` + UserID int `json:"user_id"` // User ID + TrackCode string `json:"track_code"` +} + +// FriendsRequestsMutual struct. +type FriendsRequestsMutual struct { + Count int `json:"count"` // Total mutual friends number + Users []int `json:"users"` +} + +// FriendsRequestsXtrMessage struct. +type FriendsRequestsXtrMessage struct { + FriendsRequests + Message string `json:"message"` // Message sent with a request +} + +// FriendsUserXtrLists struct. +type FriendsUserXtrLists struct { + UsersUser + Lists []int `json:"lists"` // IDs of friend lists with user +} + +// FriendsUserXtrPhone struct. +type FriendsUserXtrPhone struct { + UsersUser + Phone string `json:"phone"` // User phone +} -- cgit v1.2.3