clean up transfer get logic
This commit is contained in:
parent
3630d91d29
commit
af61713619
@ -15,7 +15,7 @@
|
|||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
* @file taler-exchange-httpd_transfers_get.c
|
* @file taler-exchange-httpd_transfers_get.c
|
||||||
* @brief Handle wire transfer /track/transfer requests
|
* @brief Handle wire transfer(s) GET requests
|
||||||
* @author Christian Grothoff
|
* @author Christian Grothoff
|
||||||
*/
|
*/
|
||||||
#include "platform.h"
|
#include "platform.h"
|
||||||
@ -32,38 +32,39 @@
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Detail for /wire/deposit response.
|
* Information about one of the transactions that was
|
||||||
|
* aggregated, to be returned in the /transfers response.
|
||||||
*/
|
*/
|
||||||
struct TEH_TrackTransferDetail
|
struct AggregatedDepositDetail
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* We keep deposit details in a DLL.
|
* We keep deposit details in a DLL.
|
||||||
*/
|
*/
|
||||||
struct TEH_TrackTransferDetail *next;
|
struct AggregatedDepositDetail *next;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* We keep deposit details in a DLL.
|
* We keep deposit details in a DLL.
|
||||||
*/
|
*/
|
||||||
struct TEH_TrackTransferDetail *prev;
|
struct AggregatedDepositDetail *prev;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Hash of the proposal data.
|
* Hash of the contract terms.
|
||||||
*/
|
*/
|
||||||
struct GNUNET_HashCode h_contract_terms;
|
struct GNUNET_HashCode h_contract_terms;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Coin's public key.
|
* Coin's public key of the deposited coin.
|
||||||
*/
|
*/
|
||||||
struct TALER_CoinSpendPublicKeyP coin_pub;
|
struct TALER_CoinSpendPublicKeyP coin_pub;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Total value of the coin.
|
* Total value of the coin in the deposit.
|
||||||
*/
|
*/
|
||||||
struct TALER_Amount deposit_value;
|
struct TALER_Amount deposit_value;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fees charged by the exchange for the deposit.
|
* Fees charged by the exchange for the deposit of this coin.
|
||||||
*/
|
*/
|
||||||
struct TALER_Amount deposit_fee;
|
struct TALER_Amount deposit_fee;
|
||||||
};
|
};
|
||||||
@ -83,16 +84,14 @@ struct TEH_TrackTransferDetail
|
|||||||
* @return MHD result code
|
* @return MHD result code
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
reply_track_transfer_details (struct MHD_Connection *connection,
|
reply_transfer_details (struct MHD_Connection *connection,
|
||||||
const struct TALER_Amount *total,
|
const struct TALER_Amount *total,
|
||||||
const struct
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
||||||
TALER_MerchantPublicKeyP *merchant_pub,
|
const struct GNUNET_HashCode *h_wire,
|
||||||
const struct GNUNET_HashCode *h_wire,
|
const struct TALER_Amount *wire_fee,
|
||||||
const struct TALER_Amount *wire_fee,
|
struct GNUNET_TIME_Absolute exec_time,
|
||||||
struct GNUNET_TIME_Absolute exec_time,
|
const struct AggregatedDepositDetail *wdd_head)
|
||||||
const struct TEH_TrackTransferDetail *wdd_head)
|
|
||||||
{
|
{
|
||||||
const struct TEH_TrackTransferDetail *wdd_pos;
|
|
||||||
json_t *deposits;
|
json_t *deposits;
|
||||||
struct TALER_WireDepositDetailP dd;
|
struct TALER_WireDepositDetailP dd;
|
||||||
struct GNUNET_HashContext *hash_context;
|
struct GNUNET_HashContext *hash_context;
|
||||||
@ -102,8 +101,18 @@ reply_track_transfer_details (struct MHD_Connection *connection,
|
|||||||
|
|
||||||
GNUNET_TIME_round_abs (&exec_time);
|
GNUNET_TIME_round_abs (&exec_time);
|
||||||
deposits = json_array ();
|
deposits = json_array ();
|
||||||
|
if (NULL == deposits)
|
||||||
|
{
|
||||||
|
return TALER_MHD_reply_with_error (connection,
|
||||||
|
MHD_HTTP_INTERNAL_SERVER_ERROR,
|
||||||
|
TALER_EC_JSON_ALLOCATION_FAILURE,
|
||||||
|
"json_array() failed");
|
||||||
|
|
||||||
|
}
|
||||||
hash_context = GNUNET_CRYPTO_hash_context_start ();
|
hash_context = GNUNET_CRYPTO_hash_context_start ();
|
||||||
for (wdd_pos = wdd_head; NULL != wdd_pos; wdd_pos = wdd_pos->next)
|
for (const struct AggregatedDepositDetail *wdd_pos = wdd_head;
|
||||||
|
NULL != wdd_pos;
|
||||||
|
wdd_pos = wdd_pos->next)
|
||||||
{
|
{
|
||||||
dd.h_contract_terms = wdd_pos->h_contract_terms;
|
dd.h_contract_terms = wdd_pos->h_contract_terms;
|
||||||
dd.execution_time = GNUNET_TIME_absolute_hton (exec_time);
|
dd.execution_time = GNUNET_TIME_absolute_hton (exec_time);
|
||||||
@ -115,22 +124,29 @@ reply_track_transfer_details (struct MHD_Connection *connection,
|
|||||||
GNUNET_CRYPTO_hash_context_read (hash_context,
|
GNUNET_CRYPTO_hash_context_read (hash_context,
|
||||||
&dd,
|
&dd,
|
||||||
sizeof (struct TALER_WireDepositDetailP));
|
sizeof (struct TALER_WireDepositDetailP));
|
||||||
GNUNET_assert (0 ==
|
if (0 !=
|
||||||
json_array_append_new (deposits,
|
json_array_append_new (deposits,
|
||||||
json_pack ("{s:o, s:o, s:o, s:o}",
|
json_pack ("{s:o, s:o, s:o, s:o}",
|
||||||
"h_contract_terms",
|
"h_contract_terms",
|
||||||
GNUNET_JSON_from_data_auto (
|
GNUNET_JSON_from_data_auto (
|
||||||
&wdd_pos->
|
&wdd_pos->h_contract_terms),
|
||||||
h_contract_terms),
|
"coin_pub",
|
||||||
"coin_pub",
|
GNUNET_JSON_from_data_auto (
|
||||||
GNUNET_JSON_from_data_auto (
|
&wdd_pos->coin_pub),
|
||||||
&wdd_pos->coin_pub),
|
"deposit_value",
|
||||||
"deposit_value",
|
TALER_JSON_from_amount (
|
||||||
TALER_JSON_from_amount (
|
&wdd_pos->deposit_value),
|
||||||
&wdd_pos->deposit_value),
|
"deposit_fee",
|
||||||
"deposit_fee",
|
TALER_JSON_from_amount (
|
||||||
TALER_JSON_from_amount (
|
&wdd_pos->deposit_fee))))
|
||||||
&wdd_pos->deposit_fee))));
|
{
|
||||||
|
json_decref (deposits);
|
||||||
|
GNUNET_CRYPTO_hash_context_abort (hash_context);
|
||||||
|
return TALER_MHD_reply_with_error (connection,
|
||||||
|
MHD_HTTP_INTERNAL_SERVER_ERROR,
|
||||||
|
TALER_EC_JSON_ALLOCATION_FAILURE,
|
||||||
|
"json_array_append_new() failed");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
wdp.purpose.purpose = htonl (TALER_SIGNATURE_EXCHANGE_CONFIRM_WIRE_DEPOSIT);
|
wdp.purpose.purpose = htonl (TALER_SIGNATURE_EXCHANGE_CONFIRM_WIRE_DEPOSIT);
|
||||||
wdp.purpose.size = htonl (sizeof (struct TALER_WireDepositDataPS));
|
wdp.purpose.size = htonl (sizeof (struct TALER_WireDepositDataPS));
|
||||||
@ -224,12 +240,12 @@ struct WtidTransactionContext
|
|||||||
/**
|
/**
|
||||||
* Head of DLL with details for /wire/deposit response.
|
* Head of DLL with details for /wire/deposit response.
|
||||||
*/
|
*/
|
||||||
struct TEH_TrackTransferDetail *wdd_head;
|
struct AggregatedDepositDetail *wdd_head;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Head of DLL with details for /wire/deposit response.
|
* Head of DLL with details for /wire/deposit response.
|
||||||
*/
|
*/
|
||||||
struct TEH_TrackTransferDetail *wdd_tail;
|
struct AggregatedDepositDetail *wdd_tail;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* JSON array with details about the individual deposits.
|
* JSON array with details about the individual deposits.
|
||||||
@ -249,8 +265,8 @@ struct WtidTransactionContext
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function called with the results of the lookup of the
|
* Function called with the results of the lookup of the individual deposits
|
||||||
* transaction data for the given wire transfer identifier.
|
* that were aggregated for the given wire transfer.
|
||||||
*
|
*
|
||||||
* @param cls our context for transmission
|
* @param cls our context for transmission
|
||||||
* @param rowid which row in the DB is the information from (for diagnostics), ignored
|
* @param rowid which row in the DB is the information from (for diagnostics), ignored
|
||||||
@ -265,21 +281,21 @@ struct WtidTransactionContext
|
|||||||
* @param deposit_fee deposit fee charged by exchange for this coin
|
* @param deposit_fee deposit fee charged by exchange for this coin
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
handle_transaction_data (void *cls,
|
handle_deposit_data (void *cls,
|
||||||
uint64_t rowid,
|
uint64_t rowid,
|
||||||
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
||||||
const struct GNUNET_HashCode *h_wire,
|
const struct GNUNET_HashCode *h_wire,
|
||||||
const json_t *wire,
|
const json_t *wire,
|
||||||
struct GNUNET_TIME_Absolute exec_time,
|
struct GNUNET_TIME_Absolute exec_time,
|
||||||
const struct GNUNET_HashCode *h_contract_terms,
|
const struct GNUNET_HashCode *h_contract_terms,
|
||||||
const struct TALER_DenominationPublicKey *denom_pub,
|
const struct TALER_DenominationPublicKey *denom_pub,
|
||||||
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
||||||
const struct TALER_Amount *deposit_value,
|
const struct TALER_Amount *deposit_value,
|
||||||
const struct TALER_Amount *deposit_fee)
|
const struct TALER_Amount *deposit_fee)
|
||||||
{
|
{
|
||||||
struct WtidTransactionContext *ctx = cls;
|
struct WtidTransactionContext *ctx = cls;
|
||||||
struct TALER_Amount delta;
|
struct TALER_Amount delta;
|
||||||
struct TEH_TrackTransferDetail *wdd;
|
struct AggregatedDepositDetail *wdd;
|
||||||
char *wire_method;
|
char *wire_method;
|
||||||
|
|
||||||
(void) rowid;
|
(void) rowid;
|
||||||
@ -343,7 +359,7 @@ handle_transaction_data (void *cls,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
wdd = GNUNET_new (struct TEH_TrackTransferDetail);
|
wdd = GNUNET_new (struct AggregatedDepositDetail);
|
||||||
wdd->deposit_value = *deposit_value;
|
wdd->deposit_value = *deposit_value;
|
||||||
wdd->deposit_fee = *deposit_fee;
|
wdd->deposit_fee = *deposit_fee;
|
||||||
wdd->h_contract_terms = *h_contract_terms;
|
wdd->h_contract_terms = *h_contract_terms;
|
||||||
@ -355,8 +371,30 @@ handle_transaction_data (void *cls,
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute a "/track/transfer". Returns the transaction information
|
* Free data structure reachable from @a ctx, but not @a ctx itself.
|
||||||
* associated with the given wire transfer identifier.
|
*
|
||||||
|
* @param ctx context to free
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
free_ctx (struct WtidTransactionContext *ctx)
|
||||||
|
{
|
||||||
|
struct AggregatedDepositDetail *wdd;
|
||||||
|
|
||||||
|
while (NULL != (wdd = ctx->wdd_head))
|
||||||
|
{
|
||||||
|
GNUNET_CONTAINER_DLL_remove (ctx->wdd_head,
|
||||||
|
ctx->wdd_tail,
|
||||||
|
wdd);
|
||||||
|
GNUNET_free (wdd);
|
||||||
|
}
|
||||||
|
GNUNET_free_non_null (ctx->wire_method);
|
||||||
|
ctx->wire_method = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute a "/transfers" GET operation. Returns the deposit details of the
|
||||||
|
* deposits that were aggregated to create the given wire transfer.
|
||||||
*
|
*
|
||||||
* If it returns a non-error code, the transaction logic MUST
|
* If it returns a non-error code, the transaction logic MUST
|
||||||
* NOT queue a MHD response. IF it returns an hard error, the
|
* NOT queue a MHD response. IF it returns an hard error, the
|
||||||
@ -372,10 +410,10 @@ handle_transaction_data (void *cls,
|
|||||||
* @return transaction status
|
* @return transaction status
|
||||||
*/
|
*/
|
||||||
static enum GNUNET_DB_QueryStatus
|
static enum GNUNET_DB_QueryStatus
|
||||||
track_transfer_transaction (void *cls,
|
get_transfer_deposits (void *cls,
|
||||||
struct MHD_Connection *connection,
|
struct MHD_Connection *connection,
|
||||||
struct TALER_EXCHANGEDB_Session *session,
|
struct TALER_EXCHANGEDB_Session *session,
|
||||||
int *mhd_ret)
|
int *mhd_ret)
|
||||||
{
|
{
|
||||||
struct WtidTransactionContext *ctx = cls;
|
struct WtidTransactionContext *ctx = cls;
|
||||||
enum GNUNET_DB_QueryStatus qs;
|
enum GNUNET_DB_QueryStatus qs;
|
||||||
@ -384,14 +422,13 @@ track_transfer_transaction (void *cls,
|
|||||||
struct TALER_MasterSignatureP wire_fee_master_sig;
|
struct TALER_MasterSignatureP wire_fee_master_sig;
|
||||||
struct TALER_Amount closing_fee;
|
struct TALER_Amount closing_fee;
|
||||||
|
|
||||||
ctx->is_valid = GNUNET_NO;
|
/* resetting to NULL/0 in case transaction was repeated after
|
||||||
ctx->wdd_head = NULL;
|
serialization failure */
|
||||||
ctx->wdd_tail = NULL;
|
free_ctx (ctx);
|
||||||
ctx->wire_method = NULL;
|
|
||||||
qs = TEH_plugin->lookup_wire_transfer (TEH_plugin->cls,
|
qs = TEH_plugin->lookup_wire_transfer (TEH_plugin->cls,
|
||||||
session,
|
session,
|
||||||
&ctx->wtid,
|
&ctx->wtid,
|
||||||
&handle_transaction_data,
|
&handle_deposit_data,
|
||||||
ctx);
|
ctx);
|
||||||
if (0 > qs)
|
if (0 > qs)
|
||||||
{
|
{
|
||||||
@ -460,27 +497,6 @@ track_transfer_transaction (void *cls,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Free data structure reachable from @a ctx, but not @a ctx itself.
|
|
||||||
*
|
|
||||||
* @param ctx context to free
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
free_ctx (struct WtidTransactionContext *ctx)
|
|
||||||
{
|
|
||||||
struct TEH_TrackTransferDetail *wdd;
|
|
||||||
|
|
||||||
while (NULL != (wdd = ctx->wdd_head))
|
|
||||||
{
|
|
||||||
GNUNET_CONTAINER_DLL_remove (ctx->wdd_head,
|
|
||||||
ctx->wdd_tail,
|
|
||||||
wdd);
|
|
||||||
GNUNET_free (wdd);
|
|
||||||
}
|
|
||||||
GNUNET_free_non_null (ctx->wire_method);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle a GET "/transfers/$WTID" request.
|
* Handle a GET "/transfers/$WTID" request.
|
||||||
*
|
*
|
||||||
@ -515,21 +531,21 @@ TEH_handler_transfers_get (const struct TEH_RequestHandler *rh,
|
|||||||
}
|
}
|
||||||
if (GNUNET_OK !=
|
if (GNUNET_OK !=
|
||||||
TEH_DB_run_transaction (connection,
|
TEH_DB_run_transaction (connection,
|
||||||
"run track transfer",
|
"run transfers GET",
|
||||||
&mhd_ret,
|
&mhd_ret,
|
||||||
&track_transfer_transaction,
|
&get_transfer_deposits,
|
||||||
&ctx))
|
&ctx))
|
||||||
{
|
{
|
||||||
free_ctx (&ctx);
|
free_ctx (&ctx);
|
||||||
return mhd_ret;
|
return mhd_ret;
|
||||||
}
|
}
|
||||||
mhd_ret = reply_track_transfer_details (connection,
|
mhd_ret = reply_transfer_details (connection,
|
||||||
&ctx.total,
|
&ctx.total,
|
||||||
&ctx.merchant_pub,
|
&ctx.merchant_pub,
|
||||||
&ctx.h_wire,
|
&ctx.h_wire,
|
||||||
&ctx.wire_fee,
|
&ctx.wire_fee,
|
||||||
ctx.exec_time,
|
ctx.exec_time,
|
||||||
ctx.wdd_head);
|
ctx.wdd_head);
|
||||||
free_ctx (&ctx);
|
free_ctx (&ctx);
|
||||||
return mhd_ret;
|
return mhd_ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user