-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfriends.go
456 lines (392 loc) · 16.4 KB
/
friends.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
package vkapi
// ============
// FriendsAdd
// ============
// FriendsAddParams параметры метода FriendsAdd.
type FriendsAddParams struct {
UserID uint
Text string
Follow bool
}
// FriendsAdd одобряет или создает заявку на добавление в друзья. Если идентификатор выбранного пользователя присутствует в списке заявок на добавление в друзья, полученном методом friends.getrequests, то одобряет заявку на добавление и добавляет выбранного пользователя в друзья к текущему пользователю. В противном случае создает заявку на добавление в друзья текущего пользователя к выбранному пользователю.
func (api *API) FriendsAdd(p FriendsAddParams) (int, error) {
resp, err := api.Request("friends.add", p, new(int))
if err != nil {
return 0, err
}
return resp.(int), nil
}
// ================
// FriendsAddList
// ================
// FriendsAddListParams параметры метода FriendsAddList.
type FriendsAddListParams struct {
Name string
UserIDS []int
}
// FriendsAddListResp структура, возвращаемая методом FriendsAddList.
type FriendsAddListResp struct {
ListID int `json:"list_id"`
}
// FriendsAddList создает новый список друзей у текущего пользователя.
func (api *API) FriendsAddList(p FriendsAddListParams) (*FriendsAddListResp, error) {
resp, err := api.Request("friends.addList", p, new(FriendsAddListResp))
if err != nil {
return nil, err
}
return resp.(*FriendsAddListResp), nil
}
// ===================
// FriendsAreFriends
// ===================
// FriendsAreFriendsParams параметры метода FriendsAreFriends.
type FriendsAreFriendsParams struct {
UserIDS []int
NeedSign bool
}
// FriendsAreFriendsResp структура, возвращаемая методом FriendsAreFriends.
type FriendsAreFriendsResp []struct {
UserID int `json:"user_id"`
FriendStatus int `json:"friend_status"`
RequestMessage string `json:"request_message"`
ReadState int `json:"read_state"`
Sign string `json:"sign"`
}
// FriendsAreFriends возвращает информацию о том, добавлен ли текущий пользователь в друзья у указанных пользователей. Также возвращает информацию о наличии исходящей или входящей заявки в друзья (подписки).
func (api *API) FriendsAreFriends(p FriendsAreFriendsParams) (*FriendsAreFriendsResp, error) {
resp, err := api.Request("friends.areFriends", p, new(FriendsAreFriendsResp))
if err != nil {
return nil, err
}
return resp.(*FriendsAreFriendsResp), nil
}
// ===============
// FriendsDelete
// ===============
// FriendsDeleteParams параметры метода FriendsDelete.
type FriendsDeleteParams struct {
UserID uint
}
// FriendsDeleteResp структура, возвращаемая методом FriendsDelete.
type FriendsDeleteResp struct {
Success int `json:"success"`
FriendDeleted int `json:"friend_deleted"`
OutRequestDeleted int `json:"out_request_deleted"`
InRequestDeleted int `json:"in_request_deleted"`
SuggestionDeleted int `json:"suggestion_deleted"`
}
// FriendsDelete удаляет пользователя из списка друзей или отклоняет заявку в друзья. Если идентификатор выбранного пользователя присутствует в списке заявок на добавление в друзья, полученном методом friends.getrequests, то отклоняет заявку на добавление в друзья к текущему пользователю. В противном случае удаляет выбранного пользователя из списка друзей текущего пользователя, который может быть получен методом friends.get.
func (api *API) FriendsDelete(p FriendsDeleteParams) (*FriendsDeleteResp, error) {
resp, err := api.Request("friends.delete", p, new(FriendsDeleteResp))
if err != nil {
return nil, err
}
return resp.(*FriendsDeleteResp), nil
}
// ==========================
// FriendsDeleteAllRequests
// ==========================
// FriendsDeleteAllRequests отмечает все входящие заявки на добавление в друзья как просмотренные.
func (api *API) FriendsDeleteAllRequests() (bool, error) {
resp, err := api.Request("friends.deleteAllRequests", struct{}{}, new(int))
if err != nil {
return false, err
}
return toBool(resp.(int)), nil
}
// ===================
// FriendsDeleteList
// ===================
// FriendsDeleteListParams параметры метода FriendsDeleteList.
type FriendsDeleteListParams struct {
ListID uint
}
// FriendsDeleteList удаляет существующий список друзей текущего пользователя.
func (api *API) FriendsDeleteList(p FriendsDeleteListParams) (bool, error) {
resp, err := api.Request("friends.deleteList", p, new(int))
if err != nil {
return false, err
}
return toBool(resp.(int)), nil
}
// =============
// FriendsEdit
// =============
// FriendsEditParams параметры метода FriendsEdit.
type FriendsEditParams struct {
UserID uint
ListIDS []int
}
// FriendsEdit редактирует списки друзей для выбранного друга.
func (api *API) FriendsEdit(p FriendsEditParams) (bool, error) {
resp, err := api.Request("friends.edit", p, new(int))
if err != nil {
return false, err
}
return toBool(resp.(int)), nil
}
// =================
// FriendsEditList
// =================
// FriendsEditListParams параметры метода FriendsEditList.
type FriendsEditListParams struct {
Name string
ListID uint
UserIDS []int
AddUserIDS []int
DeleteUserIDS []int
}
// FriendsEditList редактирует существующий список друзей текущего пользователя.
func (api *API) FriendsEditList(p FriendsEditListParams) (bool, error) {
resp, err := api.Request("friends.editList", p, new(int))
if err != nil {
return false, err
}
return toBool(resp.(int)), nil
}
// ============
// FriendsGet
// ============
// FriendsGetParams параметры метода FriendsGet.
type FriendsGetParams struct {
UserID int
Order string
ListID uint
Count uint
Offset uint
Fields string
NameCase string
Ref string
}
// FriendsGetIDSResp структура, возвращаемая методом FriendsGet, содержит идентификаторы друзей.
type FriendsGetIDSResp struct {
Count int `json:"count"`
Items []int `json:"items"`
}
// FriendsGetUsersResp структура, возвращаемая методом FriendsGet, содержит объекты-профили.
type FriendsGetUsersResp struct {
Count int `json:"count"`
Items []User `json:"items"`
}
// FriendsGet возвращает список идентификаторов друзей пользователя или расширенную информацию о друзьях пользователя (при использовании параметра fields). Если вы используете социальный граф пользователя вконтакте в своем приложении, обратите внимание на п. 4.4. правил платформы. https://vk.com/dev/rules Возвращает *FriendsGetUsersResp, если задан параметр Fields или *FriendsGetIDSResp в остальных случаях.
func (api *API) FriendsGet(p FriendsGetParams) (interface{}, error) {
var holder interface{}
switch len(p.Fields) > 0 {
case true:
holder = new(FriendsGetUsersResp)
default:
holder = new(FriendsGetIDSResp)
}
resp, err := api.Request("friends.get", p, holder)
if err != nil {
return nil, err
}
return resp, nil
}
// ====================
// FriendsGetAppUsers
// ====================
// FriendsGetAppUsers возвращает список идентификаторов друзей текущего пользователя, которые установили данное приложение.
func (api *API) FriendsGetAppUsers() ([]int, error) {
resp, err := api.Request("friends.getAppUsers", struct{}{}, new([]int))
if err != nil {
return nil, err
}
return resp.([]int), nil
}
// ====================
// FriendsGetByPhones
// ====================
// FriendsGetByPhonesParams параметры метода FriendsGetByPhones.
type FriendsGetByPhonesParams struct {
Phones string
Fields string
}
// FriendsGetByPhones возвращает список друзей пользователя, у которых завалидированные или указанные в профиле телефонные номера входят в заданный список. Использование данного метода возможно только если у текущего пользователя завалидирован номер мобильного телефона. Для проверки этого условия можно использовать метод users.get c параметрами user_ids=api_user и fields=has_mobile, где api_user равен идентификатору текущего пользователя. Для доступа к этому методу приложение должно быть доверенным.
func (api *API) FriendsGetByPhones(p FriendsGetByPhonesParams) ([]User, error) {
resp, err := api.Request("friends.getByPhones", p, new([]User))
if err != nil {
return nil, err
}
return resp.([]User), nil
}
// =================
// FriendsGetLists
// =================
// FriendsGetListsParams параметры метода FriendsGetLists.
type FriendsGetListsParams struct {
UserID uint
ReturnSystem bool
}
// FriendsGetListsResp структура, возвращаемая методом FriendsGetLists.
type FriendsGetListsResp struct {
Count int `json:"count"`
Items []struct {
ID int `json:"id"`
Name string `json:"name"`
} `json:"items"`
}
// FriendsGetLists возвращает список меток друзей пользователя.
func (api *API) FriendsGetLists(p FriendsGetListsParams) (*FriendsGetListsResp, error) {
resp, err := api.Request("friends.getLists", p, new(FriendsGetListsResp))
if err != nil {
return nil, err
}
return resp.(*FriendsGetListsResp), nil
}
// ==================
// FriendsGetMutual
// ==================
// FriendsGetMutualParams параметры метода FriendsGetMutual.
type FriendsGetMutualParams struct {
SourceUID uint
TargetUID uint
TargetUIDS []int
Order string
Count uint
Offset uint
}
// FriendsGetMutual возвращает список идентификаторов общих друзей между парой пользователей.
func (api *API) FriendsGetMutual(p FriendsGetMutualParams) ([]int, error) {
resp, err := api.Request("friends.getMutual", p, new([]int))
if err != nil {
return nil, err
}
return resp.([]int), nil
}
// ==================
// FriendsGetOnline
// ==================
// FriendsGetOnlineParams параметры метода FriendsGetOnline.
type FriendsGetOnlineParams struct {
UserID uint
ListID uint
OnlineMobile bool
Order string
Count uint
Offset uint
}
// FriendsGetOnlineResp структура, возвращаемая методом FriendsGetOnline.
type FriendsGetOnlineResp struct {
Online []int `json:"online,omitempty"`
OnlineMobile []int `json:"online_mobile,omitempty"`
}
// FriendsGetOnline возвращает список идентификаторов друзей пользователя, находящихся на сайте. Возвращает []int, если OnlineMobile=false или *FriendsGetOnlineResp, если OnlineMobile=true.
func (api *API) FriendsGetOnline(p FriendsGetOnlineParams) (interface{}, error) {
var holder interface{}
switch p.OnlineMobile {
case true:
holder = new(FriendsGetOnlineResp)
default:
holder = new([]int)
}
resp, err := api.Request("friends.getOnline", p, holder)
if err != nil {
return nil, err
}
return resp, nil
}
// ==================
// FriendsGetRecent
// ==================
// FriendsGetRecentParams параметры метода FriendsGetRecent.
type FriendsGetRecentParams struct {
Count uint
}
// FriendsGetRecent возвращает список идентификаторов недавно добавленных друзей текущего пользователя.
func (api *API) FriendsGetRecent(p FriendsGetRecentParams) ([]int, error) {
resp, err := api.Request("friends.getRecent", p, new([]int))
if err != nil {
return nil, err
}
return resp.([]int), nil
}
// ====================
// FriendsGetRequests
// ====================
// FriendsGetRequestsParams параметры метода FriendsGetRequests.
type FriendsGetRequestsParams struct {
Offset uint
Count uint
Extended bool
NeedMutual bool
Out bool
Sort uint
NeedViewed bool
Suggested bool
Ref string
Fields string
}
// FriendsGetRequestsResp структура, возвращаемая методом FriendsGetRequests.
type FriendsGetRequestsResp struct {
Count int `json:"count"`
Items []struct {
UserID int `json:"user_id"`
FirstName string `json:"first_name"`
LastName string `json:"last_name"`
IsClosed bool `json:"is_closed"`
CanAccessClosed bool `json:"can_access_closed"`
Mutual *struct {
Count int `json:"count"`
Users []int `json:"users"`
} `json:"mutual"`
TrackCode string `json:"track_code"`
} `json:"items"`
}
// FriendsGetRequests возвращает информацию о полученных или отправленных заявках на добавление в друзья для текущего пользователя.
func (api *API) FriendsGetRequests(p FriendsGetRequestsParams) (*FriendsGetRequestsResp, error) {
resp, err := api.Request("friends.getRequests", p, new(FriendsGetRequestsResp))
if err != nil {
return nil, err
}
return resp.(*FriendsGetRequestsResp), nil
}
// =======================
// FriendsGetSuggestions
// =======================
// FriendsGetSuggestionsParams параметры метода FriendsGetSuggestions.
type FriendsGetSuggestionsParams struct {
Filter string
Count uint
Offset uint
Fields string
NameCase string
}
// FriendsGetSuggestionsResp структура, возвращаемая методом FriendsGetSuggestions.
type FriendsGetSuggestionsResp struct {
Count int `json:"count"`
Items []User `json:"items"`
}
// FriendsGetSuggestions возвращает список профилей пользователей, которые могут быть друзьями текущего пользователя.
func (api *API) FriendsGetSuggestions(p FriendsGetSuggestionsParams) (*FriendsGetSuggestionsResp, error) {
resp, err := api.Request("friends.getSuggestions", p, new(FriendsGetSuggestionsResp))
if err != nil {
return nil, err
}
return resp.(*FriendsGetSuggestionsResp), nil
}
// ===============
// FriendsSearch
// ===============
// FriendsSearchParams параметры метода FriendsSearch.
type FriendsSearchParams struct {
UserID uint
Q string
Fields string
NameCase string
Offset uint
Count uint
}
// FriendsSearchResp структура, возвращаемая методом FriendsSearch.
type FriendsSearchResp struct {
Count int `json:"count"`
Items []User `json:"items"`
}
// FriendsSearch позволяет искать по списку друзей пользователей. Для расширенного поиска по списку друзей можно использовать метод users.search с параметром from_list=friends.
func (api *API) FriendsSearch(p FriendsSearchParams) (*FriendsSearchResp, error) {
resp, err := api.Request("friends.search", p, new(FriendsSearchResp))
if err != nil {
return nil, err
}
return resp.(*FriendsSearchResp), nil
}