This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 316
/
Copy pathVaRestRequestJSON.cpp
552 lines (432 loc) · 13.1 KB
/
VaRestRequestJSON.cpp
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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
// Copyright 2014 Vladimir Alyamkin. All Rights Reserved.
#include "VaRestRequestJSON.h"
#include "VaRestJsonObject.h"
#include "VaRestLibrary.h"
#include "VaRestPluginPrivatePCH.h"
#include "CoreMisc.h"
#include "Runtime/Launch/Resources/Version.h"
FString UVaRestRequestJSON::DeprecatedResponseString(TEXT("DEPRECATED: Please use GetResponseContentAsString() instead"));
template <class T> void FVaRestLatentAction<T>::Cancel()
{
UObject *Obj = Request.Get();
if (Obj != nullptr)
{
((UVaRestRequestJSON*)Obj)->Cancel();
}
}
UVaRestRequestJSON::UVaRestRequestJSON(const class FObjectInitializer& PCIP)
: Super(PCIP),
BinaryContentType(TEXT("application/octet-stream"))
{
ContinueAction = nullptr;
RequestVerb = ERequestVerb::GET;
RequestContentType = ERequestContentType::x_www_form_urlencoded_url;
ResetData();
}
UVaRestRequestJSON* UVaRestRequestJSON::ConstructRequest(UObject* WorldContextObject)
{
return NewObject<UVaRestRequestJSON>();
}
UVaRestRequestJSON* UVaRestRequestJSON::ConstructRequestExt(
UObject* WorldContextObject,
ERequestVerb Verb,
ERequestContentType ContentType)
{
UVaRestRequestJSON* Request = ConstructRequest(WorldContextObject);
Request->SetVerb(Verb);
Request->SetContentType(ContentType);
return Request;
}
void UVaRestRequestJSON::SetVerb(ERequestVerb Verb)
{
RequestVerb = Verb;
}
void UVaRestRequestJSON::SetCustomVerb(FString Verb)
{
CustomVerb = Verb;
}
void UVaRestRequestJSON::SetContentType(ERequestContentType ContentType)
{
RequestContentType = ContentType;
}
void UVaRestRequestJSON::SetBinaryContentType(const FString& ContentType)
{
BinaryContentType = ContentType;
}
void UVaRestRequestJSON::SetBinaryRequestContent(const TArray<uint8>& Bytes)
{
RequestBytes = Bytes;
}
void UVaRestRequestJSON::SetStringRequestContent(const FString& Content)
{
StringRequestContent = Content;
}
void UVaRestRequestJSON::SetHeader(const FString& HeaderName, const FString& HeaderValue)
{
RequestHeaders.Add(HeaderName, HeaderValue);
}
//////////////////////////////////////////////////////////////////////////
// Destruction and reset
void UVaRestRequestJSON::ResetData()
{
ResetRequestData();
ResetResponseData();
}
void UVaRestRequestJSON::ResetRequestData()
{
if (RequestJsonObj != nullptr)
{
RequestJsonObj->Reset();
}
else
{
RequestJsonObj = NewObject<UVaRestJsonObject>();
}
// See issue #90
// HttpRequest = FHttpModule::Get().CreateRequest();
RequestBytes.Empty();
StringRequestContent.Empty();
}
void UVaRestRequestJSON::ResetResponseData()
{
if (ResponseJsonObj != nullptr)
{
ResponseJsonObj->Reset();
}
else
{
ResponseJsonObj = NewObject<UVaRestJsonObject>();
}
ResponseHeaders.Empty();
ResponseCode = -1;
bIsValidJsonResponse = false;
// #127 Reset string to deprecated state
ResponseContent = DeprecatedResponseString;
}
void UVaRestRequestJSON::Cancel()
{
ContinueAction = nullptr;
ResetResponseData();
}
//////////////////////////////////////////////////////////////////////////
// JSON data accessors
UVaRestJsonObject* UVaRestRequestJSON::GetRequestObject()
{
return RequestJsonObj;
}
void UVaRestRequestJSON::SetRequestObject(UVaRestJsonObject* JsonObject)
{
RequestJsonObj = JsonObject;
}
UVaRestJsonObject* UVaRestRequestJSON::GetResponseObject()
{
return ResponseJsonObj;
}
void UVaRestRequestJSON::SetResponseObject(UVaRestJsonObject* JsonObject)
{
ResponseJsonObj = JsonObject;
}
///////////////////////////////////////////////////////////////////////////
// Response data access
FString UVaRestRequestJSON::GetURL()
{
return HttpRequest->GetURL();
}
ERequestStatus UVaRestRequestJSON::GetStatus()
{
return ERequestStatus((uint8)HttpRequest->GetStatus());
}
int32 UVaRestRequestJSON::GetResponseCode()
{
return ResponseCode;
}
FString UVaRestRequestJSON::GetResponseHeader(const FString HeaderName)
{
FString Result;
FString* Header = ResponseHeaders.Find(HeaderName);
if (Header != nullptr)
{
Result = *Header;
}
return Result;
}
TArray<FString> UVaRestRequestJSON::GetAllResponseHeaders()
{
TArray<FString> Result;
for (TMap<FString, FString>::TConstIterator It(ResponseHeaders); It; ++It)
{
Result.Add(It.Key() + TEXT(": ") + It.Value());
}
return Result;
}
//////////////////////////////////////////////////////////////////////////
// URL processing
void UVaRestRequestJSON::SetURL(const FString& Url)
{
// Be sure to trim URL because it can break links on iOS
FString TrimmedUrl = Url;
#if ENGINE_MINOR_VERSION >= 18
TrimmedUrl.TrimStartInline();
TrimmedUrl.TrimEndInline();
#else
TrimmedUrl.Trim();
TrimmedUrl.TrimTrailing();
#endif
HttpRequest->SetURL(TrimmedUrl);
}
void UVaRestRequestJSON::ProcessURL(const FString& Url)
{
SetURL(Url);
ProcessRequest();
}
void UVaRestRequestJSON::ApplyURL(const FString& Url, UVaRestJsonObject *&Result, UObject* WorldContextObject, FLatentActionInfo LatentInfo)
{
// Be sure to trim URL because it can break links on iOS
FString TrimmedUrl = Url;
#if ENGINE_MINOR_VERSION >= 18
TrimmedUrl.TrimStartInline();
TrimmedUrl.TrimEndInline();
#else
TrimmedUrl.Trim();
TrimmedUrl.TrimTrailing();
#endif
HttpRequest->SetURL(TrimmedUrl);
// Prepare latent action
if (UWorld* World = GEngine->GetWorldFromContextObject(WorldContextObject, EGetWorldErrorMode::LogAndReturnNull))
{
FLatentActionManager& LatentActionManager = World->GetLatentActionManager();
FVaRestLatentAction<UVaRestJsonObject*> *Kont = LatentActionManager.FindExistingAction<FVaRestLatentAction<UVaRestJsonObject*>>(LatentInfo.CallbackTarget, LatentInfo.UUID);
if (Kont != nullptr)
{
Kont->Cancel();
LatentActionManager.RemoveActionsForObject(LatentInfo.CallbackTarget);
}
LatentActionManager.AddNewAction(LatentInfo.CallbackTarget, LatentInfo.UUID, ContinueAction = new FVaRestLatentAction<UVaRestJsonObject*>(this, Result, LatentInfo));
}
ProcessRequest();
}
void UVaRestRequestJSON::ExecuteProcessRequest()
{
if (HttpRequest->GetURL().Len() == 0)
{
UE_LOG(LogVaRest, Error, TEXT("Request execution attempt with empty URL"));
return;
}
ProcessRequest();
}
void UVaRestRequestJSON::ProcessRequest()
{
// Set verb
switch (RequestVerb)
{
case ERequestVerb::GET:
HttpRequest->SetVerb(TEXT("GET"));
break;
case ERequestVerb::POST:
HttpRequest->SetVerb(TEXT("POST"));
break;
case ERequestVerb::PUT:
HttpRequest->SetVerb(TEXT("PUT"));
break;
case ERequestVerb::DEL:
HttpRequest->SetVerb(TEXT("DELETE"));
break;
case ERequestVerb::CUSTOM:
HttpRequest->SetVerb(CustomVerb);
break;
default:
break;
}
// Set content-type
switch (RequestContentType)
{
case ERequestContentType::x_www_form_urlencoded_url:
{
HttpRequest->SetHeader(TEXT("Content-Type"), TEXT("application/x-www-form-urlencoded"));
FString UrlParams = "";
uint16 ParamIdx = 0;
// Loop through all the values and prepare additional url part
for (auto RequestIt = RequestJsonObj->GetRootObject()->Values.CreateIterator(); RequestIt; ++RequestIt)
{
FString Key = RequestIt.Key();
FString Value = RequestIt.Value().Get()->AsString();
if (!Key.IsEmpty() && !Value.IsEmpty())
{
UrlParams += ParamIdx == 0 ? "?" : "&";
UrlParams += UVaRestLibrary::PercentEncode(Key) + "=" + UVaRestLibrary::PercentEncode(Value);
}
ParamIdx++;
}
// Apply params
HttpRequest->SetURL(HttpRequest->GetURL() + UrlParams);
// Add optional string content
if (!StringRequestContent.IsEmpty())
{
HttpRequest->SetContentAsString(StringRequestContent);
}
UE_LOG(LogVaRest, Log, TEXT("Request (urlencoded): %s %s %s"), *HttpRequest->GetVerb(), *HttpRequest->GetURL(), *UrlParams, *StringRequestContent);
break;
}
case ERequestContentType::x_www_form_urlencoded_body:
{
HttpRequest->SetHeader(TEXT("Content-Type"), TEXT("application/x-www-form-urlencoded"));
FString UrlParams = "";
uint16 ParamIdx = 0;
// Loop through all the values and prepare additional url part
for (auto RequestIt = RequestJsonObj->GetRootObject()->Values.CreateIterator(); RequestIt; ++RequestIt)
{
FString Key = RequestIt.Key();
FString Value = RequestIt.Value().Get()->AsString();
if (!Key.IsEmpty() && !Value.IsEmpty())
{
UrlParams += ParamIdx == 0 ? "" : "&";
UrlParams += UVaRestLibrary::PercentEncode(Key) + "=" + UVaRestLibrary::PercentEncode(Value);
}
ParamIdx++;
}
// Apply params
HttpRequest->SetContentAsString(UrlParams);
UE_LOG(LogVaRest, Log, TEXT("Request (url body): %s %s %s"), *HttpRequest->GetVerb(), *HttpRequest->GetURL(), *UrlParams);
break;
}
case ERequestContentType::binary:
{
HttpRequest->SetHeader(TEXT("Content-Type"), BinaryContentType);
HttpRequest->SetContent(RequestBytes);
UE_LOG(LogVaRest, Log, TEXT("Request (binary): %s %s"), *HttpRequest->GetVerb(), *HttpRequest->GetURL());
break;
}
case ERequestContentType::json:
{
HttpRequest->SetHeader(TEXT("Content-Type"), TEXT("application/json"));
// Serialize data to json string
FString OutputString;
TSharedRef< TJsonWriter<> > Writer = TJsonWriterFactory<>::Create(&OutputString);
FJsonSerializer::Serialize(RequestJsonObj->GetRootObject().ToSharedRef(), Writer);
// Set Json content
HttpRequest->SetContentAsString(OutputString);
UE_LOG(LogVaRest, Log, TEXT("Request (json): %s %s %sJSON(%s%s%s)JSON"), *HttpRequest->GetVerb(), *HttpRequest->GetURL(), LINE_TERMINATOR, LINE_TERMINATOR, *OutputString, LINE_TERMINATOR);
break;
}
default:
break;
}
// Apply additional headers
for (TMap<FString, FString>::TConstIterator It(RequestHeaders); It; ++It)
{
HttpRequest->SetHeader(It.Key(), It.Value());
}
// Bind event
HttpRequest->OnProcessRequestComplete().BindUObject(this, &UVaRestRequestJSON::OnProcessRequestComplete);
// Execute the request
HttpRequest->ProcessRequest();
}
//////////////////////////////////////////////////////////////////////////
// Request callbacks
void UVaRestRequestJSON::OnProcessRequestComplete(FHttpRequestPtr Request, FHttpResponsePtr Response, bool bWasSuccessful)
{
// Be sure that we have no data from previous response
ResetResponseData();
// Check we have a response and save response code as int32
if(Response.IsValid())
{
ResponseCode = Response->GetResponseCode();
}
// Check we have result to process futher
if (!bWasSuccessful || !Response.IsValid())
{
UE_LOG(LogVaRest, Error, TEXT("Request failed (%d): %s"), ResponseCode, *Request->GetURL());
// Broadcast the result event
OnRequestFail.Broadcast(this);
OnStaticRequestFail.Broadcast(this);
return;
}
#if !(PLATFORM_IOS || PLATFORM_ANDROID)
// Log response state
UE_LOG(LogVaRest, Log, TEXT("Response (%d): %sJSON(%s%s%s)JSON"), ResponseCode, LINE_TERMINATOR, LINE_TERMINATOR, *Response->GetContentAsString(), LINE_TERMINATOR);
#endif
// Process response headers
TArray<FString> Headers = Response->GetAllHeaders();
for (FString Header : Headers)
{
FString Key;
FString Value;
if (Header.Split(TEXT(": "), &Key, &Value))
{
ResponseHeaders.Add(Key, Value);
}
}
// Try to deserialize data to JSON
const TArray<uint8>& Bytes = Response->GetContent();
ResponseJsonObj->DeserializeFromUTF8Bytes((const ANSICHAR*) Bytes.GetData(), Bytes.Num());
// Decide whether the request was successful
bIsValidJsonResponse = bWasSuccessful && ResponseJsonObj->GetRootObject().IsValid();
if (!bIsValidJsonResponse)
{
// Save response data as a string
ResponseContent = Response->GetContentAsString();
}
// Log errors
if (!bIsValidJsonResponse)
{
if (!ResponseJsonObj->GetRootObject().IsValid())
{
// As we assume it's recommended way to use current class, but not the only one,
// it will be the warning instead of error
UE_LOG(LogVaRest, Warning, TEXT("JSON could not be decoded!"));
}
}
// Broadcast the result event
OnRequestComplete.Broadcast(this);
OnStaticRequestComplete.Broadcast(this);
// Finish the latent action
if (ContinueAction)
{
FVaRestLatentAction<UVaRestJsonObject*> *K = ContinueAction;
ContinueAction = nullptr;
K->Call(ResponseJsonObj);
}
}
//////////////////////////////////////////////////////////////////////////
// Tags
void UVaRestRequestJSON::AddTag(FName Tag)
{
if (Tag != NAME_None)
{
Tags.AddUnique(Tag);
}
}
int32 UVaRestRequestJSON::RemoveTag(FName Tag)
{
return Tags.Remove(Tag);
}
bool UVaRestRequestJSON::HasTag(FName Tag) const
{
return (Tag != NAME_None) && Tags.Contains(Tag);
}
//////////////////////////////////////////////////////////////////////////
// Data
FString UVaRestRequestJSON::GetResponseContentAsString(bool bCacheResponseContent)
{
// Check we have valide response
if (!bIsValidJsonResponse || !ResponseJsonObj || !ResponseJsonObj->IsValidLowLevel())
{
// Discard previous cached string if we had one
ResponseContent = DeprecatedResponseString;
return TEXT("Invalid response");
}
// Check if we should re-genetate it in runtime
if (!bCacheResponseContent)
{
UE_LOG(LogVaRest, Warning, TEXT("%s: Use of uncashed getter could be slow"), *VA_FUNC_LINE);
return ResponseJsonObj->EncodeJson();
}
// Check that we haven't cached content yet
if (ResponseContent == DeprecatedResponseString)
{
UE_LOG(LogVaRest, Warning, TEXT("%s: Response content string is cached"), *VA_FUNC_LINE);
ResponseContent = ResponseJsonObj->EncodeJson();
}
// Return previously cached content now
return ResponseContent;
}