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 --- .../github.com/SevereCloud/vksdk/v2/api/likes.go | 79 ++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 vendor/github.com/SevereCloud/vksdk/v2/api/likes.go (limited to 'vendor/github.com/SevereCloud/vksdk/v2/api/likes.go') diff --git a/vendor/github.com/SevereCloud/vksdk/v2/api/likes.go b/vendor/github.com/SevereCloud/vksdk/v2/api/likes.go new file mode 100644 index 00000000..047c2935 --- /dev/null +++ b/vendor/github.com/SevereCloud/vksdk/v2/api/likes.go @@ -0,0 +1,79 @@ +package api // import "github.com/SevereCloud/vksdk/v2/api" + +import ( + "github.com/SevereCloud/vksdk/v2/object" +) + +// LikesAddResponse struct. +type LikesAddResponse struct { + Likes int `json:"likes"` +} + +// LikesAdd adds the specified object to the Likes list of the current user. +// +// https://vk.com/dev/likes.add +func (vk *VK) LikesAdd(params Params) (response LikesAddResponse, err error) { + err = vk.RequestUnmarshal("likes.add", &response, params) + return +} + +// LikesDeleteResponse struct. +type LikesDeleteResponse struct { + Likes int `json:"likes"` +} + +// LikesDelete deletes the specified object from the Likes list of the current user. +// +// https://vk.com/dev/likes.delete +func (vk *VK) LikesDelete(params Params) (response LikesDeleteResponse, err error) { + err = vk.RequestUnmarshal("likes.delete", &response, params) + return +} + +// LikesGetListResponse struct. +type LikesGetListResponse struct { + Count int `json:"count"` + Items []int `json:"items"` +} + +// LikesGetList likes.getList returns a list of IDs of users who added the specified object to their Likes list. +// +// extended=0 +// +// https://vk.com/dev/likes.getList +func (vk *VK) LikesGetList(params Params) (response LikesGetListResponse, err error) { + err = vk.RequestUnmarshal("likes.getList", &response, params, Params{"extended": false}) + + return +} + +// LikesGetListExtendedResponse struct. +type LikesGetListExtendedResponse struct { + Count int `json:"count"` + Items []object.UsersUser `json:"items"` +} + +// LikesGetListExtended likes.getList returns a list of IDs of users who added the specified object to their Likes list. +// +// extended=1 +// +// https://vk.com/dev/likes.getList +func (vk *VK) LikesGetListExtended(params Params) (response LikesGetListExtendedResponse, err error) { + err = vk.RequestUnmarshal("likes.getList", &response, params, Params{"extended": true}) + + return +} + +// LikesIsLikedResponse struct. +type LikesIsLikedResponse struct { + Liked object.BaseBoolInt `json:"liked"` + Copied object.BaseBoolInt `json:"copied"` +} + +// LikesIsLiked checks for the object in the Likes list of the specified user. +// +// https://vk.com/dev/likes.isLiked +func (vk *VK) LikesIsLiked(params Params) (response LikesIsLikedResponse, err error) { + err = vk.RequestUnmarshal("likes.isLiked", &response, params) + return +} -- cgit v1.2.3