mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 12:10:26 +00:00
5a1fd7dadd
Bumps [github.com/SevereCloud/vksdk/v2](https://github.com/SevereCloud/vksdk) from 2.11.0 to 2.13.0. - [Release notes](https://github.com/SevereCloud/vksdk/releases) - [Commits](https://github.com/SevereCloud/vksdk/compare/v2.11.0...v2.13.0) --- updated-dependencies: - dependency-name: github.com/SevereCloud/vksdk/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
122 lines
3.9 KiB
Go
122 lines
3.9 KiB
Go
package api // import "github.com/SevereCloud/vksdk/v2/api"
|
|
|
|
import (
|
|
"github.com/SevereCloud/vksdk/v2/object"
|
|
"github.com/vmihailenco/msgpack/v5"
|
|
)
|
|
|
|
// UtilsCheckLinkResponse struct.
|
|
type UtilsCheckLinkResponse object.UtilsLinkChecked
|
|
|
|
// UtilsCheckLink checks whether a link is blocked in VK.
|
|
//
|
|
// https://vk.com/dev/utils.checkLink
|
|
func (vk *VK) UtilsCheckLink(params Params) (response UtilsCheckLinkResponse, err error) {
|
|
err = vk.RequestUnmarshal("utils.checkLink", &response, params)
|
|
return
|
|
}
|
|
|
|
// UtilsDeleteFromLastShortened deletes shortened link from user's list.
|
|
//
|
|
// https://vk.com/dev/utils.deleteFromLastShortened
|
|
func (vk *VK) UtilsDeleteFromLastShortened(params Params) (response int, err error) {
|
|
err = vk.RequestUnmarshal("utils.deleteFromLastShortened", &response, params)
|
|
return
|
|
}
|
|
|
|
// UtilsGetLastShortenedLinksResponse struct.
|
|
type UtilsGetLastShortenedLinksResponse struct {
|
|
Count int `json:"count"`
|
|
Items []object.UtilsLastShortenedLink `json:"items"`
|
|
}
|
|
|
|
// UtilsGetLastShortenedLinks returns a list of user's shortened links.
|
|
//
|
|
// https://vk.com/dev/utils.getLastShortenedLinks
|
|
func (vk *VK) UtilsGetLastShortenedLinks(params Params) (response UtilsGetLastShortenedLinksResponse, err error) {
|
|
err = vk.RequestUnmarshal("utils.getLastShortenedLinks", &response, params)
|
|
return
|
|
}
|
|
|
|
// UtilsGetLinkStatsResponse struct.
|
|
type UtilsGetLinkStatsResponse object.UtilsLinkStats
|
|
|
|
// UtilsGetLinkStats returns stats data for shortened link.
|
|
//
|
|
// extended=0
|
|
//
|
|
// https://vk.com/dev/utils.getLinkStats
|
|
func (vk *VK) UtilsGetLinkStats(params Params) (response UtilsGetLinkStatsResponse, err error) {
|
|
err = vk.RequestUnmarshal("utils.getLinkStats", &response, params, Params{"extended": false})
|
|
|
|
return
|
|
}
|
|
|
|
// UtilsGetLinkStatsExtendedResponse struct.
|
|
type UtilsGetLinkStatsExtendedResponse object.UtilsLinkStatsExtended
|
|
|
|
// UtilsGetLinkStatsExtended returns stats data for shortened link.
|
|
//
|
|
// extended=1
|
|
//
|
|
// https://vk.com/dev/utils.getLinkStats
|
|
func (vk *VK) UtilsGetLinkStatsExtended(params Params) (response UtilsGetLinkStatsExtendedResponse, err error) {
|
|
err = vk.RequestUnmarshal("utils.getLinkStats", &response, params, Params{"extended": true})
|
|
|
|
return
|
|
}
|
|
|
|
// UtilsGetServerTime returns the current time of the VK server.
|
|
//
|
|
// https://vk.com/dev/utils.getServerTime
|
|
func (vk *VK) UtilsGetServerTime(params Params) (response int, err error) {
|
|
err = vk.RequestUnmarshal("utils.getServerTime", &response, params)
|
|
return
|
|
}
|
|
|
|
// UtilsGetShortLinkResponse struct.
|
|
type UtilsGetShortLinkResponse object.UtilsShortLink
|
|
|
|
// UtilsGetShortLink allows to receive a link shortened via vk.cc.
|
|
//
|
|
// https://vk.com/dev/utils.getShortLink
|
|
func (vk *VK) UtilsGetShortLink(params Params) (response UtilsGetShortLinkResponse, err error) {
|
|
err = vk.RequestUnmarshal("utils.getShortLink", &response, params)
|
|
return
|
|
}
|
|
|
|
// UtilsResolveScreenNameResponse struct.
|
|
type UtilsResolveScreenNameResponse object.UtilsDomainResolved
|
|
|
|
// UnmarshalJSON UtilsResolveScreenNameResponse.
|
|
//
|
|
// BUG(VK): UtilsResolveScreenNameResponse return [].
|
|
func (resp *UtilsResolveScreenNameResponse) UnmarshalJSON(data []byte) error {
|
|
var p object.UtilsDomainResolved
|
|
err := p.UnmarshalJSON(data)
|
|
|
|
*resp = UtilsResolveScreenNameResponse(p)
|
|
|
|
return err
|
|
}
|
|
|
|
// DecodeMsgpack UtilsResolveScreenNameResponse.
|
|
//
|
|
// BUG(VK): UtilsResolveScreenNameResponse return [].
|
|
func (resp *UtilsResolveScreenNameResponse) DecodeMsgpack(dec *msgpack.Decoder) error {
|
|
var p object.UtilsDomainResolved
|
|
err := p.DecodeMsgpack(dec)
|
|
|
|
*resp = UtilsResolveScreenNameResponse(p)
|
|
|
|
return err
|
|
}
|
|
|
|
// UtilsResolveScreenName detects a type of object (e.g., user, community, application) and its ID by screen name.
|
|
//
|
|
// https://vk.com/dev/utils.resolveScreenName
|
|
func (vk *VK) UtilsResolveScreenName(params Params) (response UtilsResolveScreenNameResponse, err error) {
|
|
err = vk.RequestUnmarshal("utils.resolveScreenName", &response, params)
|
|
return
|
|
}
|