-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVkApi.pas
367 lines (297 loc) · 11 KB
/
VkApi.pas
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
unit VkApi;
interface
uses
System.SysUtils, IPPeerServer, IPPeerClient, REST.Authenticator.OAuth,
REST.Client, REST.Types, REST.Utils, System.Math, System.Types,
System.StrUtils, System.JSON, System.Variants, SynCommons, VkApi.Photo,
System.DateUtils, VkApi.Utils, VkApi.Authenticator, VkApi.Types,
VkApi.Constants, VkApi.Exception;
{ helpers }
type
TVkPhotosGetWallUploadServerResponse = record
UploadUrl: string;
AlbumId: Integer;
UserId: Integer;
end;
type
TVkPostedPhotoInfo = record
Server: Integer;
Photo: string; // photo info
Hash: string;
end;
type
TVkSaveWallPhotoParams = record
UserId: Integer;
GroupId: Integer;
Photo: string;
Server: Integer;
Hash: string;
end;
{ TVkApi class }
type
TVkApi = class
private
FAppId: string;
FSecretKey: string;
FAccessToken: string;
FVkAuthenticator: TVkAuthenticator;
FRESTClient: TRESTClient;
FRESTRequest: TRESTRequest;
FRESTResponse: TRESTResponse;
FAppPermissions: Integer;
function GetScope: string;
procedure SetScope(const Value: string);
function GetDisplay: TVkDisplayType;
procedure SetDisplay(const Value: TVkDisplayType);
function GetApiVersion: TVkApiVersion;
procedure SetApiVersion(const Value: TVkApiVersion);
function GetAuthorizationRequestURI: string;
procedure SetAccessToken(const Value: string);
procedure PrepareRESTRequest;
public
property Scope: string read GetScope write SetScope;
property Display: TVkDisplayType read GetDisplay write SetDisplay;
property ApiVersion: TVkApiVersion read GetApiVersion write SetApiVersion;
property AuthorizationRequestURI: string read GetAuthorizationRequestURI;
property AccessToken: string read FAccessToken write SetAccessToken;
constructor Create(const AAppId: string; const ASecretKey: string;
const AAccessToken: string);
destructor Destroy; override;
// account methods
function AccountGetAppPermissions(const AUserId: Integer = 0): Integer;
// wall methods
function WallPost(const AOwnerId: Integer; const AMessage: string):
string;
function WallPostPhoto(const AOwnerId: Integer; const AAttachments:
string; const AMessage: string): string;
// ***
// photos methods
// photos.getWallUploadServer
function PhotosGetWallUploadServer(const GroupId: Integer):
TVkPhotosGetWallUploadServerResponse;
// photos.saveWallPhoto - https://vk.com/dev/photos.saveWallPhoto
function PhotosSaveWallPhoto(const AParams: TVkSaveWallPhotoParams):
TVkPhoto;
// ***
function UploadPhotoToWall(const AFilename: string): TVkPhoto;
end;
implementation
{ TVkApi }
function TVkApi.AccountGetAppPermissions(const AUserId: Integer = 0): Integer;
begin
FRESTRequest.Resource := 'account.getAppPermissions';
FRESTRequest.Method := TRESTRequestMethod.rmGET;
FRESTRequest.Params.Clear;
if AUserId <> 0 then
begin
FRESTRequest.Params.AddItem('user_id', IntToStr(AUserId), pkGETorPOST, [
poDoNotEncode]);
end;
FRESTRequest.Params.AddItem('v', VkApiVersionToString(Self.ApiVersion),
pkGETorPOST, [poDoNotEncode]);
FRESTRequest.Execute;
if not TryStrToInt((FRESTResponse.JSONValue as TJSONObject).GetValue(
'response').ToString, Result) then
Result := 0;
if AUserId = 0 then
FAppPermissions := Result;
end;
constructor TVkApi.Create(const AAppId: string; const ASecretKey: string;
const AAccessToken: string);
begin
inherited Create;
FAppId := AAppId;
FSecretKey := ASecretKey;
FAccessToken := AAccessToken;
FVkAuthenticator := TVkAuthenticator.Create(nil);
FRESTClient := TRESTClient.Create(VKAPI_BASE_URL);
FRESTRequest := TRESTRequest.Create(nil);
FRESTResponse := TRESTResponse.Create(nil);
// Pre-init objects
FVkAuthenticator.AccessTokenParamName := VKAPI_ACCESS_TOKEN_PARAM_NAME;
FVkAuthenticator.ResponseType := VKAPI_RESPONSE_TYPE;
FVkAuthenticator.TokenType := VKAPI_TOKEN_TYPE;
FVkAuthenticator.AuthorizationEndpoint := VKAPI_AUTHORIZATION_ENDPOINT;
FVkAuthenticator.RedirectionEndpoint := VKAPI_REDIRECTION_ENDPOINT;
FVkAuthenticator.ClientID := FAppId;
FVkAuthenticator.ClientSecret := FSecretKey;
FVkAuthenticator.AccessToken := FAccessToken;
FRESTClient.Accept := VKAPI_ACCEPT;
FRESTClient.AllowCookies := True;
FRESTClient.Authenticator := FVkAuthenticator;
FRESTClient.FallbackCharsetEncoding := VKAPI_FALLBACK_CHARSET_ENCODING;
FRESTClient.AutoCreateParams := True;
FRESTClient.HandleRedirects := True;
FRESTRequest.Accept := VKAPI_ACCEPT;
FRESTRequest.AcceptCharset := VKAPI_ACCEPT_CHARSET;
FRESTRequest.AutoCreateParams := True;
FRESTRequest.Client := FRESTClient;
FRESTRequest.HandleRedirects := True;
FRESTRequest.Response := FRESTResponse;
FRESTRequest.Timeout := VKAPI_TIMEOUT;
Self.ApiVersion := VKAPI_DEFAULT_API_VERSION;
end;
destructor TVkApi.Destroy;
begin
FRESTResponse.Free;
FRESTRequest.Free;
FRESTClient.Free;
inherited Destroy;
end;
function TVkApi.GetApiVersion: TVkApiVersion;
begin
Result := FVkAuthenticator.ApiVersion;
end;
function TVkApi.GetAuthorizationRequestURI: string;
begin
if FVkAuthenticator <> nil then
Result := FVkAuthenticator.AuthorizationRequestURI
else
Result := '';
end;
function TVkApi.GetDisplay: TVkDisplayType;
begin
Result := FVkAuthenticator.Display;
end;
function TVkApi.GetScope: string;
begin
if FVkAuthenticator <> nil then
Result := FVkAuthenticator.Scope
else
Result := '';
end;
function TVkApi.PhotosGetWallUploadServer(
const GroupId: Integer): TVkPhotosGetWallUploadServerResponse;
var
v: Variant;
begin
PrepareRESTRequest;
FRESTRequest.Resource := 'photos.getWallUploadServer';
FRESTRequest.Method := TRESTRequestMethod.rmGET;
FRESTRequest.Params.AddItem('group_id', IntToStr(GroupId), pkGETorPOST,
[poDoNotEncode]);
FRESTRequest.Execute;
if FRESTResponse.StatusCode = 200 then
begin
v := _JsonFast(RawUTF8(FRESTResponse.Content));
Result.UploadUrl := v.response.upload_url;
Result.AlbumId := v.response.album_id;
Result.UserId := v.response.user_id;
end else begin
end;
end;
function TVkApi.PhotosSaveWallPhoto(const AParams: TVkSaveWallPhotoParams):
TVkPhoto;
var
v: Variant;
begin
PrepareRESTRequest;
FRESTRequest.Resource := 'photos.saveWallPhoto';
FRESTRequest.Method := TRESTRequestMethod.rmPOST;
if AParams.UserId > 0 then
FRESTRequest.Params.AddItem('user_id', IntToStr(AParams.UserId), pkGETorPOST,
[poDoNotEncode]);
if AParams.GroupId > 0 then
FRESTRequest.Params.AddItem('group_id', IntToStr(AParams.GroupId),
pkGETorPOST, [poDoNotEncode]);
FRESTRequest.Params.AddItem('photo', AParams.Photo, pkGETorPOST, [
poDoNotEncode]);
FRESTRequest.Params.AddItem('server', IntToStr(AParams.Server), pkGETorPOST, [poDoNotEncode]);
FRESTRequest.Params.AddItem('hash', AParams.Hash, pkGETorPOST, [
poDoNotEncode]);
FRESTRequest.Execute;
if FRESTResponse.StatusCode = 200 then
begin
v := _JsonFast(RawUTF8(FRESTResponse.Content));
Result.Text := FRESTResponse.Content;
try
Result.Id := VarValue(v.response._(0).id, 0);
Result.AlbumId := VarValue(v.response._(0).album_id, 0);
Result.OwnerId := VarValue(v.response._(0).owner_id, 0);
Result.UserId := VarValue(v.response._(0).user_id, 0);
Result.Photo75 := VarValue(v.response._(0).photo_75, EmptyStr);
Result.Photo130 := VarValue(v.response._(0).photo_130, EmptyStr);
Result.Photo604 := VarValue(v.response._(0).photo_604, EmptyStr);
Result.Photo807 := VarValue(v.response._(0).photo_807, EmptyStr);
Result.Photo1280 := VarValue(v.response._(0).photo_1280, EmptyStr);
Result.Photo2560 := VarValue(v.response._(0).photo_2560);
Result.Width := VarValue(v.response._(0).width, 0);
Result.Height := VarValue(v.response._(0).height, 0);
Result.Text := VarValue(v.response._(0).text, EmptyStr);
Result.Date := UnixToDateTime(VarValue(v.response._(0).date));
except
on E: Exception do
begin
Result.Text := Result.Text + #13#10 + E.ClassName + #13#10 + E.Message;
end;
end;
end;
end;
procedure TVkApi.PrepareRESTRequest;
begin
FRESTRequest.Params.Clear;
FRESTRequest.Params.AddItem('v', VkApiVersionToString(Self.ApiVersion),
pkGETorPOST, [poDoNotEncode]);
end;
procedure TVkApi.SetAccessToken(const Value: string);
begin
FAccessToken := Value;
if FVkAuthenticator <> nil then
FVkAuthenticator.AccessToken := Value;
end;
procedure TVkApi.SetApiVersion(const Value: TVkApiVersion);
begin
if (Value <> FVkAuthenticator.ApiVersion) then
FVkAuthenticator.ApiVersion := Value;
end;
procedure TVkApi.SetDisplay(const Value: TVkDisplayType);
begin
if (Value <> FVkAuthenticator.Display) then
FVkAuthenticator.Display := Value;
end;
procedure TVkApi.SetScope(const Value: string);
begin
if FVkAuthenticator <> nil then
FVkAuthenticator.Scope := Value;
end;
function TVkApi.UploadPhotoToWall(const AFilename: string): TVkPhoto;
begin
end;
function TVkApi.WallPost(const AOwnerId: Integer;
const AMessage: string): string;
begin
PrepareRESTRequest;
FRESTRequest.Resource := 'wall.post';
FRESTRequest.Method := TRESTRequestMethod.rmPOST;
FRESTRequest.Params.AddItem('owner_id', IntToStr(AOwnerId), pkGETorPOST, [poDoNotEncode]);
FRESTRequest.Params.AddItem('friends_only', '0', pkGETorPOST, [poDoNotEncode]);
FRESTRequest.Params.AddItem('from_group', '1', pkGETorPOST, [poDoNotEncode]);
FRESTRequest.Params.AddItem('message', AMessage, pkGETorPOST, [poDoNotEncode]);
FRESTRequest.Execute;
if FRESTRequest.Response.StatusCode = 200 then
Result := FRESTResponse.JSONText
else
Result := FRESTResponse.ErrorMessage;
end;
function TVkApi.WallPostPhoto(const AOwnerId: Integer; const AAttachments,
AMessage: string): string;
begin
PrepareRESTRequest;
FRESTRequest.Resource := 'wall.post';
FRESTRequest.Method := TRESTRequestMethod.rmPOST;
FRESTRequest.Params.AddItem('owner_id', IntToStr(AOwnerId), pkGETorPOST, [
poDoNotEncode]);
FRESTRequest.Params.AddItem('friends_only', '0', pkGETorPOST, [
poDoNotEncode]);
FRESTRequest.Params.AddItem('from_group', '1', pkGETorPOST, [poDoNotEncode]);
FRESTRequest.Params.AddItem('message', AMessage, pkGETorPOST, [
TRESTRequestParameterOption.poDoNotEncode]);
FRESTRequest.Params.AddItem('attachments', AAttachments, pkGETorPOST, [
TRESTRequestParameterOption.poDoNotEncode]);
FRESTRequest.Execute;
if FRESTRequest.Response.StatusCode = 200 then
Result := FRESTResponse.JSONText
else
Result := FRESTResponse.ErrorMessage;
end;
end.