|
| 1 | +// Copyright (c) 2024 Thirdweb. All Rights Reserved. |
| 2 | + |
| 3 | +#include "AsyncTasks/Engine/AsyncTaskThirdwebEngineWriteContract.h" |
| 4 | + |
| 5 | +#include "HttpModule.h" |
| 6 | +#include "ThirdwebLog.h" |
| 7 | +#include "ThirdwebRuntimeSettings.h" |
| 8 | +#include "ThirdwebUtils.h" |
| 9 | + |
| 10 | +#include "Dom/JsonObject.h" |
| 11 | + |
| 12 | +#include "Interfaces/IHttpResponse.h" |
| 13 | + |
| 14 | +#include "Kismet/KismetStringLibrary.h" |
| 15 | + |
| 16 | +TSharedPtr<FJsonObject> FThirdwebTransactionOverrides::ToJson() const |
| 17 | +{ |
| 18 | + TSharedPtr<FJsonObject> JsonObject = MakeShareable(new FJsonObject); |
| 19 | + if (Gas > 0) |
| 20 | + { |
| 21 | + JsonObject->SetStringField(TEXT("gas"), FString::Printf(TEXT("%lld"), Gas)); |
| 22 | + } |
| 23 | + if (MaxFeePerGas > 0) |
| 24 | + { |
| 25 | + JsonObject->SetStringField(TEXT("maxFeePerGas"), FString::Printf(TEXT("%lld"), MaxFeePerGas)); |
| 26 | + } |
| 27 | + if (MaxPriorityFeePerGas > 0) |
| 28 | + { |
| 29 | + JsonObject->SetStringField(TEXT("maxPriorityFeePerGas"), FString::Printf(TEXT("%lld"), MaxPriorityFeePerGas)); |
| 30 | + } |
| 31 | + if (Value > 0) |
| 32 | + { |
| 33 | + JsonObject->SetStringField(TEXT("value"), FString::Printf(TEXT("%lld"), Value)); |
| 34 | + } |
| 35 | + return JsonObject; |
| 36 | +} |
| 37 | + |
| 38 | +UAsyncTaskThirdwebEngineWriteContract* UAsyncTaskThirdwebEngineWriteContract::WriteContract( |
| 39 | + UObject* WorldContextObject, |
| 40 | + const int64 ChainId, |
| 41 | + const FString& ContractAddress, |
| 42 | + const FString& BackendWalletAddress, |
| 43 | + const FSmartWalletHandle& SmartWallet, |
| 44 | + const FString& FactoryAddress, |
| 45 | + const FString& IdempotencyKey, |
| 46 | + const FString& FunctionName, |
| 47 | + const TArray<FString>& Args, |
| 48 | + const FThirdwebTransactionOverrides& TxOverrides, |
| 49 | + const FString& Abi, |
| 50 | + const bool bSimulateTx) |
| 51 | +{ |
| 52 | + if (!WorldContextObject) |
| 53 | + { |
| 54 | + return nullptr; |
| 55 | + } |
| 56 | + NEW_TASK |
| 57 | + Task->ChainId = ChainId; |
| 58 | + Task->ContractAddress = ContractAddress.TrimStartAndEnd(); |
| 59 | + Task->BackendWalletAddress = BackendWalletAddress.TrimStartAndEnd(); |
| 60 | + Task->SmartWallet = SmartWallet; |
| 61 | + Task->FactoryAddress = FactoryAddress.TrimStartAndEnd(); |
| 62 | + Task->IdempotencyKey = IdempotencyKey.TrimStartAndEnd(); |
| 63 | + Task->FunctionName = FunctionName.TrimStartAndEnd(); |
| 64 | + Task->Args = Args; |
| 65 | + Task->TxOverrides = TxOverrides; |
| 66 | + Task->Abi = Abi.TrimStartAndEnd(); |
| 67 | + Task->bSimulateTx = bSimulateTx; |
| 68 | + Task->RegisterWithGameInstance(WorldContextObject); |
| 69 | + return Task; |
| 70 | +} |
| 71 | + |
| 72 | +void UAsyncTaskThirdwebEngineWriteContract::Activate() |
| 73 | +{ |
| 74 | + FHttpModule& HttpModule = FHttpModule::Get(); |
| 75 | + const TSharedRef<IHttpRequest> Request = HttpModule.CreateRequest(); |
| 76 | + Request->SetVerb(TEXT("POST")); |
| 77 | + Request->SetHeader(TEXT("Content-Type"), TEXT("application/json")); |
| 78 | + Request->SetHeader(TEXT("authorization"), TEXT("Bearer ") + UThirdwebRuntimeSettings::GetEngineAccessToken()); |
| 79 | + Request->SetHeader(TEXT("x-backend-wallet-address"), BackendWalletAddress); |
| 80 | + if (!IdempotencyKey.IsEmpty()) |
| 81 | + { |
| 82 | + Request->SetHeader(TEXT("x-idempotency-key"), IdempotencyKey); |
| 83 | + } |
| 84 | + if (SmartWallet.IsValid()) |
| 85 | + { |
| 86 | + Request->SetHeader(TEXT("x-account-address"), SmartWallet.ToAddress()); |
| 87 | + } |
| 88 | + if (!FactoryAddress.IsEmpty()) |
| 89 | + { |
| 90 | + Request->SetHeader(TEXT("x-account-factory-address"), FactoryAddress); |
| 91 | + } |
| 92 | + |
| 93 | + TSharedPtr<FJsonObject> JsonObject = MakeShareable(new FJsonObject); |
| 94 | + JsonObject->SetStringField(TEXT("functionName"), FunctionName); |
| 95 | + TArray<TSharedPtr<FJsonValue>> JsonArgs; |
| 96 | + for (const FString& Arg : Args) |
| 97 | + { |
| 98 | + JsonArgs.Emplace(MakeShareable(new FJsonValueString(Arg))); |
| 99 | + } |
| 100 | + JsonObject->SetArrayField(TEXT("args"), JsonArgs); |
| 101 | + if (!TxOverrides.IsDefault()) |
| 102 | + { |
| 103 | + JsonObject->SetObjectField(TEXT("txOverrides"), TxOverrides.ToJson()); |
| 104 | + } |
| 105 | + if (!Abi.IsEmpty()) |
| 106 | + { |
| 107 | + JsonObject->SetArrayField(TEXT("abi"), ThirdwebUtils::Json::ToJsonArray(Abi)); |
| 108 | + } |
| 109 | + FString Content = ThirdwebUtils::Json::ToString(JsonObject); |
| 110 | + Request->SetContentAsString(Content); |
| 111 | + Request->SetURL( |
| 112 | + FString::Format( |
| 113 | + TEXT("{0}/contract/{1}/{2}/write{3}"), |
| 114 | + { |
| 115 | + UThirdwebRuntimeSettings::GetEngineBaseUrl(), |
| 116 | + FString::Printf(TEXT("%lld"), ChainId), |
| 117 | + ContractAddress, |
| 118 | + bSimulateTx ? TEXT("?simulateTx=true") : TEXT("") |
| 119 | + } |
| 120 | + ) |
| 121 | + ); |
| 122 | + ThirdwebUtils::Internal::LogRequest(Request, {UThirdwebRuntimeSettings::GetEngineAccessToken()}); |
| 123 | + Request->SetTimeout(30.0f); |
| 124 | + Request->OnProcessRequestComplete().BindUObject(this, &ThisClass::HandleResponse); |
| 125 | + Request->ProcessRequest(); |
| 126 | +} |
| 127 | + |
| 128 | +void UAsyncTaskThirdwebEngineWriteContract::HandleResponse(FHttpRequestPtr, FHttpResponsePtr Response, bool bConnectedSuccessfully) |
| 129 | +{ |
| 130 | + if (bConnectedSuccessfully) |
| 131 | + { |
| 132 | + const FString Content = Response->GetContentAsString(); |
| 133 | + if (TSharedPtr<FJsonObject> JsonObject = ThirdwebUtils::Json::ToJson(Content); JsonObject.IsValid()) |
| 134 | + { |
| 135 | + TW_LOG(Verbose, TEXT("UAsyncTaskThirdwebEngineWriteContract::HandleResponse::Content=%s"), *Content) |
| 136 | + if (JsonObject->HasTypedField<EJson::String>(TEXT("error"))) |
| 137 | + { |
| 138 | + FString Error = TEXT("Unknown Error"); |
| 139 | + if (JsonObject->HasTypedField<EJson::String>(TEXT("message"))) |
| 140 | + { |
| 141 | + Error = JsonObject->GetStringField(TEXT("message")); |
| 142 | + } |
| 143 | + return HandleFailed(Error); |
| 144 | + } |
| 145 | + FString QueueId = TEXT("Unknown"); |
| 146 | + if (JsonObject->HasTypedField<EJson::String>(TEXT("queueId"))) |
| 147 | + { |
| 148 | + QueueId = JsonObject->GetStringField(TEXT("queueId")); |
| 149 | + } |
| 150 | + Success.Broadcast(QueueId, TEXT("")); |
| 151 | + SetReadyToDestroy(); |
| 152 | + } |
| 153 | + else return HandleFailed(TEXT("Invalid Response")); |
| 154 | + } |
| 155 | + else return HandleFailed(TEXT("Network connection failed")); |
| 156 | +} |
| 157 | + |
| 158 | +void UAsyncTaskThirdwebEngineWriteContract::HandleFailed(const FString& Error) |
| 159 | +{ |
| 160 | + Failed.Broadcast(TEXT(""), Error); |
| 161 | + SetReadyToDestroy(); |
| 162 | +} |
0 commit comments