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: marketplace bridge (#3191) #166

Merged
merged 2 commits into from
Jan 22, 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
2 changes: 2 additions & 0 deletions Config/DefaultImmutable.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
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"))

[/Script/Immutable.ImtblBridgeRequest]
BaseUrls=((Sandbox, "https://checkout-playground.sandbox.immutable.com/checkout/squid"),(Production, "https://toolkit.immutable.com/checkout/squid"))
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
#include "Immutable/Marketplace/ImtblBridgeRequest.h"

#include "GenericPlatform/GenericPlatformHttp.h"

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

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

if (!FromTokenAddress.IsEmpty())
ImmutableJeffrey marked this conversation as resolved.
Show resolved Hide resolved
{
// Token address is case-sensitive.
QueryParams.Add(FString::Printf(TEXT("%s=%s"), TEXT("fromToken"), *FGenericPlatformHttp::UrlEncode(FromTokenAddress.ToLower())));
}

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

if (!ToTokenAddress.IsEmpty())
{
// Token address is case-sensitive.
QueryParams.Add(FString::Printf(TEXT("%s=%s"), TEXT("toToken"), *FGenericPlatformHttp::UrlEncode(ToTokenAddress.ToLower())));
}

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

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

return true;
}

return true;
}

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

if (!bFoundBaseUrl)
{
return false;
}

FImtblBridgeRequestQueryParams QueryParams;
QueryParams.FromChainID = FromChainID;
QueryParams.FromTokenAddress = FromTokenAddress;
QueryParams.ToChainID = ToChainID;
QueryParams.ToTokenAddress = ToTokenAddress;

const FString QueryParamsPercentEncodedUrl = QueryParams.GetPercentEncodedUrl();

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

return true;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
#pragma once

#include "ImtblBridgeRequest.generated.h"

/**
* Bridge request query params
*/
USTRUCT(BlueprintType)
struct FImtblBridgeRequestQueryParams
{
GENERATED_BODY()

public:
FString GetPercentEncodedUrl() const;

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

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

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

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

/**
* Functionality to generate bridge requests
*/
UCLASS(BlueprintType, Config = "Immutable", DefaultConfig)
class IMMUTABLE_API UImtblBridgeRequest : 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;

/**
* Generates a link for the bridge 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 FromChainID [Optional] The ID of the source blockchain. Default value is an empty string.
* @param FromTokenAddress [Optional] The contract address of the token being bridged from.
* This should be a contract address of a token on the source blockchain.
* Default value is an empty string.
* @param ToChainID [Optional] The ID of the destination blockchain. Default value is an empty string.
* @param ToTokenAddress [Optional] The contract address of the token being bridged to.
* This should be a contract address of a token on the destination blockchain.
* Default is an empty string.
*
* @return True if link was computed (False indicates link failed to compute).
*/
UFUNCTION(BlueprintCallable, BlueprintPure = "False", Category = "Immutable")
bool ComputePath(FString& ComputedPath, EImtblEnvironment Environment, FString FromChainID = TEXT(""), FString FromTokenAddress = TEXT(""), FString ToChainID = TEXT(""), FString ToTokenAddress = TEXT("")) const;

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