ussd/remote/accountservice.go

274 lines
8.1 KiB
Go
Raw Permalink Normal View History

2024-10-30 14:09:15 +01:00
package remote
import (
2024-11-07 14:41:08 +01:00
"bytes"
2024-10-23 11:45:54 +02:00
"context"
"encoding/json"
"errors"
"io"
2024-11-07 14:46:12 +01:00
"log"
"net/http"
2024-10-31 02:28:37 +01:00
"net/url"
"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"
)
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)
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)
TokenTransfer(ctx context.Context, amount, from, to, tokenAddress string) (*models.TokenTransferResponse, error)
}
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.
// If no error occurs, this will be nil
func (as *AccountService) TrackAccountStatus(ctx context.Context, publicKey string) (*models.TrackStatusResult, error) {
2024-10-31 02:28:37 +01:00
var r models.TrackStatusResult
ep, err := url.JoinPath(config.TrackURL, publicKey)
if err != nil {
return nil, err
}
2024-10-31 02:28:37 +01:00
req, err := http.NewRequest("GET", ep, nil)
if err != nil {
return nil, err
}
_, err = doRequest(ctx, req, &r)
if err != nil {
return nil, err
}
2024-10-31 02:28:37 +01:00
return &r, nil
}
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
ep, err := url.JoinPath(config.BalanceURL, publicKey)
if err != nil {
return nil, err
}
2024-10-31 02:28:37 +01:00
req, err := http.NewRequest("GET", ep, nil)
if err != nil {
return nil, err
}
2024-10-31 02:28:37 +01:00
_, err = doRequest(ctx, req, &balanceResult)
2024-10-31 02:28:37 +01:00
return &balanceResult, err
}
// 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
// Create a new request
req, err := http.NewRequest("POST", config.CreateAccountURL, nil)
if err != nil {
return nil, err
}
_, 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) {
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
}
_, err = doRequest(ctx, req, &r)
2024-10-31 02:28:37 +01:00
if err != nil {
return nil, err
}
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) {
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
}
_, err = doRequest(ctx, req, &r)
2024-11-02 17:38:29 +01:00
if err != nil {
return nil, err
}
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) {
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
}
_, err = doRequest(ctx, req, &r)
return &r.TokenDetails, err
2024-11-03 15:34:26 +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
}
_, err = doRequest(ctx, req, &r)
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
req.Header.Set("Authorization", "Bearer "+config.BearerToken)
2024-10-31 02:28:37 +01:00
req.Header.Set("Content-Type", "application/json")
logRequestDetails(req)
resp, err := http.DefaultClient.Do(req)
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())
errResponse.Description = err.Error()
return nil, err
}
defer resp.Body.Close()
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"))
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, err
}
if resp.StatusCode >= http.StatusBadRequest {
err := json.Unmarshal([]byte(body), &errResponse)
if err != nil {
return nil, err
}
return nil, errors.New(errResponse.Description)
}
err = json.Unmarshal([]byte(body), &okResponse)
if err != nil {
return nil, err
}
2024-10-24 15:21:34 +02:00
if len(okResponse.Result) == 0 {
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
}