-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
newsfeed.go
233 lines (205 loc) · 8.13 KB
/
newsfeed.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
package api // import "github.com/SevereCloud/vksdk/5.92/api"
import (
"github.com/SevereCloud/vksdk/5.92/object"
)
// NewsfeedAddBan prevents news from specified users and communities
// from appearing in the current user's newsfeed.
//
// https://vk.com/dev/newsfeed.addBan
func (vk *VK) NewsfeedAddBan(params map[string]string) (response int, vkErr Error) {
vk.RequestUnmarshal("newsfeed.addBan", params, &response, &vkErr)
return
}
// NewsfeedDeleteBan allows news from previously banned users and
// communities to be shown in the current user's newsfeed.
//
// https://vk.com/dev/newsfeed.deleteBan
func (vk *VK) NewsfeedDeleteBan(params map[string]string) (response int, vkErr Error) {
vk.RequestUnmarshal("newsfeed.deleteBan", params, &response, &vkErr)
return
}
// NewsfeedDeleteList The method allows you to delete a custom news list.
//
// https://vk.com/dev/newsfeed.deleteList
func (vk *VK) NewsfeedDeleteList(params map[string]string) (response int, vkErr Error) {
vk.RequestUnmarshal("newsfeed.deleteList", params, &response, &vkErr)
return
}
// NewsfeedGetResponse struct
type NewsfeedGetResponse struct {
Items []object.NewsfeedNewsfeedItem `json:"items"`
Profiles []object.UsersUser `json:"profiles"`
Groups []object.GroupsGroup `json:"groups"`
NextFrom string `json:"next_from"`
}
// NewsfeedGet returns data required to show newsfeed for the current user.
//
// https://vk.com/dev/newsfeed.get
func (vk *VK) NewsfeedGet(params map[string]string) (response NewsfeedGetResponse, vkErr Error) {
vk.RequestUnmarshal("newsfeed.get", params, &response, &vkErr)
return
}
// NewsfeedGetBannedResponse struct
type NewsfeedGetBannedResponse struct {
Members []int `json:"members"`
Groups []int `json:"groups"`
}
// NewsfeedGetBanned returns a list of users and communities banned from the current user's newsfeed.
//
// extended=0
//
// https://vk.com/dev/newsfeed.getBanned
func (vk *VK) NewsfeedGetBanned(params map[string]string) (response NewsfeedGetBannedResponse, vkErr Error) {
params["extended"] = "0"
vk.RequestUnmarshal("newsfeed.getBanned", params, &response, &vkErr)
return
}
// NewsfeedGetBannedExtendedResponse struct
type NewsfeedGetBannedExtendedResponse struct {
Profiles []object.UsersUser `json:"profiles"`
Groups []object.GroupsGroup `json:"groups"`
}
// NewsfeedGetBannedExtended returns a list of users and communities banned from the current user's newsfeed.
//
// extended=1
//
// https://vk.com/dev/newsfeed.getBanned
func (vk *VK) NewsfeedGetBannedExtended(params map[string]string) (response NewsfeedGetBannedExtendedResponse, vkErr Error) {
params["extended"] = "1"
vk.RequestUnmarshal("newsfeed.getBanned", params, &response, &vkErr)
return
}
// NewsfeedGetCommentsResponse struct
type NewsfeedGetCommentsResponse struct {
Items []object.NewsfeedNewsfeedItem `json:"items"`
Profiles []object.UsersUser `json:"profiles"`
Groups []object.GroupsGroup `json:"groups"`
NextFrom string `json:"next_from"`
}
// NewsfeedGetComments returns a list of comments in the current user's newsfeed.
//
// https://vk.com/dev/newsfeed.getComments
func (vk *VK) NewsfeedGetComments(params map[string]string) (response NewsfeedGetCommentsResponse, vkErr Error) {
vk.RequestUnmarshal("newsfeed.getComments", params, &response, &vkErr)
return
}
// NewsfeedGetListsResponse struct
type NewsfeedGetListsResponse struct {
Count int `json:"count"`
Items []struct {
ID int `json:"id"`
Title string `json:"title"`
NoReposts int `json:"no_reposts"`
SourceIds []int `json:"source_ids"`
} `json:"items"`
}
// NewsfeedGetLists returns a list of newsfeeds followed by the current user.
//
// https://vk.com/dev/newsfeed.getLists
func (vk *VK) NewsfeedGetLists(params map[string]string) (response NewsfeedGetListsResponse, vkErr Error) {
vk.RequestUnmarshal("newsfeed.getLists", params, &response, &vkErr)
return
}
// NewsfeedGetMentionsResponse struct
type NewsfeedGetMentionsResponse struct {
Count int `json:"count"`
Items []object.WallWallpostToID `json:"items"`
}
// NewsfeedGetMentions returns a list of posts on user walls in which the current user is mentioned.
//
// https://vk.com/dev/newsfeed.getMentions
func (vk *VK) NewsfeedGetMentions(params map[string]string) (response NewsfeedGetMentionsResponse, vkErr Error) {
vk.RequestUnmarshal("newsfeed.getMentions", params, &response, &vkErr)
return
}
// NewsfeedGetRecommendedResponse struct
type NewsfeedGetRecommendedResponse struct {
Items []object.NewsfeedNewsfeedItem `json:"items"`
Profiles []object.UsersUser `json:"profiles"`
Groups []object.GroupsGroup `json:"groups"`
NextOffset string `json:"next_offset"`
NextFrom string `json:"next_from"`
}
// NewsfeedGetRecommended returns a list of newsfeeds recommended to the current user.
//
// https://vk.com/dev/newsfeed.getRecommended
func (vk *VK) NewsfeedGetRecommended(params map[string]string) (response NewsfeedGetRecommendedResponse, vkErr Error) {
vk.RequestUnmarshal("newsfeed.getRecommended", params, &response, &vkErr)
return
}
// NewsfeedGetSuggestedSourcesResponse struct
type NewsfeedGetSuggestedSourcesResponse struct {
Count int `json:"count"`
Items []object.GroupsGroup `json:"items"` // FIXME: GroupsGroup + UsersUser
}
// NewsfeedGetSuggestedSources returns communities and users that current user is suggested to follow.
//
// https://vk.com/dev/newsfeed.getSuggestedSources
func (vk *VK) NewsfeedGetSuggestedSources(params map[string]string) (response NewsfeedGetSuggestedSourcesResponse, vkErr Error) {
vk.RequestUnmarshal("newsfeed.getSuggestedSources", params, &response, &vkErr)
return
}
// NewsfeedIgnoreItemHides an item from the newsfeed.
//
// https://vk.com/dev/newsfeed.ignoreItemHides
func (vk *VK) NewsfeedIgnoreItemHides(params map[string]string) (response int, vkErr Error) {
vk.RequestUnmarshal("newsfeed.ignoreItemHides", params, &response, &vkErr)
return
}
// NewsfeedSaveList creates and edits user newsfeed lists
//
// https://vk.com/dev/newsfeed.saveList
func (vk *VK) NewsfeedSaveList(params map[string]string) (response int, vkErr Error) {
vk.RequestUnmarshal("newsfeed.saveList", params, &response, &vkErr)
return
}
// NewsfeedSearchResponse struct
type NewsfeedSearchResponse struct {
Items []object.WallWallpost `json:"items"`
Count int `json:"count"`
TotalCount int `json:"total_count"`
NextFrom string `json:"next_from"`
}
// NewsfeedSearch returns search results by statuses.
//
// extended=0
//
// https://vk.com/dev/newsfeed.search
func (vk *VK) NewsfeedSearch(params map[string]string) (response NewsfeedSearchResponse, vkErr Error) {
params["extended"] = "0"
vk.RequestUnmarshal("newsfeed.search", params, &response, &vkErr)
return
}
// NewsfeedSearchExtendedResponse struct
type NewsfeedSearchExtendedResponse struct {
Items []object.WallWallpost `json:"items"`
Count int `json:"count"`
TotalCount int `json:"total_count"`
Profiles []object.UsersUser `json:"profiles"`
Groups []object.GroupsGroup `json:"groups"`
NextFrom string `json:"next_from"`
}
// NewsfeedSearchExtended returns search results by statuses.
//
// extended=1
//
// https://vk.com/dev/newsfeed.search
func (vk *VK) NewsfeedSearchExtended(params map[string]string) (response NewsfeedSearchExtendedResponse, vkErr Error) {
params["extended"] = "1"
vk.RequestUnmarshal("newsfeed.search", params, &response, &vkErr)
return
}
// NewsfeedUnignoreItem returns a hidden item to the newsfeed.
//
// https://vk.com/dev/newsfeed.unignoreItem
func (vk *VK) NewsfeedUnignoreItem(params map[string]string) (response int, vkErr Error) {
vk.RequestUnmarshal("newsfeed.unignoreItem", params, &response, &vkErr)
return
}
// NewsfeedUnsubscribe unsubscribes the current user from specified newsfeeds.
//
// https://vk.com/dev/newsfeed.unsubscribe
func (vk *VK) NewsfeedUnsubscribe(params map[string]string) (response int, vkErr Error) {
vk.RequestUnmarshal("newsfeed.unsubscribe", params, &response, &vkErr)
return
}