Wuyx
2017-01-11 6c0388687ea77818dec125c356520e8a39bbcb5e
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
//
//  VKApiDocs.h
//
//  Copyright (c) 2014 VK.com
//
//  Permission is hereby granted, free of charge, to any person obtaining a copy of
//  this software and associated documentation files (the "Software"), to deal in
//  the Software without restriction, including without limitation the rights to
//  use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
//  the Software, and to permit persons to whom the Software is furnished to do so,
//  subject to the following conditions:
//
//  The above copyright notice and this permission notice shall be included in all
//  copies or substantial portions of the Software.
//
//  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
//  FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
//  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
//  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
//  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
#import "VKApiBase.h"
 
/**
 Builds requests for API.docs part
 */
@interface VKApiDocs : VKApiBase
 
/**
 *  Returns detailed information about user or community documents.
 *  https://vk.com/dev/docs.get
 *
 *  @return Request to load
 */
- (VKRequest *)get;
 
/**
 *   Returns detailed information about user or community documents.
 *   https://vk.com/dev/docs.get
 *
 *  @param count Number of documents to return.
 *
 *  @return Request to load
 */
- (VKRequest *)get:(NSInteger)count;
 
/**
 *  Returns detailed information about user or community documents.
 *  https://vk.com/dev/docs.get
 *
 *  @param count  Number of documents to return. By default, all documents.
 *  @param offset Offset needed to return a specific subset of documents.
 *
 *  @return Request to load
 */
- (VKRequest *)get:(NSInteger)count andOffset:(NSInteger)offset;
 
/**
 *  Returns detailed information about user or community documents.
 *  https://vk.com/dev/docs.get
 *
 *  @param count   Number of documents to return. By default, all documents.
 *  @param offset  Offset needed to return a specific subset of documents.
 *  @param ownerID ID of the user or community that owns the documents. Use a negative value to designate a community ID.
 *
 *  @return Request to load
 */
- (VKRequest *)get:(NSInteger)count andOffset:(NSInteger)offset andOwnerID:(NSInteger)ownerID;
 
/**
 *  Returns information about documents by their IDs.
 *  https://vk.com/dev/docs.getById
 *  @param IDs Document IDs.
 *
 *  @return Request to load
 */
- (VKRequest *)getByID:(NSArray *)IDs;
 
/**
 *  Returns the server address for document upload.
 *  https://vk.com/dev/docs.getUploadServer
 *
 *  @return Request to load
 */
- (VKRequest *)getUploadServer;
 
/**
 *  Returns the server address for document upload.
 *  https://vk.com/dev/docs.getUploadServer
 *
 *  @param group_id ID of the community the document will be uploaded to.
 *
 *  @return Request to load
 */
- (VKRequest *)getUploadServer:(NSInteger)group_id;
 
/**
 *  Returns the server address for document upload onto a user's or community's wall.
 *  https://vk.com/dev/docs.getWallUploadServer
 *
 *  @return Request to load
 */
- (VKRequest *)getWallUploadServer;
 
/**
 *  Returns the server address for document upload onto a user's or community's wall.
 *  https://vk.com/dev/docs.getWallUploadServer
 *
 *  @param group_id ID of the community the document will be uploaded to.
 *
 *  @return Request to load
 */
- (VKRequest *)getWallUploadServer:(NSInteger)group_id;
 
/**
 *  Saves a document after uploading it to a server.
 *  https://vk.com/dev/docs.save
 *
 *  @param file This parameter is returned when the file is uploaded to the server.
 *
 *  @return Request to load
 */
- (VKRequest *)save:(NSString *)file;
 
/**
 *  Saves a document after uploading it to a server.
 *  https://vk.com/dev/docs.save
 *
 *  @param file  This parameter is returned when the file is uploaded to the server.
 *  @param title Document title.
 *
 *  @return Request to load
 */
- (VKRequest *)save:(NSString *)file andTitle:(NSString *)title;
 
