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 309
/
VaRestRequestJSON.cpp
643 lines (519 loc) · 15.7 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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
// Copyright 2014-2019 Vladimir Alyamkin. All Rights Reserved.
#include "VaRestRequestJSON.h"
#include "VaRestDefines.h"
#include "VaRestJsonObject.h"
#include "VaRestJsonValue.h"
#include "VaRestLibrary.h"
#include "VaRestSettings.h"
#include "Engine/Engine.h"
#include "Engine/LatentActionManager.h"
#include "Engine/World.h"
#include "Interfaces/IHttpResponse.h"
#include "Serialization/JsonSerializer.h"
#include "Serialization/JsonWriter.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 = EVaRestRequestVerb::GET;
RequestContentType = EVaRestRequestContentType::x_www_form_urlencoded_url;
ResetData();
}
void UVaRestRequestJSON::SetVerb(EVaRestRequestVerb Verb)
{
RequestVerb = Verb;
}
void UVaRestRequestJSON::SetCustomVerb(FString Verb)
{
CustomVerb = Verb;
}
void UVaRestRequestJSON::SetContentType(EVaRestRequestContentType 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>();
}
if (ResponseJsonValue != nullptr)
{
ResponseJsonValue->Reset();
}
else
{
ResponseJsonValue = NewObject<UVaRestJsonValue>();
}
ResponseHeaders.Empty();
ResponseCode = -1;
ResponseSize = 0;
bIsValidJsonResponse = false;
// #127 Reset string to deprecated state
ResponseContent = DeprecatedResponseString;
ResponseBytes.Empty();
ResponseContentLength = 0;
}
void UVaRestRequestJSON::Cancel()
{
ContinueAction = nullptr;
ResetResponseData();
}
//////////////////////////////////////////////////////////////////////////
// JSON data accessors
UVaRestJsonObject* UVaRestRequestJSON::GetRequestObject() const
{
check(RequestJsonObj);
return RequestJsonObj;
}
void UVaRestRequestJSON::SetRequestObject(UVaRestJsonObject* JsonObject)
{
if (JsonObject == nullptr)
{
UE_LOG(LogVaRest, Error, TEXT("%s: Provided JsonObject is nullptr"), *VA_FUNC_LINE);
return;
}
RequestJsonObj = JsonObject;
}
UVaRestJsonObject* UVaRestRequestJSON::GetResponseObject() const
{
check(ResponseJsonObj);
return ResponseJsonObj;
}
void UVaRestRequestJSON::SetResponseObject(UVaRestJsonObject* JsonObject)
{
if (JsonObject == nullptr)
{
UE_LOG(LogVaRest, Error, TEXT("%s: Provided JsonObject is nullptr"), *VA_FUNC_LINE);
return;
}
ResponseJsonObj = JsonObject;
}
UVaRestJsonValue* UVaRestRequestJSON::GetResponseValue() const
{
check(ResponseJsonValue);
return ResponseJsonValue;
}
///////////////////////////////////////////////////////////////////////////
// Response data access
FString UVaRestRequestJSON::GetURL() const
{
return HttpRequest->GetURL();
}
EVaRestRequestVerb UVaRestRequestJSON::GetVerb() const
{
return RequestVerb;
}
EVaRestRequestStatus UVaRestRequestJSON::GetStatus() const
{
return EVaRestRequestStatus((uint8)HttpRequest->GetStatus());
}
int32 UVaRestRequestJSON::GetResponseCode() const
{
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() const
{
TArray<FString> Result;
for (TMap<FString, FString>::TConstIterator It(ResponseHeaders); It; ++It)
{
Result.Add(It.Key() + TEXT(": ") + It.Value());
}
return Result;
}
int32 UVaRestRequestJSON::GetResponseContentLength() const
{
return ResponseContentLength;
}
const TArray<uint8>& UVaRestRequestJSON::GetResponseContent() const
{
return ResponseBytes;
}
//////////////////////////////////////////////////////////////////////////
// URL processing
void UVaRestRequestJSON::SetURL(const FString& Url)
{
// Be sure to trim URL because it can break links on iOS
FString TrimmedUrl = Url;
TrimmedUrl.TrimStartInline();
TrimmedUrl.TrimEndInline();
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;
TrimmedUrl.TrimStartInline();
TrimmedUrl.TrimEndInline();
HttpRequest->SetURL(TrimmedUrl);
// Prepare latent action
if (UWorld* World = GEngine->GetWorldFromContextObjectChecked(WorldContextObject))
{
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()
{
// Force add to root once request is launched
AddToRoot();
// Set verb
switch (RequestVerb)
{
case EVaRestRequestVerb::GET:
HttpRequest->SetVerb(TEXT("GET"));
break;
case EVaRestRequestVerb::POST:
HttpRequest->SetVerb(TEXT("POST"));
break;
case EVaRestRequestVerb::PUT:
HttpRequest->SetVerb(TEXT("PUT"));
break;
case EVaRestRequestVerb::DEL:
HttpRequest->SetVerb(TEXT("DELETE"));
break;
case EVaRestRequestVerb::CUSTOM:
HttpRequest->SetVerb(CustomVerb);
break;
default:
break;
}
// Set content-type
switch (RequestContentType)
{
case EVaRestRequestContentType::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);
}
// Check extended log to avoid security vulnerability (#133)
if (UVaRestLibrary::GetVaRestSettings()->bExtendedLog)
{
UE_LOG(LogVaRest, Log, TEXT("%s: Request (urlencoded): %s %s %s %s"), *VA_FUNC_LINE, *HttpRequest->GetVerb(), *HttpRequest->GetURL(), *UrlParams, *StringRequestContent);
}
else
{
UE_LOG(LogVaRest, Log, TEXT("%s: Request (urlencoded): %s %s (check bExtendedLog for additional data)"), *VA_FUNC_LINE, *HttpRequest->GetVerb(), *HttpRequest->GetURL());
}
break;
}
case EVaRestRequestContentType::x_www_form_urlencoded_body:
{
HttpRequest->SetHeader(TEXT("Content-Type"), TEXT("application/x-www-form-urlencoded"));
FString UrlParams = "";
uint16 ParamIdx = 0;
// Add optional string content
if (!StringRequestContent.IsEmpty())
{
UrlParams = StringRequestContent;
}
else
{
// 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);
// Check extended log to avoid security vulnerability (#133)
if (UVaRestLibrary::GetVaRestSettings()->bExtendedLog)
{
UE_LOG(LogVaRest, Log, TEXT("%s: Request (url body): %s %s %s"), *VA_FUNC_LINE, *HttpRequest->GetVerb(), *HttpRequest->GetURL(), *UrlParams);
}
else
{
UE_LOG(LogVaRest, Log, TEXT("%s: Request (url body): %s %s (check bExtendedLog for additional data)"), *VA_FUNC_LINE, *HttpRequest->GetVerb(), *HttpRequest->GetURL());
}
break;
}
case EVaRestRequestContentType::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 EVaRestRequestContentType::json:
{
HttpRequest->SetHeader(TEXT("Content-Type"), TEXT("application/json"));
// Body is ignored for get requests, so we shouldn't place json into it even if it's empty
if (RequestVerb == EVaRestRequestVerb::GET)
{
break;
}
// Serialize data to json string
FString OutputString;
TSharedRef<TJsonWriter<>> Writer = TJsonWriterFactory<>::Create(&OutputString);
FJsonSerializer::Serialize(RequestJsonObj->GetRootObject(), Writer);
// Set Json content
HttpRequest->SetContentAsString(OutputString);
if (UVaRestLibrary::GetVaRestSettings()->bExtendedLog)
{
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);
}
else
{
UE_LOG(LogVaRest, Log, TEXT("Request (json): %s %s (check bExtendedLog for additional data)"), *HttpRequest->GetVerb(), *HttpRequest->GetURL());
}
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)
{
// Remove from root on completion
RemoveFromRoot();
// 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_DESKTOP
// 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);
}
}
if (UVaRestLibrary::GetVaRestSettings()->bUseChunkedParser)
{
// Try to deserialize data to JSON
const TArray<uint8>& Bytes = Response->GetContent();
ResponseSize = ResponseJsonObj->DeserializeFromUTF8Bytes((const ANSICHAR*)Bytes.GetData(), Bytes.Num());
// Log errors
if (ResponseSize == 0)
{
// 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!"));
}
}
else
{
// Use default unreal one
const TSharedRef<TJsonReader<>> Reader = TJsonReaderFactory<>::Create(*Response->GetContentAsString());
TSharedPtr<FJsonValue> OutJsonValue;
if (FJsonSerializer::Deserialize(Reader, OutJsonValue))
{
ResponseJsonValue->SetRootValue(OutJsonValue);
if (ResponseJsonValue->GetType() == EVaJson::Object)
{
ResponseJsonObj->SetRootObject(ResponseJsonValue->GetRootValue()->AsObject());
ResponseSize = Response->GetContentLength();
}
}
}
// Decide whether the request was successful
bIsValidJsonResponse = bWasSuccessful && (ResponseSize > 0);
if (!bIsValidJsonResponse)
{
// Save response data as a string
ResponseContent = Response->GetContentAsString();
ResponseSize = ResponseContent.GetAllocatedSize();
ResponseBytes = Response->GetContent();
ResponseContentLength = Response->GetContentLength();
}
// Broadcast the result events on next tick
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 valid json response
if (!bIsValidJsonResponse)
{
// We've cached response content in OnProcessRequestComplete()
return ResponseContent;
}
// Check we have valid response object
if (!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;
}