2024-10-30 14:09:15 +01:00
|
|
|
package remote
|
2024-08-29 18:55:08 +02:00
|
|
|
|
|
|
|
import (
|
2024-11-07 14:41:08 +01:00
|
|
|
"bytes"
|
2024-10-23 11:45:54 +02:00
|
|
|
"context"
|
2024-08-29 18:55:08 +02:00
|
|
|
"encoding/json"
|
2024-10-24 09:00:38 +02:00
|
|
|
"errors"
|
2024-08-29 18:55:08 +02:00
|
|
|
"io"
|
2024-11-07 14:46:12 +01:00
|
|
|
"log"
|
2024-08-29 18:55:08 +02:00
|
|
|
"net/http"
|
2024-10-31 02:28:37 +01:00
|
|
|
"net/url"
|
2024-08-29 18:55:08 +02:00
|
|
|
|
|
|
|
"git.grassecon.net/urdt/ussd/config"
|
2024-11-03 02:44:57 +01:00
|
|
|
"git.grassecon.net/urdt/ussd/models"
|
2024-11-07 14:46:12 +01:00
|
|
|
"github.com/grassrootseconomics/eth-custodial/pkg/api"
|
|
|
|
dataserviceapi "github.com/grassrootseconomics/ussd-data-service/pkg/api"
|
2024-08-29 18:55:08 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type AccountServiceInterface interface {
|
2024-10-31 02:28:37 +01:00
|
|
|
CheckBalance(ctx context.Context, publicKey string) (*models.BalanceResult, error)
|
|
|
|
CreateAccount(ctx context.Context) (*models.AccountResult, error)
|
2024-10-31 13:15:07 +01:00
|
|
|
TrackAccountStatus(ctx context.Context, publicKey string) (*models.TrackStatusResult, error)
|
2024-10-31 02:28:37 +01:00
|
|
|
FetchVouchers(ctx context.Context, publicKey string) ([]dataserviceapi.TokenHoldings, error)
|
2024-11-02 17:38:29 +01:00
|
|
|
FetchTransactions(ctx context.Context, publicKey string) ([]dataserviceapi.Last10TxResponse, error)
|
2024-11-03 15:34:26 +01:00
|
|
|
VoucherData(ctx context.Context, address string) (*models.VoucherDataResult, error)
|
2024-11-14 18:02:48 +01:00
|
|
|
TokenTransfer(ctx context.Context, amount, from, to, tokenAddress string) (*models.TokenTransferResponse, error)
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type AccountService struct {
|
|
|
|
}
|
|
|
|
|
2024-08-30 08:15:04 +02:00
|
|
|
// Parameters:
|
|
|
|
// - trackingId: A unique identifier for the account.This should be obtained from a previous call to
|
|
|
|
// CreateAccount or a similar function that returns an AccountResponse. The `trackingId` field in the
|
|
|
|
// AccountResponse struct can be used here to check the account status during a transaction.
|
|
|
|
//
|
|
|
|
// Returns:
|
|
|
|
// - string: The status of the transaction as a string. If there is an error during the request or processing, this will be an empty string.
|
|
|
|
// - error: An error if any occurred during the HTTP request, reading the response, or unmarshalling the JSON data.
|
2024-10-17 15:08:18 +02:00
|
|
|
// If no error occurs, this will be nil
|
2024-10-31 13:38:31 +01:00
|
|
|
func (as *AccountService) TrackAccountStatus(ctx context.Context, publicKey string) (*models.TrackStatusResult, error) {
|
2024-10-31 02:28:37 +01:00
|
|
|
var r models.TrackStatusResult
|
|
|
|
|
2024-10-31 13:38:31 +01:00
|
|
|
ep, err := url.JoinPath(config.TrackURL, publicKey)
|
2024-08-29 18:55:08 +02:00
|
|
|
if err != nil {
|
2024-10-15 12:48:14 +02:00
|
|
|
return nil, err
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
|
|
|
|
2024-10-31 02:28:37 +01:00
|
|
|
req, err := http.NewRequest("GET", ep, nil)
|
2024-08-29 18:55:08 +02:00
|
|
|
if err != nil {
|
2024-10-15 12:48:14 +02:00
|
|
|
return nil, err
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
2024-10-17 15:08:18 +02:00
|
|
|
|
2024-11-15 16:37:20 +01:00
|
|
|
_, err = doRequest(ctx, req, &r)
|
2024-08-29 18:55:08 +02:00
|
|
|
if err != nil {
|
2024-10-15 12:48:14 +02:00
|
|
|
return nil, err
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
2024-10-17 15:08:18 +02:00
|
|
|
|
2024-10-31 02:28:37 +01:00
|
|
|
return &r, nil
|
2024-10-17 15:08:18 +02:00
|
|
|
}
|
|
|
|
|
2024-08-30 08:15:04 +02:00
|
|
|
// CheckBalance retrieves the balance for a given public key from the custodial balance API endpoint.
|
|
|
|
// Parameters:
|
|
|
|
// - publicKey: The public key associated with the account whose balance needs to be checked.
|
2024-10-31 02:28:37 +01:00
|
|
|
func (as *AccountService) CheckBalance(ctx context.Context, publicKey string) (*models.BalanceResult, error) {
|
|
|
|
var balanceResult models.BalanceResult
|
|
|
|
|
2024-10-31 13:15:07 +01:00
|
|
|
ep, err := url.JoinPath(config.BalanceURL, publicKey)
|
2024-08-29 18:55:08 +02:00
|
|
|
if err != nil {
|
2024-10-15 12:48:14 +02:00
|
|
|
return nil, err
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
2024-10-31 02:28:37 +01:00
|
|
|
|
|
|
|
req, err := http.NewRequest("GET", ep, nil)
|
2024-08-29 18:55:08 +02:00
|
|
|
if err != nil {
|
2024-10-15 12:48:14 +02:00
|
|
|
return nil, err
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
2024-10-31 02:28:37 +01:00
|
|
|
|
2024-11-15 16:37:20 +01:00
|
|
|
_, err = doRequest(ctx, req, &balanceResult)
|
2024-10-31 02:28:37 +01:00
|
|
|
return &balanceResult, err
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
|
|
|
|
2024-10-15 12:48:14 +02:00
|
|
|
// CreateAccount creates a new account in the custodial system.
|
2024-08-30 08:15:04 +02:00
|
|
|
// Returns:
|
|
|
|
// - *models.AccountResponse: A pointer to an AccountResponse struct containing the details of the created account.
|
|
|
|
// If there is an error during the request or processing, this will be nil.
|
|
|
|
// - error: An error if any occurred during the HTTP request, reading the response, or unmarshalling the JSON data.
|
|
|
|
// If no error occurs, this will be nil.
|
2024-10-31 02:28:37 +01:00
|
|
|
func (as *AccountService) CreateAccount(ctx context.Context) (*models.AccountResult, error) {
|
|
|
|
var r models.AccountResult
|
2024-10-17 15:08:18 +02:00
|
|
|
// Create a new request
|
|
|
|
req, err := http.NewRequest("POST", config.CreateAccountURL, nil)
|
2024-08-29 18:55:08 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-11-15 16:37:20 +01:00
|
|
|
_, err = doRequest(ctx, req, &r)
|
2024-10-31 02:28:37 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &r, nil
|
|
|
|
}
|
|
|
|
|
2024-11-02 17:38:29 +01:00
|
|
|
// FetchVouchers retrieves the token holdings for a given public key from the data indexer API endpoint
|
2024-10-31 02:28:37 +01:00
|
|
|
// Parameters:
|
|
|
|
// - publicKey: The public key associated with the account.
|
|
|
|
func (as *AccountService) FetchVouchers(ctx context.Context, publicKey string) ([]dataserviceapi.TokenHoldings, error) {
|
2024-11-15 16:37:20 +01:00
|
|
|
var r struct {
|
|
|
|
Holdings []dataserviceapi.TokenHoldings `json:"holdings"`
|
|
|
|
}
|
2024-10-31 02:28:37 +01:00
|
|
|
|
2024-11-02 17:38:29 +01:00
|
|
|
ep, err := url.JoinPath(config.VoucherHoldingsURL, publicKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := http.NewRequest("GET", ep, nil)
|
2024-10-31 02:28:37 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-11-15 16:37:20 +01:00
|
|
|
_, err = doRequest(ctx, req, &r)
|
2024-10-31 02:28:37 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-11-15 16:37:20 +01:00
|
|
|
return r.Holdings, nil
|
2024-10-31 02:28:37 +01:00
|
|
|
}
|
|
|
|
|
2024-11-02 17:38:29 +01:00
|
|
|
// FetchTransactions retrieves the last 10 transactions for a given public key from the data indexer API endpoint
|
|
|
|
// Parameters:
|
|
|
|
// - publicKey: The public key associated with the account.
|
|
|
|
func (as *AccountService) FetchTransactions(ctx context.Context, publicKey string) ([]dataserviceapi.Last10TxResponse, error) {
|
2024-11-15 16:37:20 +01:00
|
|
|
var r struct {
|
|
|
|
Transfers []dataserviceapi.Last10TxResponse `json:"transfers"`
|
|
|
|
}
|
2024-11-02 17:38:29 +01:00
|
|
|
|
|
|
|
ep, err := url.JoinPath(config.VoucherTransfersURL, publicKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := http.NewRequest("GET", ep, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-11-15 16:37:20 +01:00
|
|
|
_, err = doRequest(ctx, req, &r)
|
2024-11-02 17:38:29 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-11-15 16:37:20 +01:00
|
|
|
return r.Transfers, nil
|
2024-11-02 17:38:29 +01:00
|
|
|
}
|
|
|
|
|
2024-11-03 15:34:26 +01:00
|
|
|
// VoucherData retrieves voucher metadata from the data indexer API endpoint.
|
|
|
|
// Parameters:
|
|
|
|
// - address: The voucher address.
|
|
|
|
func (as *AccountService) VoucherData(ctx context.Context, address string) (*models.VoucherDataResult, error) {
|
2024-11-15 19:03:29 +01:00
|
|
|
var r struct {
|
|
|
|
TokenDetails models.VoucherDataResult `json:"tokenDetails"`
|
|
|
|
}
|
2024-11-03 15:34:26 +01:00
|
|
|
|
|
|
|
ep, err := url.JoinPath(config.VoucherDataURL, address)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := http.NewRequest("GET", ep, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-11-15 19:03:29 +01:00
|
|
|
_, err = doRequest(ctx, req, &r)
|
|
|
|
return &r.TokenDetails, err
|
2024-11-03 15:34:26 +01:00
|
|
|
}
|
|
|
|
|
2024-11-14 18:02:48 +01:00
|
|
|
// TokenTransfer creates a new token transfer in the custodial system.
|
|
|
|
// Returns:
|
|
|
|
// - *models.TokenTransferResponse: A pointer to an TokenTransferResponse struct containing the trackingId.
|
|
|
|
// If there is an error during the request or processing, this will be nil.
|
|
|
|
// - error: An error if any occurred during the HTTP request, reading the response, or unmarshalling the JSON data.
|
|
|
|
// If no error occurs, this will be nil.
|
|
|
|
func (as *AccountService) TokenTransfer(ctx context.Context, amount, from, to, tokenAddress string) (*models.TokenTransferResponse, error) {
|
|
|
|
var r models.TokenTransferResponse
|
|
|
|
|
|
|
|
// Create request payload
|
|
|
|
payload := map[string]string{
|
|
|
|
"amount": amount,
|
|
|
|
"from": from,
|
|
|
|
"to": to,
|
|
|
|
"tokenAddress": tokenAddress,
|
|
|
|
}
|
|
|
|
|
|
|
|
payloadBytes, err := json.Marshal(payload)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new request
|
|
|
|
req, err := http.NewRequest("POST", config.TokenTransferURL, bytes.NewBuffer(payloadBytes))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-11-15 16:37:20 +01:00
|
|
|
_, err = doRequest(ctx, req, &r)
|
2024-11-14 18:02:48 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &r, nil
|
|
|
|
}
|
|
|
|
|
2024-10-31 02:28:37 +01:00
|
|
|
func doRequest(ctx context.Context, req *http.Request, rcpt any) (*api.OKResponse, error) {
|
2024-11-07 14:46:12 +01:00
|
|
|
var okResponse api.OKResponse
|
2024-10-31 02:28:37 +01:00
|
|
|
var errResponse api.ErrResponse
|
2024-11-15 16:37:20 +01:00
|
|
|
|
|
|
|
req.Header.Set("Authorization", "Bearer "+config.BearerToken)
|
2024-10-31 02:28:37 +01:00
|
|
|
req.Header.Set("Content-Type", "application/json")
|
2024-11-15 16:37:20 +01:00
|
|
|
|
|
|
|
logRequestDetails(req)
|
|
|
|
|
2024-10-17 15:08:18 +02:00
|
|
|
resp, err := http.DefaultClient.Do(req)
|
2024-08-29 18:55:08 +02:00
|
|
|
if err != nil {
|
2024-11-11 14:32:17 +01:00
|
|
|
log.Printf("Failed to make %s request to endpoint: %s with reason: %s", req.Method, req.URL, err.Error())
|
2024-10-17 15:08:18 +02:00
|
|
|
errResponse.Description = err.Error()
|
2024-08-29 18:55:08 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
2024-10-17 15:08:18 +02:00
|
|
|
|
2024-11-11 14:32:17 +01:00
|
|
|
log.Printf("Received response for %s: Status Code: %d | Content-Type: %s", req.URL, resp.StatusCode, resp.Header.Get("Content-Type"))
|
2024-08-29 18:55:08 +02:00
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-10-24 15:35:53 +02:00
|
|
|
if resp.StatusCode >= http.StatusBadRequest {
|
2024-10-17 15:08:18 +02:00
|
|
|
err := json.Unmarshal([]byte(body), &errResponse)
|
|
|
|
if err != nil {
|
2024-10-24 09:00:38 +02:00
|
|
|
return nil, err
|
2024-10-17 15:08:18 +02:00
|
|
|
}
|
2024-10-24 09:00:38 +02:00
|
|
|
return nil, errors.New(errResponse.Description)
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
2024-10-24 15:35:53 +02:00
|
|
|
err = json.Unmarshal([]byte(body), &okResponse)
|
2024-08-29 18:55:08 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-10-24 15:21:34 +02:00
|
|
|
if len(okResponse.Result) == 0 {
|
2024-10-24 09:00:38 +02:00
|
|
|
return nil, errors.New("Empty api result")
|
|
|
|
}
|
2024-10-08 12:41:09 +02:00
|
|
|
|
2024-10-31 02:28:37 +01:00
|
|
|
v, err := json.Marshal(okResponse.Result)
|
2024-10-08 12:41:09 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-10-08 13:34:21 +02:00
|
|
|
|
2024-10-31 02:28:37 +01:00
|
|
|
err = json.Unmarshal(v, &rcpt)
|
|
|
|
return &okResponse, err
|
|
|
|
}
|
|
|
|
|
2024-11-07 22:17:02 +01:00
|
|
|
func logRequestDetails(req *http.Request) {
|
2024-11-07 14:41:08 +01:00
|
|
|
var bodyBytes []byte
|
|
|
|
contentType := req.Header.Get("Content-Type")
|
|
|
|
if req.Body != nil {
|
|
|
|
bodyBytes, err := io.ReadAll(req.Body)
|
|
|
|
if err != nil {
|
2024-11-11 14:32:17 +01:00
|
|
|
log.Printf("Error reading request body: %s", err)
|
2024-11-07 14:41:08 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
req.Body = io.NopCloser(bytes.NewBuffer(bodyBytes))
|
|
|
|
} else {
|
|
|
|
bodyBytes = []byte("-")
|
|
|
|
}
|
|
|
|
|
2024-11-11 14:32:17 +01:00
|
|
|
log.Printf("URL: %s | Content-Type: %s | Method: %s| Request Body: %s", req.URL, contentType, req.Method, string(bodyBytes))
|
2024-11-07 14:41:08 +01:00
|
|
|
}
|