summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-04-26 13:34:18 +0200
committerChristian Grothoff <christian@grothoff.org>2022-04-26 13:34:18 +0200
commit932cef3d8cd5d569a8847d8fadf73165ff95cfc3 (patch)
tree8508df4969017c063bb860ed0f348e7f2b75e8bd /src
parentefb8c8037b0d9e4d0407e62156b0021f790ad974 (diff)
downloadexchange-932cef3d8cd5d569a8847d8fadf73165ff95cfc3.tar.gz
exchange-932cef3d8cd5d569a8847d8fadf73165ff95cfc3.tar.bz2
exchange-932cef3d8cd5d569a8847d8fadf73165ff95cfc3.zip
-complete purses_get draft implementation
Diffstat (limited to 'src')
-rw-r--r--src/exchange/taler-exchange-httpd_purses_get.c42
-rw-r--r--src/exchangedb/plugin_exchangedb_postgres.c43
-rw-r--r--src/include/taler_exchangedb_plugin.h4
3 files changed, 45 insertions, 44 deletions
diff --git a/src/exchange/taler-exchange-httpd_purses_get.c b/src/exchange/taler-exchange-httpd_purses_get.c
index 325272884..ca24adbe9 100644
--- a/src/exchange/taler-exchange-httpd_purses_get.c
+++ b/src/exchange/taler-exchange-httpd_purses_get.c
@@ -72,11 +72,6 @@ struct GetContext
struct GNUNET_TIME_Timestamp merge_timestamp;
/**
- * When was the full amount deposited into this purse?
- */
- struct GNUNET_TIME_Timestamp deposit_timestamp;
-
- /**
* How much is the purse (supposed) to be worth?
*/
struct TALER_Amount amount;
@@ -304,8 +299,7 @@ TEH_handler_purses_get (struct TEH_RequestContext *rc,
&gc->amount,
&gc->deposited,
&gc->h_contract,
- &gc->merge_timestamp,
- &gc->deposit_timestamp);
+ &gc->merge_timestamp);
switch (qs)
{
case GNUNET_DB_STATUS_HARD_ERROR:
@@ -343,9 +337,11 @@ TEH_handler_purses_get (struct TEH_RequestContext *rc,
if (GNUNET_TIME_absolute_is_future (gc->timeout) &&
( ((gc->wait_for_merge) &&
- GNUNET_TIME_absolute_is_zero (gc->merge_timestamp.abs_time)) ||
+ GNUNET_TIME_absolute_is_never (gc->merge_timestamp.abs_time)) ||
((! gc->wait_for_merge) &&
- GNUNET_TIME_absolute_is_zero (gc->deposit_timestamp.abs_time)) ))
+ (0 <
+ TALER_amount_cmp (&gc->amount,
+ &gc->deposited))) ) )
{
gc->suspended = true;
GNUNET_CONTAINER_DLL_insert (gc_head,
@@ -355,16 +351,24 @@ TEH_handler_purses_get (struct TEH_RequestContext *rc,
return MHD_YES;
}
- // FIXME: add exchange signature!?
- // FIXME: return amount?
- res = TALER_MHD_REPLY_JSON_PACK (
- rc->connection,
- MHD_HTTP_OK,
- GNUNET_JSON_pack_timestamp ("merge_timestamp",
- gc->merge_timestamp),
- GNUNET_JSON_pack_timestamp ("deposit_timestamp",
- gc->deposit_timestamp)
- );
+ {
+ struct GNUNET_TIME_Timestamp dt = GNUNET_TIME_timestamp_get ();
+
+ if (GNUNET_TIME_timestamp_cmp (dt,
+ >,
+ gc->purse_expiration))
+ dt = gc->purse_expiration;
+ // FIXME: add exchange signature!?
+ // FIXME: return amount?
+ res = TALER_MHD_REPLY_JSON_PACK (
+ rc->connection,
+ MHD_HTTP_OK,
+ GNUNET_JSON_pack_timestamp ("merge_timestamp",
+ gc->merge_timestamp),
+ GNUNET_JSON_pack_timestamp ("deposit_timestamp",
+ dt)
+ );
+ }
return res;
}
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c
index af4cbc780..8091cba41 100644
--- a/src/exchangedb/plugin_exchangedb_postgres.c
+++ b/src/exchangedb/plugin_exchangedb_postgres.c
@@ -3470,6 +3470,22 @@ prepare_statements (struct PostgresClosure *pg)
" ($1, $2, $3, $4, $5, $6, $7, $8)"
" ON CONFLICT DO NOTHING;",
8),
+ /* Used in #postgres_select_purse */
+ GNUNET_PQ_make_prepare (
+ "select_purse",
+ "SELECT "
+ " merge_pub"
+ ",purse_expiration"
+ ",h_contract_terms"
+ ",amount_with_fee_val"
+ ",amount_with_fee_frac"
+ ",balance_val"
+ ",balance_frac"
+ ",merge_timestamp"
+ " FROM purse_requests"
+ " WHERE purse_pub=$1"
+ " LEFT JOIN purse_merges ON (purse_pub);",
+ 1),
/* Used in #postgres_select_purse_request */
GNUNET_PQ_make_prepare (
"select_purse_request",
@@ -13361,7 +13377,6 @@ postgres_insert_purse_request (
* @param[out] deposited set to actual amount put into the purse so far
* @param[out] h_contract_terms set to hash of the contract for the purse
* @param[out] merge_timestamp set to time when the purse was merged, or NEVER if not
- * @param[out] deposit_timestamp set to time when the deposited amount reached the target amount, or NEVER if not
* @return transaction status code
*/
static enum GNUNET_DB_QueryStatus
@@ -13372,8 +13387,7 @@ postgres_select_purse (
struct TALER_Amount *amount,
struct TALER_Amount *deposited,
struct TALER_PrivateContractHashP *h_contract_terms,
- struct GNUNET_TIME_Timestamp *merge_timestamp,
- struct GNUNET_TIME_Timestamp *deposit_timestamp)
+ struct GNUNET_TIME_Timestamp *merge_timestamp)
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_QueryParam params[] = {
@@ -13393,29 +13407,14 @@ postgres_select_purse (
GNUNET_PQ_result_spec_timestamp ("merge_timestamp",
merge_timestamp),
NULL),
- GNUNET_PQ_result_spec_allow_null (
- GNUNET_PQ_result_spec_timestamp ("deposit_timestamp",
- deposit_timestamp),
- NULL),
GNUNET_PQ_result_spec_end
};
- enum GNUNET_DB_QueryStatus qs;
*merge_timestamp = GNUNET_TIME_UNIT_FOREVER_TS;
- *deposit_timestamp = GNUNET_TIME_UNIT_FOREVER_TS;
- qs = GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
- "select_purse_request",
- params,
- rs);
- if ( (qs > 0) &&
- (0 <
- TALER_amount_cmp (amount,
- deposited)) )
- {
- /* not yet enough */
- *deposit_timestamp = GNUNET_TIME_UNIT_FOREVER_TS;
- }
- return qs;
+ return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
+ "select_purse",
+ params,
+ rs);
}
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h
index 27b0d1b0f..b347ac56c 100644
--- a/src/include/taler_exchangedb_plugin.h
+++ b/src/include/taler_exchangedb_plugin.h
@@ -4556,7 +4556,6 @@ struct TALER_EXCHANGEDB_Plugin
* @param[out] deposited set to actual amount put into the purse so far
* @param[out] h_contract_terms set to hash of the contract for the purse
* @param[out] merge_timestamp set to time when the purse was merged, or NEVER if not
- * @param[out] deposit_timestamp set to time when the deposited amount reached the target amount, or NEVER if not
* @return transaction status code
*/
enum GNUNET_DB_QueryStatus
@@ -4567,8 +4566,7 @@ struct TALER_EXCHANGEDB_Plugin
struct TALER_Amount *amount,
struct TALER_Amount *deposited,
struct TALER_PrivateContractHashP *h_contract_terms,
- struct GNUNET_TIME_Timestamp *merge_timestamp,
- struct GNUNET_TIME_Timestamp *deposit_timestamp);
+ struct GNUNET_TIME_Timestamp *merge_timestamp);
/**