Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: swap #165

Merged
merged 2 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Config/DefaultImmutable.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@


[/Script/Immutable.ImtblSwapRequest]
BaseUrls=((Sandbox, "https://checkout-playground.sandbox.immutable.com/checkout/swap"),(Production, "https://toolkit.immutable.com/checkout/swap"))
ApiKeys=((Sandbox, "pk_imapik-test-7-hfC5T$W$eEDE8Mc5mp"),(Production, "pk_imapik-WGd9orNd8mLdtTCTb3CP"))

Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
#include "Immutable/Marketplace/ImtblSwapRequest.h"

#include "GenericPlatform/GenericPlatformHttp.h"

FString FImtblSwapRequestQueryParams::GetPercentEncodedUrl() const
{
TArray<FString> QueryParams;

if (!PublishableKey.IsEmpty())
{
QueryParams.Add(FString::Printf(TEXT("%s=%s"), TEXT("publishableKey"), *FGenericPlatformHttp::UrlEncode(PublishableKey)));
}

if (!FromTokenAddress.IsEmpty())
{
QueryParams.Add(FString::Printf(TEXT("%s=%s"), TEXT("fromTokenAddress"), *FGenericPlatformHttp::UrlEncode(FromTokenAddress)));
}

if (!ToTokenAddress.IsEmpty())
{
QueryParams.Add(FString::Printf(TEXT("%s=%s"), TEXT("toTokenAddress"), *FGenericPlatformHttp::UrlEncode(ToTokenAddress)));
}

return FString::Join(QueryParams, TEXT("&"));
}

bool UImtblSwapRequest::GetBaseUrl(EImtblEnvironment Environment, FString& BaseUrl) const
{
if (const FString* Find = BaseUrls.Find(Environment))
{
BaseUrl = *Find;

return true;
}

return true;
}

bool UImtblSwapRequest::GetApiKey(EImtblEnvironment Environment, FString& ApiKey) const
{
if (const FString* Find = ApiKeys.Find(Environment))
{
ApiKey = *Find;

return true;
}

return false;
}

bool UImtblSwapRequest::ComputePath(FString& ComputedPath, EImtblEnvironment Environment, FString FromTokenAddress, FString ToTokenAddress) const
{
FString BaseUrl;
bool bFoundBaseUrl = GetBaseUrl(Environment, BaseUrl);

if (!bFoundBaseUrl)
{
return false;
}

FString ApiKey;
bool bFoundApiKey = GetApiKey(Environment, ApiKey);

if (!bFoundApiKey)
{
return false;
}

FImtblSwapRequestQueryParams QueryParams;
QueryParams.PublishableKey = ApiKey;
QueryParams.FromTokenAddress = FromTokenAddress;
QueryParams.ToTokenAddress = ToTokenAddress;

const FString QueryParamsPercentEncodedUrl = QueryParams.GetPercentEncodedUrl();

ComputedPath = FString::Printf
(
TEXT("%s%s%s"),
*BaseUrl,
!QueryParamsPercentEncodedUrl.IsEmpty() ? TEXT("?") : TEXT(""),
*QueryParamsPercentEncodedUrl
);

return true;
}
6 changes: 3 additions & 3 deletions Source/Immutable/Public/Immutable/ApplicationConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ class IMMUTABLE_API UApplicationConfig : public UObject
{
switch (Environment)
{
case EPassportEnvironment::Production:
case EImtblEnvironment::Production:
return ImmutablePassportEnvironmentConstants::EnvironmentProduction;
default:
case EPassportEnvironment::Sandbox:
case EImtblEnvironment::Sandbox:
return ImmutablePassportEnvironmentConstants::EnvironmentProduction;
}
}
Expand Down Expand Up @@ -159,7 +159,7 @@ class IMMUTABLE_API UApplicationConfig : public UObject
* @note The default environment is set to the Sandbox environment.
*/
UPROPERTY(EditDefaultsOnly, Category = "Passport")
EPassportEnvironment Environment = EPassportEnvironment::Sandbox;
EImtblEnvironment Environment = EImtblEnvironment::Sandbox;

/**
* (Android, iOS, and macOS only)
Expand Down
5 changes: 3 additions & 2 deletions Source/Immutable/Public/Immutable/ImmutableEnums.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#pragma once

UENUM(BlueprintType)
enum class EPassportEnvironment : uint8
enum class EImtblEnvironment : uint8
{
Development,
Sandbox,
Production,
MAX
};

ENUM_RANGE_BY_COUNT(EImtblEnvironment, EImtblEnvironment::MAX)
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
#pragma once

#include "ImtblSwapRequest.generated.h"

enum class EImtblEnvironment : uint8;

/**
* Swap request query params
*/
USTRUCT(BlueprintType)
struct FImtblSwapRequestQueryParams
{
GENERATED_BODY()

public:
FString GetPercentEncodedUrl() const;

public:
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Immutable")
FString PublishableKey;

UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Immutable")
FString FromTokenAddress;

UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Immutable")
FString ToTokenAddress;
};

/**
* Functionality to generate swap requests
*/
UCLASS(BlueprintType, Config = "Immutable", DefaultConfig)
class IMMUTABLE_API UImtblSwapRequest : public UObject
{
GENERATED_BODY()

public:
/**
* Finds the base url associated with the environment.
*
* @param Environment The environment that will be used to look the value up. Only sandbox and production environment are supported.
* @param BaseUrl The base url associated with the key.
* @return True if an item was found (False indicates nothing in the map uses the provided environment).
*/
UFUNCTION(BlueprintPure, Category = "Immutable")
bool GetBaseUrl(EImtblEnvironment Environment, FString& BaseUrl) const;

/**
* Finds the api key associated with the provided key.
*
* @param Environment The environment that will be used to look the value up. Only sandbox and production environment are supported.
* @param ApiKey The api key associated with the key.
* @return True if an item was found (False indicates nothing in the map uses the provided environment).
*/
UFUNCTION(BlueprintPure, Category = "Immutable")
bool GetApiKey(EImtblEnvironment Environment, FString& ApiKey) const;

/**
* Generates a link for the swap flow.
*
* @param ComputedPath [Out] The generated link.
* @param Environment [In] The environment for which the path is being computed for (e.g. sandbox, production).
* @param ToTokenAddress [Optional] The token address of the token being swapped from. Default value is an empty string.
* @param FromTokenAddress [Optional] The token address of the token being swapped to. Default value is an empty string.
*
* @return True if path was computed (False indicates link failed to compute).
*/
UFUNCTION(BlueprintCallable, BlueprintPure = "False", Category = "Immutable")
bool ComputePath(FString& ComputedPath, EImtblEnvironment Environment, FString FromTokenAddress = TEXT(""), FString ToTokenAddress = TEXT("")) const;

public:
UPROPERTY(Config, EditDefaultsOnly, BlueprintReadOnly, Category = "Immutable")
TMap<EImtblEnvironment, FString> BaseUrls;

UPROPERTY(Config, EditDefaultsOnly, BlueprintReadOnly, Category = "Immutable")
TMap<EImtblEnvironment, FString> ApiKeys;
};
Loading