/**
 *  Saves a document after uploading it to a server.
 *  https://vk.com/dev/docs.save
 *
 *  @param file  This parameter is returned when the file is uploaded to the server.
 *  @param title Document title
 *  @param tags  Document tags
 *
 *  @return Request to load
 */
- (VKRequest *)save:(NSString *)file andTitle:(NSString *)title andTags:(NSString *)tags;
 
/**
 *  Deletes a user or community document.
 *  https://vk.com/dev/docs.delete
 *
 *  @param ownerID ID of the user or community that owns the document. Use a negative value to designate a community ID.
 *  @param docID   Document ID.
 *
 *  @return Request to load
 */
- (VKRequest *)delete:(NSInteger)ownerID andDocID:(NSInteger)docID;
 
/**
 *  Copies a document to a user's or community's document list.
 *  https://vk.com/dev/docs.add
 *
 *  @param ownerID   ID of the user or community that owns the document. Use a negative value to designate a community ID.
 *  @param docID     Document ID.
 *
 *  @return Request to load
 */
- (VKRequest *)add:(NSInteger)ownerID andDocID:(NSInteger)docID;
 
/**
 *  Copies a document to a user's or community's document list.
 *  https://vk.com/dev/docs.add
 *
 *  @param ownerID   ID of the user or community that owns the document. Use a negative value to designate a community ID.
 *  @param docID     Document ID.
 *  @param accessKey Access key. This parameter is required if access_key was returned with the document's data.
 *
 *  @return Request to load
 */
- (VKRequest *)add:(NSInteger)ownerID andDocID:(NSInteger)docID andAccessKey:(NSString *)accessKey;
 
/**
 *  Returns results of search
 *  https://vk.com/dev/docs.search
 *
 *  @param query  Search query
 *
 *  @return Request to load
 */
- (VKRequest *)search:(NSString *)query;
 
/**
 *  Returns results of search
 *  https://vk.com/dev/docs.search
 *
 *  @param query  Search query
 *  @param count  Number of documents to return.
 *
 *  @return Request to load
 */
- (VKRequest *)search:(NSString *)query count:(NSInteger)count;
 
/**
 *  Returns results of search
 *  https://vk.com/dev/docs.search
 *
 *  @param query  Search query
 *  @param count  Number of documents to return.
 *  @param offset Offset needed to return a specific subset of documents.
 *
 *  @return Request to load
 */
- (VKRequest *)search:(NSString *)query count:(NSInteger)count andOffset:(NSInteger)offset;
 
/**
 *  Edits a current user's document.
 *  https://vk.com/dev/docs.edit
 *
 *  @param docID  Document ID.
 *  @param title  New document title
 *
 *  @return Request to load
 */
- (VKRequest *)edit:(NSInteger)docID title:(NSString *)title;
 
/**
 *  Edits a current user's document.
 *  https://vk.com/dev/docs.edit
 *
 *  @param docID  Document ID.
 *  @param title  New document title
 *  @param tags   New document tags
 *
 *  @return Request to load
 */
- (VKRequest *)edit:(NSInteger)docID title:(NSString *)title tags:(NSString *)tags;
 
/**
 *  Edits a user's or community's document.
 *  https://vk.com/dev/docs.edit
 *
 *  @param ownerID  ID of the user or community that owns the document. Use a negative value to designate a community ID.
 *  @param docID    Document ID.
 *  @param title    New document title
 *
 *  @return Request to load
 */
- (VKRequest *)edit:(NSInteger)ownerID docID:(NSInteger)docID title:(NSString *)title;
 
/**
 *  Edits a user's or community's document.
 *  https://vk.com/dev/docs.edit
 *
 *  @param ownerID  ID of the user or community that owns the document. Use a negative value to designate a community ID.
 *  @param docID    Document ID.
 *  @param title    New document title
 *  @param tags     New document tags
 *
 *  @return Request to load
 */
- (VKRequest *)edit:(NSInteger)ownerID docID:(NSInteger)docID title:(NSString *)title tags:(NSString *)tags;
 
 
 
@end