2024-08-29 18:55:08 +02:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
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-10-17 15:08:18 +02:00
|
|
|
"fmt"
|
2024-08-29 18:55:08 +02:00
|
|
|
"io"
|
|
|
|
"net/http"
|
2024-10-08 12:41:09 +02:00
|
|
|
"os"
|
2024-08-29 18:55:08 +02:00
|
|
|
|
|
|
|
"git.grassecon.net/urdt/ussd/config"
|
|
|
|
"git.grassecon.net/urdt/ussd/internal/models"
|
2024-10-21 10:09:37 +02:00
|
|
|
"github.com/grassrootseconomics/eth-custodial/pkg/api"
|
2024-08-29 18:55:08 +02:00
|
|
|
)
|
|
|
|
|
2024-10-24 09:00:38 +02:00
|
|
|
var (
|
2024-10-24 15:21:34 +02:00
|
|
|
okResponse api.OKResponse
|
|
|
|
errResponse api.ErrResponse
|
2024-08-29 18:55:08 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type AccountServiceInterface interface {
|
2024-10-24 16:32:08 +02:00
|
|
|
CheckBalance(ctx context.Context, publicKey string) (*models.BalanceResponse, error)
|
2024-10-24 16:07:11 +02:00
|
|
|
CreateAccount(ctx context.Context) (*api.OKResponse, error)
|
2024-10-24 16:32:08 +02:00
|
|
|
CheckAccountStatus(ctx context.Context, trackingId string) (*models.TrackStatusResponse, error)
|
|
|
|
TrackAccountStatus(ctx context.Context, publicKey string) (*api.OKResponse, error)
|
2024-10-24 19:44:29 +02:00
|
|
|
FetchVouchers(ctx context.Context, publicKey string) (*models.VoucherHoldingResponse, 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-24 16:32:08 +02:00
|
|
|
func (as *AccountService) CheckAccountStatus(ctx context.Context, trackingId string) (*models.TrackStatusResponse, error) {
|
2024-10-17 15:08:18 +02:00
|
|
|
resp, err := http.Get(config.BalanceURL + trackingId)
|
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
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
|
|
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-08-29 18:55:08 +02:00
|
|
|
var trackResp models.TrackStatusResponse
|
|
|
|
err = json.Unmarshal(body, &trackResp)
|
|
|
|
if err != nil {
|
2024-10-15 12:48:14 +02:00
|
|
|
return nil, err
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
2024-10-15 12:48:14 +02:00
|
|
|
return &trackResp, nil
|
2024-10-17 15:08:18 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-10-24 16:32:08 +02:00
|
|
|
func (as *AccountService) TrackAccountStatus(ctx context.Context, publicKey string) (*api.OKResponse, error) {
|
2024-10-17 15:08:18 +02:00
|
|
|
var err error
|
|
|
|
// Construct the URL with the path parameter
|
|
|
|
url := fmt.Sprintf("%s/%s", config.TrackURL, publicKey)
|
|
|
|
req, err := http.NewRequest("GET", url, nil)
|
|
|
|
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
|
|
|
|
2024-10-17 15:08:18 +02:00
|
|
|
req.Header.Set("Content-Type", "application/json")
|
|
|
|
req.Header.Set("X-GE-KEY", "xd")
|
|
|
|
|
|
|
|
resp, err := http.DefaultClient.Do(req)
|
|
|
|
if err != nil {
|
2024-10-24 09:00:38 +02:00
|
|
|
return nil, err
|
2024-10-17 15:08:18 +02:00
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
errResponse.Description = err.Error()
|
2024-10-24 09:00:38 +02:00
|
|
|
return nil, err
|
2024-10-17 15:08:18 +02:00
|
|
|
}
|
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-10-24 15:35:53 +02:00
|
|
|
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 {
|
2024-10-24 09:00:38 +02:00
|
|
|
return nil, errors.New("Empty api result")
|
2024-10-17 15:08:18 +02:00
|
|
|
}
|
2024-10-24 09:00:38 +02:00
|
|
|
return &okResponse, nil
|
|
|
|
|
2024-08-29 18:55:08 +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-24 16:32:08 +02:00
|
|
|
func (as *AccountService) CheckBalance(ctx context.Context, publicKey string) (*models.BalanceResponse, error) {
|
2024-08-29 18:55:08 +02:00
|
|
|
resp, err := http.Get(config.BalanceURL + publicKey)
|
|
|
|
if err != nil {
|
2024-10-15 12:48:14 +02:00
|
|
|
return nil, err
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
2024-10-15 12:48:14 +02:00
|
|
|
return nil, err
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
|
|
|
var balanceResp models.BalanceResponse
|
|
|
|
err = json.Unmarshal(body, &balanceResp)
|
|
|
|
if err != nil {
|
2024-10-15 12:48:14 +02:00
|
|
|
return nil, err
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
2024-10-15 12:48:14 +02:00
|
|
|
return &balanceResp, nil
|
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-24 16:07:11 +02:00
|
|
|
func (as *AccountService) CreateAccount(ctx context.Context) (*api.OKResponse, error) {
|
2024-10-17 15:08:18 +02:00
|
|
|
var err error
|
|
|
|
|
|
|
|
// 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-10-17 15:08:18 +02:00
|
|
|
req.Header.Set("Content-Type", "application/json")
|
|
|
|
req.Header.Set("X-GE-KEY", "xd")
|
|
|
|
|
|
|
|
resp, err := http.DefaultClient.Do(req)
|
2024-08-29 18:55:08 +02:00
|
|
|
if err != nil {
|
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-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")
|
|
|
|
}
|
|
|
|
return &okResponse, nil
|
2024-08-29 18:55:08 +02:00
|
|
|
}
|
2024-10-08 12:41:09 +02:00
|
|
|
|
2024-10-05 15:56:49 +02:00
|
|
|
// FetchVouchers retrieves the token holdings for a given public key from the custodial holdings API endpoint
|
|
|
|
// Parameters:
|
|
|
|
// - publicKey: The public key associated with the account.
|
2024-10-24 19:44:29 +02:00
|
|
|
func (as *AccountService) FetchVouchers(ctx context.Context, publicKey string) (*models.VoucherHoldingResponse, error) {
|
2024-10-08 12:41:09 +02:00
|
|
|
file, err := os.Open("sample_tokens.json")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer file.Close()
|
2024-10-08 13:34:21 +02:00
|
|
|
var holdings models.VoucherHoldingResponse
|
|
|
|
|
|
|
|
if err := json.NewDecoder(file).Decode(&holdings); err != nil {
|
2024-10-08 12:41:09 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2024-10-08 13:34:21 +02:00
|
|
|
return &holdings, nil
|
2024-10-08 12:41:09 +02:00
|
|
|
}
|