2017-05-04 18:35:53 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2020-01-11 15:19:56 +01:00
|
|
|
Copyright (C) 2017--2020 Taler Systems SA
|
2017-05-04 18:35:53 +02:00
|
|
|
|
2019-04-08 23:53:52 +02:00
|
|
|
TALER is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 3,
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public
|
|
|
|
License along with TALER; see the file COPYING. If not,
|
|
|
|
see <http://www.gnu.org/licenses/>
|
2017-05-04 18:35:53 +02:00
|
|
|
*/
|
|
|
|
/**
|
2020-01-13 22:01:45 +01:00
|
|
|
* @file bank-lib/bank_api_debit.c
|
|
|
|
* @brief Implementation of the /history/outgoing
|
2019-04-08 23:53:52 +02:00
|
|
|
* requests of the bank's HTTP API.
|
2017-05-04 18:35:53 +02:00
|
|
|
* @author Christian Grothoff
|
2019-04-08 23:53:52 +02:00
|
|
|
* @author Marcello Stanisci
|
2017-05-04 18:35:53 +02:00
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include "bank_api_common.h"
|
|
|
|
#include <microhttpd.h> /* just for HTTP status codes */
|
|
|
|
#include "taler_signatures.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-26 17:48:13 +01:00
|
|
|
* @brief A /history/outgoing Handle
|
2017-05-04 18:35:53 +02:00
|
|
|
*/
|
2020-01-11 15:19:56 +01:00
|
|
|
struct TALER_BANK_DebitHistoryHandle
|
2017-05-04 18:35:53 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The url for this request.
|
|
|
|
*/
|
|
|
|
char *request_url;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle for the request.
|
|
|
|
*/
|
|
|
|
struct GNUNET_CURL_Job *job;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to call with the result.
|
|
|
|
*/
|
2020-03-03 16:35:20 +01:00
|
|
|
TALER_BANK_DebitHistoryCallback hcb;
|
2017-05-04 18:35:53 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for @a cb.
|
|
|
|
*/
|
|
|
|
void *hcb_cls;
|
2019-04-08 23:53:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-05-04 18:35:53 +02:00
|
|
|
/**
|
|
|
|
* Parse history given in JSON format and invoke the callback on each item.
|
|
|
|
*
|
|
|
|
* @param hh handle to the account history request
|
|
|
|
* @param history JSON array with the history
|
|
|
|
* @return #GNUNET_OK if history was valid and @a rhistory and @a balance
|
|
|
|
* were set,
|
|
|
|
* #GNUNET_SYSERR if there was a protocol violation in @a history
|
|
|
|
*/
|
|
|
|
static int
|
2020-01-11 15:19:56 +01:00
|
|
|
parse_account_history (struct TALER_BANK_DebitHistoryHandle *hh,
|
2017-05-04 18:35:53 +02:00
|
|
|
const json_t *history)
|
|
|
|
{
|
2017-05-11 16:24:41 +02:00
|
|
|
json_t *history_array;
|
|
|
|
|
2020-01-11 15:19:56 +01:00
|
|
|
if (NULL == (history_array = json_object_get (history,
|
2020-01-13 22:01:45 +01:00
|
|
|
"outgoing_transactions")))
|
2020-01-11 15:19:56 +01:00
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (! json_is_array (history_array))
|
2017-05-11 16:24:41 +02:00
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<json_array_size (history_array); i++)
|
2017-05-04 18:35:53 +02:00
|
|
|
{
|
2020-01-11 15:19:56 +01:00
|
|
|
struct TALER_BANK_DebitDetails td;
|
2017-12-08 17:04:11 +01:00
|
|
|
uint64_t row_id;
|
2017-05-04 18:35:53 +02:00
|
|
|
struct GNUNET_JSON_Specification hist_spec[] = {
|
|
|
|
TALER_JSON_spec_amount ("amount",
|
|
|
|
&td.amount),
|
|
|
|
GNUNET_JSON_spec_absolute_time ("date",
|
|
|
|
&td.execution_date),
|
|
|
|
GNUNET_JSON_spec_uint64 ("row_id",
|
2017-12-08 17:04:11 +01:00
|
|
|
&row_id),
|
2020-01-11 15:19:56 +01:00
|
|
|
GNUNET_JSON_spec_fixed_auto ("wtid",
|
|
|
|
&td.wtid),
|
2020-01-13 22:01:45 +01:00
|
|
|
GNUNET_JSON_spec_string ("credit_account",
|
|
|
|
&td.credit_account_url),
|
|
|
|
GNUNET_JSON_spec_string ("debit_account",
|
|
|
|
&td.debit_account_url),
|
2020-01-11 15:19:56 +01:00
|
|
|
GNUNET_JSON_spec_string ("exchange_base_url",
|
|
|
|
&td.exchange_base_url),
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_JSON_spec_end ()
|
2017-05-04 18:35:53 +02:00
|
|
|
};
|
2017-05-11 16:24:41 +02:00
|
|
|
json_t *transaction = json_array_get (history_array,
|
2017-05-04 18:35:53 +02:00
|
|
|
i);
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_JSON_parse (transaction,
|
|
|
|
hist_spec,
|
|
|
|
NULL, NULL))
|
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
hh->hcb (hh->hcb_cls,
|
|
|
|
MHD_HTTP_OK,
|
2017-12-06 19:24:00 +01:00
|
|
|
TALER_EC_NONE,
|
2017-12-08 17:04:11 +01:00
|
|
|
row_id,
|
2017-05-04 18:35:53 +02:00
|
|
|
&td,
|
|
|
|
transaction);
|
2017-12-06 19:24:00 +01:00
|
|
|
GNUNET_JSON_parse_free (hist_spec);
|
2017-05-04 18:35:53 +02:00
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called when we're done processing the
|
2020-01-26 17:48:13 +01:00
|
|
|
* HTTP /history/outgoing request.
|
2017-05-04 18:35:53 +02:00
|
|
|
*
|
2020-01-11 15:19:56 +01:00
|
|
|
* @param cls the `struct TALER_BANK_DebitHistoryHandle`
|
2017-05-04 18:35:53 +02:00
|
|
|
* @param response_code HTTP response code, 0 on error
|
2018-10-22 16:59:09 +02:00
|
|
|
* @param response parsed JSON result, NULL on error
|
2017-05-04 18:35:53 +02:00
|
|
|
*/
|
|
|
|
static void
|
2020-01-26 17:48:13 +01:00
|
|
|
handle_debit_history_finished (void *cls,
|
|
|
|
long response_code,
|
|
|
|
const void *response)
|
2017-05-04 18:35:53 +02:00
|
|
|
{
|
2020-01-11 15:19:56 +01:00
|
|
|
struct TALER_BANK_DebitHistoryHandle *hh = cls;
|
2017-12-06 19:24:00 +01:00
|
|
|
enum TALER_ErrorCode ec;
|
2018-10-22 16:59:09 +02:00
|
|
|
const json_t *j = response;
|
2017-05-04 18:35:53 +02:00
|
|
|
|
|
|
|
hh->job = NULL;
|
|
|
|
switch (response_code)
|
|
|
|
{
|
|
|
|
case 0:
|
2019-09-29 14:17:25 +02:00
|
|
|
ec = TALER_EC_INVALID_RESPONSE;
|
2017-05-04 18:35:53 +02:00
|
|
|
break;
|
|
|
|
case MHD_HTTP_OK:
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
parse_account_history (hh,
|
2018-10-22 16:59:09 +02:00
|
|
|
j))
|
2017-05-04 18:35:53 +02:00
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
response_code = 0;
|
2017-12-06 19:24:00 +01:00
|
|
|
ec = TALER_EC_INVALID_RESPONSE;
|
2017-05-04 18:35:53 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
response_code = MHD_HTTP_NO_CONTENT; /* signal end of list */
|
2017-12-08 17:07:20 +01:00
|
|
|
ec = TALER_EC_NONE;
|
2017-05-04 18:35:53 +02:00
|
|
|
break;
|
|
|
|
case MHD_HTTP_NO_CONTENT:
|
2017-12-06 19:24:00 +01:00
|
|
|
ec = TALER_EC_NONE;
|
2017-05-04 18:35:53 +02:00
|
|
|
break;
|
|
|
|
case MHD_HTTP_BAD_REQUEST:
|
|
|
|
/* This should never happen, either us or the bank is buggy
|
|
|
|
(or API version conflict); just pass JSON reply to the application */
|
2020-01-26 17:48:13 +01:00
|
|
|
GNUNET_break_op (0);
|
2020-01-16 21:02:10 +01:00
|
|
|
ec = TALER_JSON_get_error_code (j);
|
2017-05-04 18:35:53 +02:00
|
|
|
break;
|
|
|
|
case MHD_HTTP_UNAUTHORIZED:
|
2020-01-26 17:48:13 +01:00
|
|
|
/* Nothing really to verify, bank says the HTTP Authentication
|
|
|
|
failed. May happen if HTTP authentication is used and the
|
|
|
|
user supplied a wrong username/password combination. */
|
2020-01-16 21:02:10 +01:00
|
|
|
ec = TALER_JSON_get_error_code (j);
|
2017-05-04 18:35:53 +02:00
|
|
|
break;
|
|
|
|
case MHD_HTTP_NOT_FOUND:
|
2020-01-26 17:48:13 +01:00
|
|
|
/* Nothing really to verify: the bank is either unaware
|
|
|
|
of the endpoint (not a bank), or of the account.
|
|
|
|
We should pass the JSON (?) reply to the application */
|
2020-01-16 21:02:10 +01:00
|
|
|
ec = TALER_JSON_get_error_code (j);
|
2017-05-04 18:35:53 +02:00
|
|
|
break;
|
|
|
|
case MHD_HTTP_INTERNAL_SERVER_ERROR:
|
|
|
|
/* Server had an internal issue; we should retry, but this API
|
|
|
|
leaves this to the application */
|
2020-01-16 21:02:10 +01:00
|
|
|
ec = TALER_JSON_get_error_code (j);
|
2017-05-04 18:35:53 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* unexpected response code */
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Unexpected response code %u\n",
|
|
|
|
(unsigned int) response_code);
|
2020-01-26 17:48:13 +01:00
|
|
|
GNUNET_break_op (0);
|
2020-01-16 21:02:10 +01:00
|
|
|
ec = TALER_JSON_get_error_code (j);
|
2017-05-04 18:35:53 +02:00
|
|
|
response_code = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
hh->hcb (hh->hcb_cls,
|
|
|
|
response_code,
|
2017-12-06 19:24:00 +01:00
|
|
|
ec,
|
2017-05-04 18:35:53 +02:00
|
|
|
0LLU,
|
|
|
|
NULL,
|
2018-10-22 16:59:09 +02:00
|
|
|
j);
|
2020-01-11 15:19:56 +01:00
|
|
|
TALER_BANK_debit_history_cancel (hh);
|
2019-04-08 23:53:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-11 15:19:56 +01:00
|
|
|
* Request the debit history of the exchange's bank account.
|
2017-05-04 18:35:53 +02:00
|
|
|
*
|
|
|
|
* @param ctx curl context for the event loop
|
|
|
|
* @param auth authentication data to use
|
2019-04-08 23:53:52 +02:00
|
|
|
* @param start_row from which row on do we want to get results,
|
|
|
|
* use UINT64_MAX for the latest; exclusive
|
|
|
|
* @param num_results how many results do we want;
|
|
|
|
* negative numbers to go into the past, positive numbers
|
|
|
|
* to go into the future starting at @a start_row;
|
|
|
|
* must not be zero.
|
|
|
|
* @param hres_cb the callback to call with the transaction
|
|
|
|
* history
|
2017-05-04 18:35:53 +02:00
|
|
|
* @param hres_cb_cls closure for the above callback
|
2019-04-08 23:53:52 +02:00
|
|
|
* @return NULL if the inputs are invalid (i.e. zero value for
|
|
|
|
* @e num_results). In this case, the callback is not
|
|
|
|
* called.
|
2017-05-04 18:35:53 +02:00
|
|
|
*/
|
2020-01-11 15:19:56 +01:00
|
|
|
struct TALER_BANK_DebitHistoryHandle *
|
|
|
|
TALER_BANK_debit_history (struct GNUNET_CURL_Context *ctx,
|
|
|
|
const struct TALER_BANK_AuthenticationData *auth,
|
|
|
|
uint64_t start_row,
|
|
|
|
int64_t num_results,
|
2020-03-03 16:35:20 +01:00
|
|
|
TALER_BANK_DebitHistoryCallback hres_cb,
|
2020-01-11 15:19:56 +01:00
|
|
|
void *hres_cb_cls)
|
2017-05-04 18:35:53 +02:00
|
|
|
{
|
|
|
|
char *url;
|
2020-01-11 15:19:56 +01:00
|
|
|
struct TALER_BANK_DebitHistoryHandle *hh;
|
|
|
|
CURL *eh;
|
2017-05-04 18:35:53 +02:00
|
|
|
|
|
|
|
if (0 == num_results)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-12-14 00:34:35 +01:00
|
|
|
|
2020-01-13 22:01:45 +01:00
|
|
|
if ( ( (UINT64_MAX == start_row) &&
|
|
|
|
(0 > num_results) ) ||
|
|
|
|
( (0 == start_row) &&
|
|
|
|
(0 < num_results) ) )
|
2019-06-03 00:26:53 +02:00
|
|
|
GNUNET_asprintf (&url,
|
2020-01-16 21:57:40 +01:00
|
|
|
"history/outgoing?delta=%lld",
|
2020-01-11 15:19:56 +01:00
|
|
|
(long long) num_results);
|
2019-06-03 00:26:53 +02:00
|
|
|
else
|
|
|
|
GNUNET_asprintf (&url,
|
2020-01-16 21:57:40 +01:00
|
|
|
"history/outgoing?delta=%lld&start=%llu",
|
2019-06-03 00:26:53 +02:00
|
|
|
(long long) num_results,
|
|
|
|
start_row);
|
2020-01-11 15:19:56 +01:00
|
|
|
hh = GNUNET_new (struct TALER_BANK_DebitHistoryHandle);
|
|
|
|
hh->hcb = hres_cb;
|
|
|
|
hh->hcb_cls = hres_cb_cls;
|
2020-01-18 04:39:52 +01:00
|
|
|
hh->request_url = TALER_url_join (auth->wire_gateway_url,
|
2020-01-16 21:57:40 +01:00
|
|
|
url,
|
|
|
|
NULL);
|
|
|
|
GNUNET_free (url);
|
|
|
|
if (NULL == hh->request_url)
|
|
|
|
{
|
|
|
|
GNUNET_free (hh);
|
|
|
|
GNUNET_break (0);
|
|
|
|
return NULL;
|
|
|
|
}
|
2020-01-14 15:57:36 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2020-01-13 22:01:45 +01:00
|
|
|
"Requesting history at `%s'\n",
|
|
|
|
hh->request_url);
|
2020-01-11 15:19:56 +01:00
|
|
|
eh = curl_easy_init ();
|
|
|
|
if ( (GNUNET_OK !=
|
|
|
|
TALER_BANK_setup_auth_ (eh,
|
|
|
|
auth)) ||
|
|
|
|
(CURLE_OK !=
|
|
|
|
curl_easy_setopt (eh,
|
|
|
|
CURLOPT_URL,
|
|
|
|
hh->request_url)) )
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
TALER_BANK_debit_history_cancel (hh);
|
|
|
|
curl_easy_cleanup (eh);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
hh->job = GNUNET_CURL_job_add2 (ctx,
|
|
|
|
eh,
|
|
|
|
NULL,
|
2020-01-26 17:48:13 +01:00
|
|
|
&handle_debit_history_finished,
|
2020-01-11 15:19:56 +01:00
|
|
|
hh);
|
2017-05-04 18:35:53 +02:00
|
|
|
return hh;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-04-08 23:53:52 +02:00
|
|
|
* Cancel a history request. This function cannot be
|
|
|
|
* used on a request handle if a response is already
|
|
|
|
* served for it.
|
2017-05-04 18:35:53 +02:00
|
|
|
*
|
|
|
|
* @param hh the history request handle
|
|
|
|
*/
|
|
|
|
void
|
2020-01-11 15:19:56 +01:00
|
|
|
TALER_BANK_debit_history_cancel (struct TALER_BANK_DebitHistoryHandle *hh)
|
2017-05-04 18:35:53 +02:00
|
|
|
{
|
|
|
|
if (NULL != hh->job)
|
|
|
|
{
|
|
|
|
GNUNET_CURL_job_cancel (hh->job);
|
|
|
|
hh->job = NULL;
|
|
|
|
}
|
|
|
|
GNUNET_free (hh->request_url);
|
|
|
|
GNUNET_free (hh);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-11 15:19:56 +01:00
|
|
|
/* end of bank_api_debit.c */
|