2016-10-06 15:17:10 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2021-08-23 08:24:59 +02:00
|
|
|
Copyright (C) 2014-2021 Taler Systems SA
|
2016-10-06 15:17:10 +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/>
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file plugin_auditordb_postgres.c
|
|
|
|
* @brief Low-level (statement-level) Postgres database access for the auditor
|
|
|
|
* @author Christian Grothoff
|
2016-11-06 14:24:17 +01:00
|
|
|
* @author Gabor X Toth
|
2016-10-06 15:17:10 +02:00
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include "taler_pq_lib.h"
|
|
|
|
#include "taler_auditordb_plugin.h"
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <libpq-fe.h>
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
#define LOG(kind,...) GNUNET_log_from (kind, "taler-auditordb-postgres", \
|
|
|
|
__VA_ARGS__)
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Wrapper macro to add the currency from the plugin's state
|
|
|
|
* when fetching amounts from the database.
|
|
|
|
*
|
|
|
|
* @param field name of the database field to fetch amount from
|
2020-01-17 23:01:17 +01:00
|
|
|
* @param[out] amountp pointer to amount to set
|
2019-08-17 21:35:21 +02:00
|
|
|
*/
|
2020-03-13 14:55:58 +01:00
|
|
|
#define TALER_PQ_RESULT_SPEC_AMOUNT(field,amountp) \
|
|
|
|
TALER_PQ_result_spec_amount ( \
|
2019-08-25 16:18:24 +02:00
|
|
|
field,pg->currency,amountp)
|
2019-08-17 21:35:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrapper macro to add the currency from the plugin's state
|
|
|
|
* when fetching amounts from the database. NBO variant.
|
|
|
|
*
|
|
|
|
* @param field name of the database field to fetch amount from
|
2020-01-17 23:01:17 +01:00
|
|
|
* @param[out] amountp pointer to amount to set
|
2019-08-17 21:35:21 +02:00
|
|
|
*/
|
2019-08-25 16:18:24 +02:00
|
|
|
#define TALER_PQ_RESULT_SPEC_AMOUNT_NBO(field, \
|
|
|
|
amountp) TALER_PQ_result_spec_amount_nbo ( \
|
|
|
|
field,pg->currency,amountp)
|
2019-08-17 21:35:21 +02:00
|
|
|
|
|
|
|
|
2016-10-06 15:17:10 +02:00
|
|
|
/**
|
2021-08-23 08:24:59 +02:00
|
|
|
* Type of the "cls" argument given to each of the functions in
|
|
|
|
* our API.
|
2016-10-06 15:17:10 +02:00
|
|
|
*/
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure
|
2016-10-06 15:17:10 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
|
2016-10-06 15:17:10 +02:00
|
|
|
/**
|
|
|
|
* Postgres connection handle.
|
|
|
|
*/
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_Context *conn;
|
2020-01-15 12:34:54 +01:00
|
|
|
|
2020-03-13 14:55:58 +01:00
|
|
|
/**
|
|
|
|
* Name of the ongoing transaction, used to debug cases where
|
|
|
|
* a transaction is not properly terminated via COMMIT or
|
|
|
|
* ROLLBACK.
|
|
|
|
*/
|
2020-01-15 12:34:54 +01:00
|
|
|
const char *transaction_name;
|
2016-10-06 15:17:10 +02:00
|
|
|
|
2020-01-17 03:08:30 +01:00
|
|
|
/**
|
2020-02-09 16:34:40 +01:00
|
|
|
* Our configuration.
|
2020-01-17 03:08:30 +01:00
|
|
|
*/
|
2020-02-09 16:34:40 +01:00
|
|
|
const struct GNUNET_CONFIGURATION_Handle *cfg;
|
2019-08-17 21:35:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Which currency should we assume all amounts to be in?
|
|
|
|
*/
|
|
|
|
char *currency;
|
2016-10-06 15:17:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-17 01:55:01 +01:00
|
|
|
* Drop all auditor tables OR deletes recoverable auditor state.
|
|
|
|
* This should only be used by testcases or when restarting the
|
|
|
|
* auditor from scratch.
|
2016-10-06 15:17:10 +02:00
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
2020-01-17 01:55:01 +01:00
|
|
|
* @param drop_exchangelist drop all tables, including schema versioning
|
|
|
|
* and the exchange and deposit_confirmations table; NOT to be
|
|
|
|
* used when restarting the auditor
|
2016-10-06 15:17:10 +02:00
|
|
|
* @return #GNUNET_OK upon success; #GNUNET_SYSERR upon failure
|
|
|
|
*/
|
2021-08-23 08:24:59 +02:00
|
|
|
static enum GNUNET_GenericReturnValue
|
2019-02-14 14:23:16 +01:00
|
|
|
postgres_drop_tables (void *cls,
|
|
|
|
int drop_exchangelist)
|
2016-10-06 15:17:10 +02:00
|
|
|
{
|
|
|
|
struct PostgresClosure *pc = cls;
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_Context *conn;
|
2020-02-09 16:34:40 +01:00
|
|
|
|
|
|
|
conn = GNUNET_PQ_connect_with_cfg (pc->cfg,
|
|
|
|
"auditordb-postgres",
|
|
|
|
(drop_exchangelist) ? "drop" : "restart",
|
|
|
|
NULL,
|
|
|
|
NULL);
|
2016-10-06 15:17:10 +02:00
|
|
|
if (NULL == conn)
|
|
|
|
return GNUNET_SYSERR;
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_disconnect (conn);
|
2020-01-17 12:22:11 +01:00
|
|
|
return GNUNET_OK;
|
2016-10-06 15:17:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create the necessary tables if they are not present
|
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @return #GNUNET_OK upon success; #GNUNET_SYSERR upon failure
|
|
|
|
*/
|
2021-08-23 08:24:59 +02:00
|
|
|
static enum GNUNET_GenericReturnValue
|
2016-10-06 15:17:10 +02:00
|
|
|
postgres_create_tables (void *cls)
|
|
|
|
{
|
|
|
|
struct PostgresClosure *pc = cls;
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_Context *conn;
|
2016-10-06 15:17:10 +02:00
|
|
|
|
2020-02-09 16:34:40 +01:00
|
|
|
conn = GNUNET_PQ_connect_with_cfg (pc->cfg,
|
|
|
|
"auditordb-postgres",
|
|
|
|
"auditor-",
|
|
|
|
NULL,
|
|
|
|
NULL);
|
2016-10-06 15:17:10 +02:00
|
|
|
if (NULL == conn)
|
|
|
|
return GNUNET_SYSERR;
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_disconnect (conn);
|
|
|
|
return GNUNET_OK;
|
2016-10-06 15:17:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-10-11 23:28:05 +02:00
|
|
|
* Connect to the db if the connection does not exist yet.
|
|
|
|
*
|
2021-08-23 08:24:59 +02:00
|
|
|
* @param[in,out] pg the plugin-specific state
|
|
|
|
* @return #GNUNET_OK on success
|
2019-10-11 23:28:05 +02:00
|
|
|
*/
|
2022-02-12 11:12:33 +01:00
|
|
|
static enum GNUNET_GenericReturnValue
|
2021-08-23 08:24:59 +02:00
|
|
|
setup_connection (struct PostgresClosure *pg)
|
2016-10-06 15:17:10 +02:00
|
|
|
{
|
2017-06-24 23:06:44 +02:00
|
|
|
struct GNUNET_PQ_PreparedStatement ps[] = {
|
|
|
|
/* used in #postgres_commit */
|
|
|
|
GNUNET_PQ_make_prepare ("do_commit",
|
|
|
|
"COMMIT",
|
|
|
|
0),
|
2018-10-28 10:26:32 +01:00
|
|
|
/* used in #postgres_insert_exchange */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_insert_exchange",
|
2019-06-30 17:44:58 +02:00
|
|
|
"INSERT INTO auditor_exchanges "
|
|
|
|
"(master_pub"
|
|
|
|
",exchange_url"
|
|
|
|
") VALUES ($1,$2);",
|
2018-10-28 10:26:32 +01:00
|
|
|
2),
|
|
|
|
/* used in #postgres_delete_exchange */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_delete_exchange",
|
2019-06-30 17:44:58 +02:00
|
|
|
"DELETE"
|
|
|
|
" FROM auditor_exchanges"
|
|
|
|
" WHERE master_pub=$1;",
|
2018-10-28 10:26:32 +01:00
|
|
|
1),
|
|
|
|
/* used in #postgres_list_exchanges */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_list_exchanges",
|
2019-06-30 17:44:58 +02:00
|
|
|
"SELECT"
|
|
|
|
" master_pub"
|
2018-10-28 10:26:32 +01:00
|
|
|
",exchange_url"
|
2019-06-30 17:44:58 +02:00
|
|
|
" FROM auditor_exchanges",
|
2018-10-28 10:26:32 +01:00
|
|
|
0),
|
|
|
|
/* used in #postgres_insert_exchange_signkey */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_insert_exchange_signkey",
|
2019-06-30 17:44:58 +02:00
|
|
|
"INSERT INTO auditor_exchange_signkeys "
|
|
|
|
"(master_pub"
|
|
|
|
",ep_start"
|
|
|
|
",ep_expire"
|
|
|
|
",ep_end"
|
|
|
|
",exchange_pub"
|
2018-10-28 10:26:32 +01:00
|
|
|
",master_sig"
|
2019-06-30 17:44:58 +02:00
|
|
|
") VALUES ($1,$2,$3,$4,$5,$6);",
|
2018-10-28 10:26:32 +01:00
|
|
|
6),
|
2018-10-27 21:27:23 +02:00
|
|
|
/* Used in #postgres_insert_deposit_confirmation() */
|
2018-10-20 19:40:09 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_deposit_confirmation_insert",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO deposit_confirmations "
|
|
|
|
"(master_pub"
|
|
|
|
",h_contract_terms"
|
2021-11-06 19:59:54 +01:00
|
|
|
",h_extensions"
|
2019-08-17 21:35:21 +02:00
|
|
|
",h_wire"
|
2020-05-07 20:22:02 +02:00
|
|
|
",exchange_timestamp"
|
2021-11-06 19:48:04 +01:00
|
|
|
",wire_deadline"
|
2019-08-17 21:35:21 +02:00
|
|
|
",refund_deadline"
|
|
|
|
",amount_without_fee_val"
|
|
|
|
",amount_without_fee_frac"
|
|
|
|
",coin_pub"
|
|
|
|
",merchant_pub"
|
|
|
|
",exchange_sig"
|
|
|
|
",exchange_pub"
|
|
|
|
",master_sig" /* master_sig could be normalized... */
|
2021-11-06 19:59:54 +01:00
|
|
|
") VALUES ($1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14);",
|
|
|
|
14),
|
2018-11-04 17:36:56 +01:00
|
|
|
/* Used in #postgres_get_deposit_confirmations() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_deposit_confirmation_select",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" serial_id"
|
|
|
|
",h_contract_terms"
|
2021-11-06 20:21:36 +01:00
|
|
|
",h_extensions"
|
2019-08-17 21:35:21 +02:00
|
|
|
",h_wire"
|
2020-05-07 20:22:02 +02:00
|
|
|
",exchange_timestamp"
|
2021-11-06 20:21:36 +01:00
|
|
|
",wire_deadline"
|
2019-08-17 21:35:21 +02:00
|
|
|
",refund_deadline"
|
|
|
|
",amount_without_fee_val"
|
|
|
|
",amount_without_fee_frac"
|
|
|
|
",coin_pub"
|
|
|
|
",merchant_pub"
|
|
|
|
",exchange_sig"
|
|
|
|
",exchange_pub"
|
|
|
|
",master_sig" /* master_sig could be normalized... */
|
|
|
|
" FROM deposit_confirmations"
|
|
|
|
" WHERE master_pub=$1"
|
|
|
|
" AND serial_id>$2",
|
|
|
|
2),
|
2018-10-27 21:27:23 +02:00
|
|
|
/* Used in #postgres_update_auditor_progress_reserve() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_update_reserve",
|
2019-08-17 21:35:21 +02:00
|
|
|
"UPDATE auditor_progress_reserve SET "
|
|
|
|
" last_reserve_in_serial_id=$1"
|
|
|
|
",last_reserve_out_serial_id=$2"
|
2020-01-18 23:49:37 +01:00
|
|
|
",last_reserve_recoup_serial_id=$3"
|
2019-08-17 21:35:21 +02:00
|
|
|
",last_reserve_close_serial_id=$4"
|
2022-06-08 17:05:51 +02:00
|
|
|
",last_purse_merges_serial_id=$5"
|
2022-06-14 23:04:43 +02:00
|
|
|
",last_purse_deposits_serial_id=$6"
|
|
|
|
",last_account_merges_serial_id=$7"
|
|
|
|
",last_history_requests_serial_id=$8"
|
|
|
|
",last_close_requests_serial_id=$9"
|
|
|
|
" WHERE master_pub=$10",
|
|
|
|
10),
|
2018-10-27 21:27:23 +02:00
|
|
|
/* Used in #postgres_get_auditor_progress_reserve() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_select_reserve",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" last_reserve_in_serial_id"
|
|
|
|
",last_reserve_out_serial_id"
|
2020-01-18 23:49:37 +01:00
|
|
|
",last_reserve_recoup_serial_id"
|
2019-08-17 21:35:21 +02:00
|
|
|
",last_reserve_close_serial_id"
|
2022-06-08 17:05:51 +02:00
|
|
|
",last_purse_merges_serial_id"
|
2022-06-14 23:04:43 +02:00
|
|
|
",last_purse_deposits_serial_id"
|
2022-06-08 17:05:51 +02:00
|
|
|
",last_account_merges_serial_id"
|
|
|
|
",last_history_requests_serial_id"
|
|
|
|
",last_close_requests_serial_id"
|
2019-08-17 21:35:21 +02:00
|
|
|
" FROM auditor_progress_reserve"
|
|
|
|
" WHERE master_pub=$1;",
|
|
|
|
1),
|
2018-10-27 21:27:23 +02:00
|
|
|
/* Used in #postgres_insert_auditor_progress_reserve() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_insert_reserve",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_progress_reserve "
|
|
|
|
"(master_pub"
|
|
|
|
",last_reserve_in_serial_id"
|
|
|
|
",last_reserve_out_serial_id"
|
2020-01-18 23:49:37 +01:00
|
|
|
",last_reserve_recoup_serial_id"
|
2019-08-17 21:35:21 +02:00
|
|
|
",last_reserve_close_serial_id"
|
2022-06-08 17:05:51 +02:00
|
|
|
",last_purse_merges_serial_id"
|
2022-06-14 23:04:43 +02:00
|
|
|
",last_purse_deposits_serial_id"
|
2022-06-08 17:05:51 +02:00
|
|
|
",last_account_merges_serial_id"
|
|
|
|
",last_history_requests_serial_id"
|
|
|
|
",last_close_requests_serial_id"
|
2022-06-14 23:04:43 +02:00
|
|
|
") VALUES ($1,$2,$3,$4,$5,$6,$7,$8,$9,$10);",
|
|
|
|
10),
|
2018-10-27 21:27:23 +02:00
|
|
|
/* Used in #postgres_update_auditor_progress_aggregation() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_update_aggregation",
|
2019-08-17 21:35:21 +02:00
|
|
|
"UPDATE auditor_progress_aggregation SET "
|
|
|
|
" last_wire_out_serial_id=$1"
|
|
|
|
" WHERE master_pub=$2",
|
|
|
|
2),
|
2018-10-27 21:27:23 +02:00
|
|
|
/* Used in #postgres_get_auditor_progress_aggregation() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_select_aggregation",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" last_wire_out_serial_id"
|
|
|
|
" FROM auditor_progress_aggregation"
|
|
|
|
" WHERE master_pub=$1;",
|
|
|
|
1),
|
2018-10-27 21:27:23 +02:00
|
|
|
/* Used in #postgres_insert_auditor_progress_aggregation() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_insert_aggregation",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_progress_aggregation "
|
|
|
|
"(master_pub"
|
|
|
|
",last_wire_out_serial_id"
|
|
|
|
") VALUES ($1,$2);",
|
|
|
|
2),
|
2018-10-28 10:26:32 +01:00
|
|
|
/* Used in #postgres_update_auditor_progress_deposit_confirmation() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_update_deposit_confirmation",
|
2019-08-17 21:35:21 +02:00
|
|
|
"UPDATE auditor_progress_deposit_confirmation SET "
|
|
|
|
" last_deposit_confirmation_serial_id=$1"
|
|
|
|
" WHERE master_pub=$2",
|
|
|
|
2),
|
2018-10-28 10:26:32 +01:00
|
|
|
/* Used in #postgres_get_auditor_progress_deposit_confirmation() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_select_deposit_confirmation",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" last_deposit_confirmation_serial_id"
|
|
|
|
" FROM auditor_progress_deposit_confirmation"
|
|
|
|
" WHERE master_pub=$1;",
|
|
|
|
1),
|
2018-10-28 10:26:32 +01:00
|
|
|
/* Used in #postgres_insert_auditor_progress_deposit_confirmation() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_insert_deposit_confirmation",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_progress_deposit_confirmation "
|
|
|
|
"(master_pub"
|
|
|
|
",last_deposit_confirmation_serial_id"
|
|
|
|
") VALUES ($1,$2);",
|
|
|
|
2),
|
2018-10-27 21:27:23 +02:00
|
|
|
/* Used in #postgres_update_auditor_progress_coin() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_update_coin",
|
2019-08-17 21:35:21 +02:00
|
|
|
"UPDATE auditor_progress_coin SET "
|
|
|
|
" last_withdraw_serial_id=$1"
|
|
|
|
",last_deposit_serial_id=$2"
|
|
|
|
",last_melt_serial_id=$3"
|
|
|
|
",last_refund_serial_id=$4"
|
2020-01-18 23:49:37 +01:00
|
|
|
",last_recoup_serial_id=$5"
|
|
|
|
",last_recoup_refresh_serial_id=$6"
|
2022-06-08 17:05:51 +02:00
|
|
|
",last_purse_deposits_serial_id=$7"
|
2022-06-13 15:31:52 +02:00
|
|
|
",last_purse_refunds_serial_id=$8"
|
|
|
|
" WHERE master_pub=$9",
|
|
|
|
9),
|
2018-10-27 21:27:23 +02:00
|
|
|
/* Used in #postgres_get_auditor_progress_coin() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_select_coin",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" last_withdraw_serial_id"
|
|
|
|
",last_deposit_serial_id"
|
|
|
|
",last_melt_serial_id"
|
|
|
|
",last_refund_serial_id"
|
2020-01-18 23:49:37 +01:00
|
|
|
",last_recoup_serial_id"
|
|
|
|
",last_recoup_refresh_serial_id"
|
2022-06-08 17:05:51 +02:00
|
|
|
",last_purse_deposits_serial_id"
|
2022-06-13 15:31:52 +02:00
|
|
|
",last_purse_refunds_serial_id"
|
2019-08-17 21:35:21 +02:00
|
|
|
" FROM auditor_progress_coin"
|
|
|
|
" WHERE master_pub=$1;",
|
|
|
|
1),
|
2018-10-27 21:27:23 +02:00
|
|
|
/* Used in #postgres_insert_auditor_progress() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_progress_insert_coin",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_progress_coin "
|
|
|
|
"(master_pub"
|
|
|
|
",last_withdraw_serial_id"
|
|
|
|
",last_deposit_serial_id"
|
|
|
|
",last_melt_serial_id"
|
|
|
|
",last_refund_serial_id"
|
2020-01-18 23:49:37 +01:00
|
|
|
",last_recoup_serial_id"
|
|
|
|
",last_recoup_refresh_serial_id"
|
2022-06-08 17:05:51 +02:00
|
|
|
",last_purse_deposits_serial_id"
|
2022-06-13 15:31:52 +02:00
|
|
|
",last_purse_refunds_serial_id"
|
|
|
|
") VALUES ($1,$2,$3,$4,$5,$6,$7,$8,$9);",
|
|
|
|
9),
|
2019-08-24 22:49:35 +02:00
|
|
|
/* Used in #postgres_insert_wire_auditor_account_progress() */
|
|
|
|
GNUNET_PQ_make_prepare ("wire_auditor_account_progress_insert",
|
|
|
|
"INSERT INTO wire_auditor_account_progress "
|
2019-08-17 21:35:21 +02:00
|
|
|
"(master_pub"
|
|
|
|
",account_name"
|
|
|
|
",last_wire_reserve_in_serial_id"
|
|
|
|
",last_wire_wire_out_serial_id"
|
|
|
|
",wire_in_off"
|
|
|
|
",wire_out_off"
|
2019-08-24 22:49:35 +02:00
|
|
|
") VALUES ($1,$2,$3,$4,$5,$6);",
|
|
|
|
6),
|
|
|
|
/* Used in #postgres_update_wire_auditor_account_progress() */
|
|
|
|
GNUNET_PQ_make_prepare ("wire_auditor_account_progress_update",
|
|
|
|
"UPDATE wire_auditor_account_progress SET "
|
2019-08-17 21:35:21 +02:00
|
|
|
" last_wire_reserve_in_serial_id=$1"
|
|
|
|
",last_wire_wire_out_serial_id=$2"
|
2019-08-24 22:49:35 +02:00
|
|
|
",wire_in_off=$3"
|
|
|
|
",wire_out_off=$4"
|
|
|
|
" WHERE master_pub=$5 AND account_name=$6",
|
|
|
|
6),
|
|
|
|
/* Used in #postgres_get_wire_auditor_account_progress() */
|
|
|
|
GNUNET_PQ_make_prepare ("wire_auditor_account_progress_select",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" last_wire_reserve_in_serial_id"
|
|
|
|
",last_wire_wire_out_serial_id"
|
|
|
|
",wire_in_off"
|
|
|
|
",wire_out_off"
|
2019-08-24 22:49:35 +02:00
|
|
|
" FROM wire_auditor_account_progress"
|
2019-08-17 21:35:21 +02:00
|
|
|
" WHERE master_pub=$1 AND account_name=$2;",
|
|
|
|
2),
|
2019-08-24 22:49:35 +02:00
|
|
|
/* Used in #postgres_insert_wire_auditor_progress() */
|
|
|
|
GNUNET_PQ_make_prepare ("wire_auditor_progress_insert",
|
|
|
|
"INSERT INTO wire_auditor_progress "
|
|
|
|
"(master_pub"
|
|
|
|
",last_timestamp"
|
2019-10-06 16:54:09 +02:00
|
|
|
",last_reserve_close_uuid"
|
|
|
|
") VALUES ($1,$2,$3);",
|
|
|
|
3),
|
2019-08-24 22:49:35 +02:00
|
|
|
/* Used in #postgres_update_wire_auditor_progress() */
|
|
|
|
GNUNET_PQ_make_prepare ("wire_auditor_progress_update",
|
|
|
|
"UPDATE wire_auditor_progress SET "
|
|
|
|
" last_timestamp=$1"
|
2019-10-06 16:54:09 +02:00
|
|
|
",last_reserve_close_uuid=$2"
|
|
|
|
" WHERE master_pub=$3",
|
|
|
|
3),
|
2019-08-24 22:49:35 +02:00
|
|
|
/* Used in #postgres_get_wire_auditor_progress() */
|
|
|
|
GNUNET_PQ_make_prepare ("wire_auditor_progress_select",
|
|
|
|
"SELECT"
|
|
|
|
" last_timestamp"
|
2019-10-06 16:54:09 +02:00
|
|
|
",last_reserve_close_uuid"
|
2019-08-24 22:49:35 +02:00
|
|
|
" FROM wire_auditor_progress"
|
|
|
|
" WHERE master_pub=$1;",
|
|
|
|
1),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_insert_reserve_info() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_reserves_insert",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_reserves "
|
|
|
|
"(reserve_pub"
|
|
|
|
",master_pub"
|
|
|
|
",reserve_balance_val"
|
|
|
|
",reserve_balance_frac"
|
|
|
|
",withdraw_fee_balance_val"
|
|
|
|
",withdraw_fee_balance_frac"
|
|
|
|
",expiration_date"
|
2019-10-05 15:12:11 +02:00
|
|
|
",origin_account"
|
|
|
|
") VALUES ($1,$2,$3,$4,$5,$6,$7,$8);",
|
|
|
|
8),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_update_reserve_info() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_reserves_update",
|
2019-08-17 21:35:21 +02:00
|
|
|
"UPDATE auditor_reserves SET"
|
|
|
|
" reserve_balance_val=$1"
|
|
|
|
",reserve_balance_frac=$2"
|
|
|
|
",withdraw_fee_balance_val=$3"
|
|
|
|
",withdraw_fee_balance_frac=$4"
|
|
|
|
",expiration_date=$5"
|
|
|
|
" WHERE reserve_pub=$6 AND master_pub=$7;",
|
|
|
|
7),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_get_reserve_info() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_reserves_select",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" reserve_balance_val"
|
|
|
|
",reserve_balance_frac"
|
|
|
|
",withdraw_fee_balance_val"
|
|
|
|
",withdraw_fee_balance_frac"
|
|
|
|
",expiration_date"
|
|
|
|
",auditor_reserves_rowid"
|
2019-10-05 15:12:11 +02:00
|
|
|
",origin_account"
|
2019-08-17 21:35:21 +02:00
|
|
|
" FROM auditor_reserves"
|
|
|
|
" WHERE reserve_pub=$1 AND master_pub=$2;",
|
|
|
|
2),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_del_reserve_info() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_reserves_delete",
|
2019-08-17 21:35:21 +02:00
|
|
|
"DELETE"
|
|
|
|
" FROM auditor_reserves"
|
|
|
|
" WHERE reserve_pub=$1 AND master_pub=$2;",
|
|
|
|
2),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_insert_reserve_summary() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_reserve_balance_insert",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_reserve_balance"
|
|
|
|
"(master_pub"
|
|
|
|
",reserve_balance_val"
|
|
|
|
",reserve_balance_frac"
|
|
|
|
",withdraw_fee_balance_val"
|
|
|
|
",withdraw_fee_balance_frac"
|
2022-06-14 23:04:43 +02:00
|
|
|
",purse_fee_balance_val"
|
|
|
|
",purse_fee_balance_frac"
|
|
|
|
",history_fee_balance_val"
|
|
|
|
",history_fee_balance_frac"
|
|
|
|
") VALUES ($1,$2,$3,$4,$5,$6,$7,$8,$9)",
|
|
|
|
9),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_update_reserve_summary() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_reserve_balance_update",
|
2019-08-17 21:35:21 +02:00
|
|
|
"UPDATE auditor_reserve_balance SET"
|
|
|
|
" reserve_balance_val=$1"
|
|
|
|
",reserve_balance_frac=$2"
|
|
|
|
",withdraw_fee_balance_val=$3"
|
|
|
|
",withdraw_fee_balance_frac=$4"
|
2022-06-14 23:04:43 +02:00
|
|
|
",purse_fee_balance_val=$5"
|
|
|
|
",purse_fee_balance_frac=$6"
|
|
|
|
",history_fee_balance_val=$7"
|
|
|
|
",history_fee_balance_frac=$8"
|
|
|
|
" WHERE master_pub=$9;",
|
|
|
|
9),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_get_reserve_summary() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_reserve_balance_select",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" reserve_balance_val"
|
|
|
|
",reserve_balance_frac"
|
|
|
|
",withdraw_fee_balance_val"
|
|
|
|
",withdraw_fee_balance_frac"
|
2022-06-14 23:04:43 +02:00
|
|
|
",purse_fee_balance_val"
|
|
|
|
",purse_fee_balance_frac"
|
|
|
|
",history_fee_balance_val"
|
|
|
|
",history_fee_balance_frac"
|
2019-08-17 21:35:21 +02:00
|
|
|
" FROM auditor_reserve_balance"
|
|
|
|
" WHERE master_pub=$1;",
|
|
|
|
1),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_insert_wire_fee_summary() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_wire_fee_balance_insert",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_wire_fee_balance"
|
|
|
|
"(master_pub"
|
|
|
|
",wire_fee_balance_val"
|
|
|
|
",wire_fee_balance_frac"
|
|
|
|
") VALUES ($1,$2,$3)",
|
|
|
|
3),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_update_wire_fee_summary() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_wire_fee_balance_update",
|
2019-08-17 21:35:21 +02:00
|
|
|
"UPDATE auditor_wire_fee_balance SET"
|
|
|
|
" wire_fee_balance_val=$1"
|
|
|
|
",wire_fee_balance_frac=$2"
|
|
|
|
" WHERE master_pub=$3;",
|
|
|
|
3),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_get_wire_fee_summary() */
|
|
|
|
GNUNET_PQ_make_prepare ("auditor_wire_fee_balance_select",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" wire_fee_balance_val"
|
|
|
|
",wire_fee_balance_frac"
|
|
|
|
" FROM auditor_wire_fee_balance"
|
|
|
|
" WHERE master_pub=$1;",
|
|
|
|
1),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_insert_denomination_balance() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_denomination_pending_insert",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_denomination_pending "
|
|
|
|
"(denom_pub_hash"
|
|
|
|
",denom_balance_val"
|
|
|
|
",denom_balance_frac"
|
2019-09-02 08:01:55 +02:00
|
|
|
",denom_loss_val"
|
|
|
|
",denom_loss_frac"
|
2019-08-17 21:35:21 +02:00
|
|
|
",num_issued"
|
|
|
|
",denom_risk_val"
|
|
|
|
",denom_risk_frac"
|
2020-01-18 23:49:37 +01:00
|
|
|
",recoup_loss_val"
|
|
|
|
",recoup_loss_frac"
|
2019-09-02 08:01:55 +02:00
|
|
|
") VALUES ("
|
|
|
|
"$1,$2,$3,$4,$5,$6,$7,$8,$9,$10"
|
|
|
|
");",
|
|
|
|
10),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_update_denomination_balance() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_denomination_pending_update",
|
2019-08-17 21:35:21 +02:00
|
|
|
"UPDATE auditor_denomination_pending SET"
|
|
|
|
" denom_balance_val=$1"
|
|
|
|
",denom_balance_frac=$2"
|
2019-09-02 08:01:55 +02:00
|
|
|
",denom_loss_val=$3"
|
|
|
|
",denom_loss_frac=$4"
|
|
|
|
",num_issued=$5"
|
|
|
|
",denom_risk_val=$6"
|
|
|
|
",denom_risk_frac=$7"
|
2020-01-18 23:49:37 +01:00
|
|
|
",recoup_loss_val=$8"
|
|
|
|
",recoup_loss_frac=$9"
|
2019-09-02 08:01:55 +02:00
|
|
|
" WHERE denom_pub_hash=$10",
|
|
|
|
10),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_get_denomination_balance() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_denomination_pending_select",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" denom_balance_val"
|
|
|
|
",denom_balance_frac"
|
2019-09-02 08:01:55 +02:00
|
|
|
",denom_loss_val"
|
|
|
|
",denom_loss_frac"
|
2019-08-17 21:35:21 +02:00
|
|
|
",num_issued"
|
|
|
|
",denom_risk_val"
|
|
|
|
",denom_risk_frac"
|
2020-01-18 23:49:37 +01:00
|
|
|
",recoup_loss_val"
|
|
|
|
",recoup_loss_frac"
|
2019-08-17 21:35:21 +02:00
|
|
|
" FROM auditor_denomination_pending"
|
|
|
|
" WHERE denom_pub_hash=$1",
|
|
|
|
1),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_insert_balance_summary() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_balance_summary_insert",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_balance_summary "
|
|
|
|
"(master_pub"
|
|
|
|
",denom_balance_val"
|
|
|
|
",denom_balance_frac"
|
|
|
|
",deposit_fee_balance_val"
|
|
|
|
",deposit_fee_balance_frac"
|
|
|
|
",melt_fee_balance_val"
|
|
|
|
",melt_fee_balance_frac"
|
|
|
|
",refund_fee_balance_val"
|
|
|
|
",refund_fee_balance_frac"
|
|
|
|
",risk_val"
|
|
|
|
",risk_frac"
|
|
|
|
",loss_val"
|
|
|
|
",loss_frac"
|
2020-01-18 23:49:37 +01:00
|
|
|
",irregular_recoup_val"
|
|
|
|
",irregular_recoup_frac"
|
2019-08-17 21:35:21 +02:00
|
|
|
") VALUES ($1,$2,$3,$4,$5,$6,$7,$8,$9,$10,"
|
2020-01-17 15:00:22 +01:00
|
|
|
" $11,$12,$13,$14,$15);",
|
|
|
|
15),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_update_balance_summary() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_balance_summary_update",
|
2019-08-17 21:35:21 +02:00
|
|
|
"UPDATE auditor_balance_summary SET"
|
|
|
|
" denom_balance_val=$1"
|
|
|
|
",denom_balance_frac=$2"
|
|
|
|
",deposit_fee_balance_val=$3"
|
|
|
|
",deposit_fee_balance_frac=$4"
|
|
|
|
",melt_fee_balance_val=$5"
|
|
|
|
",melt_fee_balance_frac=$6"
|
|
|
|
",refund_fee_balance_val=$7"
|
|
|
|
",refund_fee_balance_frac=$8"
|
|
|
|
",risk_val=$9"
|
|
|
|
",risk_frac=$10"
|
|
|
|
",loss_val=$11"
|
|
|
|
",loss_frac=$12"
|
2020-01-18 23:49:37 +01:00
|
|
|
",irregular_recoup_val=$13"
|
|
|
|
",irregular_recoup_frac=$14"
|
2020-01-17 15:00:22 +01:00
|
|
|
" WHERE master_pub=$15;",
|
|
|
|
15),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_get_balance_summary() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_balance_summary_select",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" denom_balance_val"
|
|
|
|
",denom_balance_frac"
|
|
|
|
",deposit_fee_balance_val"
|
|
|
|
",deposit_fee_balance_frac"
|
|
|
|
",melt_fee_balance_val"
|
|
|
|
",melt_fee_balance_frac"
|
|
|
|
",refund_fee_balance_val"
|
|
|
|
",refund_fee_balance_frac"
|
|
|
|
",risk_val"
|
|
|
|
",risk_frac"
|
|
|
|
",loss_val"
|
|
|
|
",loss_frac"
|
2020-01-18 23:49:37 +01:00
|
|
|
",irregular_recoup_val"
|
|
|
|
",irregular_recoup_frac"
|
2019-08-17 21:35:21 +02:00
|
|
|
" FROM auditor_balance_summary"
|
|
|
|
" WHERE master_pub=$1;",
|
|
|
|
1),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_insert_historic_denom_revenue() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_historic_denomination_revenue_insert",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_historic_denomination_revenue"
|
|
|
|
"(master_pub"
|
|
|
|
",denom_pub_hash"
|
|
|
|
",revenue_timestamp"
|
|
|
|
",revenue_balance_val"
|
|
|
|
",revenue_balance_frac"
|
|
|
|
",loss_balance_val"
|
|
|
|
",loss_balance_frac"
|
|
|
|
") VALUES ($1,$2,$3,$4,$5,$6,$7);",
|
|
|
|
7),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_select_historic_denom_revenue() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_historic_denomination_revenue_select",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" denom_pub_hash"
|
|
|
|
",revenue_timestamp"
|
|
|
|
",revenue_balance_val"
|
|
|
|
",revenue_balance_frac"
|
|
|
|
",loss_balance_val"
|
|
|
|
",loss_balance_frac"
|
|
|
|
" FROM auditor_historic_denomination_revenue"
|
|
|
|
" WHERE master_pub=$1;",
|
|
|
|
1),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_insert_historic_reserve_revenue() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_historic_reserve_summary_insert",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_historic_reserve_summary"
|
|
|
|
"(master_pub"
|
|
|
|
",start_date"
|
|
|
|
",end_date"
|
|
|
|
",reserve_profits_val"
|
|
|
|
",reserve_profits_frac"
|
|
|
|
") VALUES ($1,$2,$3,$4,$5);",
|
|
|
|
5),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_select_historic_reserve_revenue() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_historic_reserve_summary_select",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" start_date"
|
|
|
|
",end_date"
|
|
|
|
",reserve_profits_val"
|
|
|
|
",reserve_profits_frac"
|
|
|
|
" FROM auditor_historic_reserve_summary"
|
|
|
|
" WHERE master_pub=$1;",
|
|
|
|
1),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_insert_predicted_result() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_predicted_result_insert",
|
2019-08-17 21:35:21 +02:00
|
|
|
"INSERT INTO auditor_predicted_result"
|
|
|
|
"(master_pub"
|
|
|
|
",balance_val"
|
|
|
|
",balance_frac"
|
|
|
|
") VALUES ($1,$2,$3);",
|
|
|
|
3),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_update_predicted_result() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_predicted_result_update",
|
2019-08-17 21:35:21 +02:00
|
|
|
"UPDATE auditor_predicted_result SET"
|
|
|
|
" balance_val=$1"
|
|
|
|
",balance_frac=$2"
|
|
|
|
" WHERE master_pub=$3;",
|
|
|
|
3),
|
2017-06-24 23:06:44 +02:00
|
|
|
/* Used in #postgres_get_predicted_balance() */
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_make_prepare ("auditor_predicted_result_select",
|
2019-08-17 21:35:21 +02:00
|
|
|
"SELECT"
|
|
|
|
" balance_val"
|
|
|
|
",balance_frac"
|
|
|
|
" FROM auditor_predicted_result"
|
|
|
|
" WHERE master_pub=$1;",
|
|
|
|
1),
|
2017-06-24 23:06:44 +02:00
|
|
|
GNUNET_PQ_PREPARED_STATEMENT_END
|
|
|
|
};
|
2021-08-23 08:24:59 +02:00
|
|
|
struct GNUNET_PQ_Context *db_conn;
|
2016-11-03 13:01:36 +01:00
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
if (NULL != pg->conn)
|
2017-07-04 23:33:57 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
GNUNET_PQ_reconnect_if_down (pg->conn);
|
|
|
|
return GNUNET_OK;
|
2017-07-04 23:33:57 +02:00
|
|
|
}
|
2021-08-23 08:24:59 +02:00
|
|
|
db_conn = GNUNET_PQ_connect_with_cfg (pg->cfg,
|
2020-02-09 16:34:40 +01:00
|
|
|
"auditordb-postgres",
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
ps);
|
2016-10-06 15:17:10 +02:00
|
|
|
if (NULL == db_conn)
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
pg->conn = db_conn;
|
|
|
|
return GNUNET_OK;
|
2016-10-06 15:17:10 +02:00
|
|
|
}
|
|
|
|
|
2020-01-15 15:44:24 +01:00
|
|
|
|
2020-01-15 12:34:54 +01:00
|
|
|
/**
|
|
|
|
* Do a pre-flight check that we are not in an uncommitted transaction.
|
2021-08-23 08:24:59 +02:00
|
|
|
* If we are, rollback the previous transaction and output a warning.
|
2020-01-15 12:34:54 +01:00
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
2021-08-23 08:24:59 +02:00
|
|
|
* @return #GNUNET_OK on success,
|
|
|
|
* #GNUNET_NO if we rolled back an earlier transaction
|
|
|
|
* #GNUNET_SYSERR if we have no DB connection
|
2020-01-15 12:34:54 +01:00
|
|
|
*/
|
2021-08-23 08:24:59 +02:00
|
|
|
static enum GNUNET_GenericReturnValue
|
|
|
|
postgres_preflight (void *cls)
|
2020-01-15 12:34:54 +01:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2020-01-15 12:34:54 +01:00
|
|
|
struct GNUNET_PQ_ExecuteStatement es[] = {
|
|
|
|
GNUNET_PQ_make_execute ("ROLLBACK"),
|
|
|
|
GNUNET_PQ_EXECUTE_STATEMENT_END
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
if (NULL == pg->conn)
|
|
|
|
{
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
setup_connection (pg))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (NULL == pg->transaction_name)
|
|
|
|
return GNUNET_OK; /* all good */
|
2020-01-15 12:34:54 +01:00
|
|
|
if (GNUNET_OK ==
|
2021-08-23 08:24:59 +02:00
|
|
|
GNUNET_PQ_exec_statements (pg->conn,
|
2020-01-15 12:34:54 +01:00
|
|
|
es))
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2020-01-16 00:11:51 +01:00
|
|
|
"BUG: Preflight check rolled back transaction `%s'!\n",
|
2021-08-23 08:24:59 +02:00
|
|
|
pg->transaction_name);
|
2020-01-15 12:34:54 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2020-01-16 00:11:51 +01:00
|
|
|
"BUG: Preflight check failed to rollback transaction `%s'!\n",
|
2021-08-23 08:24:59 +02:00
|
|
|
pg->transaction_name);
|
2020-01-15 12:34:54 +01:00
|
|
|
}
|
2021-08-23 08:24:59 +02:00
|
|
|
pg->transaction_name = NULL;
|
|
|
|
return GNUNET_NO;
|
2020-01-15 12:34:54 +01:00
|
|
|
}
|
|
|
|
|
2016-10-06 15:17:10 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Start a transaction.
|
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
*/
|
2021-08-23 08:24:59 +02:00
|
|
|
static enum GNUNET_GenericReturnValue
|
|
|
|
postgres_start (void *cls)
|
2016-10-06 15:17:10 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_ExecuteStatement es[] = {
|
|
|
|
GNUNET_PQ_make_execute ("START TRANSACTION ISOLATION LEVEL SERIALIZABLE"),
|
|
|
|
GNUNET_PQ_EXECUTE_STATEMENT_END
|
|
|
|
};
|
2016-10-06 15:17:10 +02:00
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
postgres_preflight (cls);
|
2019-10-11 23:28:05 +02:00
|
|
|
if (GNUNET_OK !=
|
2021-08-23 08:24:59 +02:00
|
|
|
GNUNET_PQ_exec_statements (pg->conn,
|
2019-10-11 23:28:05 +02:00
|
|
|
es))
|
2016-10-06 15:17:10 +02:00
|
|
|
{
|
2019-10-11 23:28:05 +02:00
|
|
|
TALER_LOG_ERROR ("Failed to start transaction\n");
|
2016-10-06 15:17:10 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Roll back the current transaction of a database connection.
|
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
*/
|
|
|
|
static void
|
2021-08-23 08:24:59 +02:00
|
|
|
postgres_rollback (void *cls)
|
2016-10-06 15:17:10 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_ExecuteStatement es[] = {
|
|
|
|
GNUNET_PQ_make_execute ("ROLLBACK"),
|
|
|
|
GNUNET_PQ_EXECUTE_STATEMENT_END
|
|
|
|
};
|
2016-10-06 15:17:10 +02:00
|
|
|
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
2021-08-23 08:24:59 +02:00
|
|
|
GNUNET_PQ_exec_statements (pg->conn,
|
2019-10-11 23:28:05 +02:00
|
|
|
es));
|
2016-10-06 15:17:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Commit the current transaction of a database connection.
|
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-06 15:17:10 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
enum GNUNET_DB_QueryStatus
|
2021-08-23 08:24:59 +02:00
|
|
|
postgres_commit (void *cls)
|
2016-10-06 15:17:10 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-06-24 23:06:44 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2016-10-06 15:17:10 +02:00
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2017-06-24 23:06:44 +02:00
|
|
|
"do_commit",
|
|
|
|
params);
|
2016-10-06 15:17:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called to perform "garbage collection" on the
|
|
|
|
* database, expiring records we no longer require.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @return #GNUNET_OK on success,
|
|
|
|
* #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
2021-12-14 16:04:32 +01:00
|
|
|
static enum GNUNET_GenericReturnValue
|
2016-10-06 15:17:10 +02:00
|
|
|
postgres_gc (void *cls)
|
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2022-01-11 15:24:43 +01:00
|
|
|
struct GNUNET_TIME_Absolute now = {0};
|
2016-10-06 15:17:10 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params_time[] = {
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_query_param_absolute_time (&now),
|
2016-10-06 15:17:10 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_Context *conn;
|
2017-06-24 23:06:44 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_PreparedStatement ps[] = {
|
2020-01-16 22:31:46 +01:00
|
|
|
#if 0
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_make_prepare ("gc_auditor",
|
2020-01-17 18:04:40 +01:00
|
|
|
"TODO: #4960",
|
2019-10-11 23:28:05 +02:00
|
|
|
0),
|
2020-01-16 22:31:46 +01:00
|
|
|
#endif
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_PREPARED_STATEMENT_END
|
|
|
|
};
|
2016-10-06 15:17:10 +02:00
|
|
|
|
|
|
|
now = GNUNET_TIME_absolute_get ();
|
2021-08-23 08:24:59 +02:00
|
|
|
conn = GNUNET_PQ_connect_with_cfg (pg->cfg,
|
2020-02-09 16:34:40 +01:00
|
|
|
"auditordb-postgres",
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
ps);
|
2016-10-06 15:17:10 +02:00
|
|
|
if (NULL == conn)
|
|
|
|
return GNUNET_SYSERR;
|
2020-01-16 22:31:46 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2020-01-17 18:04:40 +01:00
|
|
|
"TODO: Auditor GC not implemented (#4960)\n");
|
2017-06-24 23:06:44 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_non_select (conn,
|
2019-06-30 17:44:58 +02:00
|
|
|
"gc_auditor",
|
|
|
|
params_time);
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_disconnect (conn);
|
2017-06-24 23:06:44 +02:00
|
|
|
if (0 > qs)
|
2016-10-06 15:17:10 +02:00
|
|
|
{
|
2017-06-24 23:06:44 +02:00
|
|
|
GNUNET_break (0);
|
2016-10-06 15:17:10 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-28 10:26:32 +01:00
|
|
|
/**
|
|
|
|
* Insert information about an exchange this auditor will be auditing.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master public key of the exchange
|
|
|
|
* @param exchange_url public (base) URL of the API of the exchange
|
|
|
|
* @return query result status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
postgres_insert_exchange (void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const char *exchange_url)
|
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-28 10:26:32 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2018-11-04 10:48:22 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2018-10-28 10:26:32 +01:00
|
|
|
GNUNET_PQ_query_param_string (exchange_url),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-06-30 17:44:58 +02:00
|
|
|
"auditor_insert_exchange",
|
|
|
|
params);
|
2018-10-28 10:26:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete an exchange from the list of exchanges this auditor is auditing.
|
|
|
|
* Warning: this will cascade and delete all knowledge of this auditor related
|
|
|
|
* to this exchange!
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master public key of the exchange
|
|
|
|
* @return query result status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
postgres_delete_exchange (void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub)
|
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-28 10:26:32 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2018-11-04 10:48:22 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2018-10-28 10:26:32 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_delete_exchange",
|
|
|
|
params);
|
2018-10-28 10:26:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for #exchange_info_cb().
|
|
|
|
*/
|
|
|
|
struct ExchangeInfoContext
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to call for each exchange.
|
|
|
|
*/
|
|
|
|
TALER_AUDITORDB_ExchangeCallback cb;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for @e cb
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query status to return.
|
|
|
|
*/
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-17 23:01:17 +01:00
|
|
|
* Helper function for #postgres_list_exchanges().
|
2018-10-28 10:26:32 +01:00
|
|
|
* To be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct ExchangeInfoContext *`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2018-10-28 10:26:32 +01:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
exchange_info_cb (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
|
|
|
{
|
|
|
|
struct ExchangeInfoContext *eic = cls;
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < num_results; i++)
|
|
|
|
{
|
|
|
|
struct TALER_MasterPublicKeyP master_pub;
|
|
|
|
char *exchange_url;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("master_pub", &master_pub),
|
|
|
|
GNUNET_PQ_result_spec_string ("exchange_url", &exchange_url),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
2019-08-17 21:35:21 +02:00
|
|
|
rs,
|
|
|
|
i))
|
2018-10-28 10:26:32 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
eic->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
eic->qs = i + 1;
|
|
|
|
eic->cb (eic->cb_cls,
|
|
|
|
&master_pub,
|
|
|
|
exchange_url);
|
|
|
|
GNUNET_free (exchange_url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain information about exchanges this auditor is auditing.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param cb function to call with the results
|
|
|
|
* @param cb_cls closure for @a cb
|
2018-10-28 10:26:32 +01:00
|
|
|
* @return query result status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
postgres_list_exchanges (void *cls,
|
|
|
|
TALER_AUDITORDB_ExchangeCallback cb,
|
|
|
|
void *cb_cls)
|
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-28 10:26:32 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct ExchangeInfoContext eic = {
|
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_list_exchanges",
|
|
|
|
params,
|
|
|
|
&exchange_info_cb,
|
|
|
|
&eic);
|
2018-10-28 10:26:32 +01:00
|
|
|
if (qs > 0)
|
|
|
|
return eic.qs;
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR != qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert information about a signing key of the exchange.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param sk signing key information to store
|
|
|
|
* @return query result status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_exchange_signkey (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_AUDITORDB_ExchangeSigningKey *sk)
|
2018-10-28 10:26:32 +01:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-28 10:26:32 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&sk->master_public_key),
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_query_param_timestamp (&sk->ep_start),
|
|
|
|
GNUNET_PQ_query_param_timestamp (&sk->ep_expire),
|
|
|
|
GNUNET_PQ_query_param_timestamp (&sk->ep_end),
|
2018-10-28 10:26:32 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&sk->exchange_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&sk->master_sig),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_insert_exchange_signkey",
|
|
|
|
params);
|
2018-10-28 10:26:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-20 19:40:09 +02:00
|
|
|
/**
|
|
|
|
* Insert information about a deposit confirmation into the database.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param dc deposit confirmation information to store
|
|
|
|
* @return query result status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_deposit_confirmation (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_AUDITORDB_DepositConfirmation *dc)
|
2018-10-20 19:40:09 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-20 19:40:09 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&dc->master_public_key),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&dc->h_contract_terms),
|
2021-11-06 19:57:34 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&dc->h_extensions),
|
2018-10-20 19:40:09 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&dc->h_wire),
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_query_param_timestamp (&dc->exchange_timestamp),
|
|
|
|
GNUNET_PQ_query_param_timestamp (&dc->wire_deadline),
|
|
|
|
GNUNET_PQ_query_param_timestamp (&dc->refund_deadline),
|
2018-10-20 19:40:09 +02:00
|
|
|
TALER_PQ_query_param_amount (&dc->amount_without_fee),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&dc->coin_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&dc->merchant),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&dc->exchange_sig),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&dc->exchange_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&dc->master_sig),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_deposit_confirmation_insert",
|
|
|
|
params);
|
2018-10-20 19:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-04 17:36:56 +01:00
|
|
|
/**
|
|
|
|
* Closure for #deposit_confirmation_cb().
|
|
|
|
*/
|
|
|
|
struct DepositConfirmationContext
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Master public key that is being used.
|
|
|
|
*/
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to call for each deposit confirmation.
|
|
|
|
*/
|
|
|
|
TALER_AUDITORDB_DepositConfirmationCallback cb;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for @e cb
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
|
|
|
|
2018-11-04 17:36:56 +01:00
|
|
|
/**
|
|
|
|
* Query status to return.
|
|
|
|
*/
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function for #postgres_get_deposit_confirmations().
|
|
|
|
* To be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct DepositConfirmationContext *`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2018-11-04 17:36:56 +01:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
deposit_confirmation_cb (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
|
|
|
{
|
|
|
|
struct DepositConfirmationContext *dcc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = dcc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2018-11-04 17:36:56 +01:00
|
|
|
for (unsigned int i = 0; i < num_results; i++)
|
|
|
|
{
|
|
|
|
uint64_t serial_id;
|
|
|
|
struct TALER_AUDITORDB_DepositConfirmation dc = {
|
|
|
|
.master_public_key = *dcc->master_pub
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("serial_id",
|
|
|
|
&serial_id),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_contract_terms",
|
|
|
|
&dc.h_contract_terms),
|
2021-11-06 19:57:34 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_extensions",
|
2021-11-06 20:21:36 +01:00
|
|
|
&dc.h_extensions),
|
2018-11-04 17:36:56 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_wire",
|
|
|
|
&dc.h_wire),
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_result_spec_timestamp ("exchange_timestamp",
|
|
|
|
&dc.exchange_timestamp),
|
|
|
|
GNUNET_PQ_result_spec_timestamp ("refund_deadline",
|
|
|
|
&dc.refund_deadline),
|
|
|
|
GNUNET_PQ_result_spec_timestamp ("wire_deadline",
|
|
|
|
&dc.wire_deadline),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_without_fee",
|
2018-11-04 17:36:56 +01:00
|
|
|
&dc.amount_without_fee),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
|
|
|
&dc.coin_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub",
|
|
|
|
&dc.merchant),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("exchange_sig",
|
|
|
|
&dc.exchange_sig),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("exchange_pub",
|
|
|
|
&dc.exchange_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("master_sig",
|
|
|
|
&dc.master_sig),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
2019-08-25 16:18:24 +02:00
|
|
|
rs,
|
|
|
|
i))
|
2018-11-04 17:36:56 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
dcc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
dcc->qs = i + 1;
|
2020-07-15 21:22:44 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
dcc->cb (dcc->cb_cls,
|
|
|
|
serial_id,
|
|
|
|
&dc))
|
|
|
|
break;
|
2018-11-04 17:36:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about deposit confirmations from the database.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param master_public_key for which exchange do we want to get deposit confirmations
|
2018-11-04 17:36:56 +01:00
|
|
|
* @param start_id row/serial ID where to start the iteration (0 from
|
|
|
|
* the start, exclusive, i.e. serial_ids must start from 1)
|
|
|
|
* @param cb function to call with results
|
|
|
|
* @param cb_cls closure for @a cb
|
|
|
|
* @return query result status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_deposit_confirmations (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_public_key,
|
|
|
|
uint64_t start_id,
|
|
|
|
TALER_AUDITORDB_DepositConfirmationCallback cb,
|
|
|
|
void *cb_cls)
|
2018-11-04 17:36:56 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-11-04 17:36:56 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_public_key),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&start_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct DepositConfirmationContext dcc = {
|
|
|
|
.master_pub = master_public_key,
|
|
|
|
.cb = cb,
|
2019-08-17 21:35:21 +02:00
|
|
|
.cb_cls = cb_cls,
|
|
|
|
.pg = pg
|
2018-11-04 17:36:56 +01:00
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (pg->conn,
|
2019-08-25 16:18:24 +02:00
|
|
|
"auditor_deposit_confirmation_select",
|
|
|
|
params,
|
|
|
|
&deposit_confirmation_cb,
|
|
|
|
&dcc);
|
2018-11-04 17:36:56 +01:00
|
|
|
if (qs > 0)
|
|
|
|
return dcc.qs;
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR != qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-06 14:24:17 +01:00
|
|
|
/**
|
|
|
|
* Insert information about the auditor's progress with an exchange's
|
|
|
|
* data.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
2018-10-27 21:27:23 +02:00
|
|
|
* @param ppr where is the auditor in processing
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-11-06 14:24:17 +01:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_auditor_progress_reserve (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_AUDITORDB_ProgressPointReserve *ppr)
|
2016-11-06 14:24:17 +01:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-06 14:24:17 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_reserve_in_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_reserve_out_serial_id),
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_reserve_recoup_serial_id),
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_reserve_close_serial_id),
|
2022-06-08 17:05:51 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_purse_merges_serial_id),
|
2022-06-14 23:04:43 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_purse_deposits_serial_id),
|
2022-06-08 17:05:51 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_account_merges_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_history_requests_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_close_requests_serial_id),
|
2016-11-06 14:24:17 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_progress_insert_reserve",
|
|
|
|
params);
|
2016-11-06 14:24:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update information about the progress of the auditor. There
|
|
|
|
* must be an existing record for the exchange.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
2018-10-27 21:27:23 +02:00
|
|
|
* @param ppr where is the auditor in processing
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-11-06 14:24:17 +01:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_update_auditor_progress_reserve (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_AUDITORDB_ProgressPointReserve *ppr)
|
2016-11-06 14:24:17 +01:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-06 14:24:17 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_reserve_in_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_reserve_out_serial_id),
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_reserve_recoup_serial_id),
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_reserve_close_serial_id),
|
2022-06-08 17:05:51 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_purse_merges_serial_id),
|
2022-06-14 23:04:43 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_purse_deposits_serial_id),
|
2022-06-08 17:05:51 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_account_merges_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_history_requests_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppr->last_close_requests_serial_id),
|
2016-11-06 14:24:17 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_progress_update_reserve",
|
|
|
|
params);
|
2016-11-06 14:24:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about the progress of the auditor.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
2018-10-27 21:27:23 +02:00
|
|
|
* @param[out] ppr set to where the auditor is in processing
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-11-06 14:24:17 +01:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_auditor_progress_reserve (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
struct TALER_AUDITORDB_ProgressPointReserve *ppr)
|
2016-11-06 14:24:17 +01:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-06 14:24:17 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-03-15 13:12:45 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_reserve_in_serial_id",
|
2018-10-27 21:27:23 +02:00
|
|
|
&ppr->last_reserve_in_serial_id),
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_reserve_out_serial_id",
|
2018-10-27 21:27:23 +02:00
|
|
|
&ppr->last_reserve_out_serial_id),
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_reserve_recoup_serial_id",
|
|
|
|
&ppr->last_reserve_recoup_serial_id),
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_reserve_close_serial_id",
|
2018-10-27 21:27:23 +02:00
|
|
|
&ppr->last_reserve_close_serial_id),
|
2022-06-08 17:05:51 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_purse_merges_serial_id",
|
|
|
|
&ppr->last_purse_merges_serial_id),
|
2022-06-14 23:04:43 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_purse_deposits_serial_id",
|
|
|
|
&ppr->last_purse_deposits_serial_id),
|
2022-06-08 17:05:51 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_account_merges_serial_id",
|
|
|
|
&ppr->last_account_merges_serial_id),
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_history_requests_serial_id",
|
|
|
|
&ppr->last_history_requests_serial_id),
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_close_requests_serial_id",
|
|
|
|
&ppr->last_close_requests_serial_id),
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_progress_select_reserve",
|
|
|
|
params,
|
|
|
|
rs);
|
2018-10-27 21:27:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert information about the auditor's progress with an exchange's
|
|
|
|
* data.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param ppa where is the auditor in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_auditor_progress_aggregation (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_AUDITORDB_ProgressPointAggregation *ppa)
|
2018-10-27 21:27:23 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-27 21:27:23 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppa->last_wire_out_serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_progress_insert_aggregation",
|
|
|
|
params);
|
2018-10-27 21:27:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update information about the progress of the auditor. There
|
|
|
|
* must be an existing record for the exchange.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param ppa where is the auditor in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_update_auditor_progress_aggregation (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_AUDITORDB_ProgressPointAggregation *ppa)
|
2018-10-27 21:27:23 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-27 21:27:23 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppa->last_wire_out_serial_id),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_progress_update_aggregation",
|
|
|
|
params);
|
2018-10-27 21:27:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about the progress of the auditor.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param[out] ppa set to where the auditor is in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_auditor_progress_aggregation (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
struct TALER_AUDITORDB_ProgressPointAggregation *ppa)
|
2018-10-27 21:27:23 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-27 21:27:23 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_wire_out_serial_id",
|
|
|
|
&ppa->last_wire_out_serial_id),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_progress_select_aggregation",
|
|
|
|
params,
|
|
|
|
rs);
|
2018-10-27 21:27:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-28 10:26:32 +01:00
|
|
|
/**
|
|
|
|
* Insert information about the auditor's progress with an exchange's
|
|
|
|
* data.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param ppdc where is the auditor in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_auditor_progress_deposit_confirmation (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_AUDITORDB_ProgressPointDepositConfirmation *ppdc)
|
2018-10-28 10:26:32 +01:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-28 10:26:32 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppdc->last_deposit_confirmation_serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_progress_insert_deposit_confirmation",
|
|
|
|
params);
|
2018-10-28 10:26:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update information about the progress of the auditor. There
|
|
|
|
* must be an existing record for the exchange.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param ppdc where is the auditor in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_update_auditor_progress_deposit_confirmation (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_AUDITORDB_ProgressPointDepositConfirmation *ppdc)
|
2018-10-28 10:26:32 +01:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-28 10:26:32 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppdc->last_deposit_confirmation_serial_id),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_progress_update_deposit_confirmation",
|
|
|
|
params);
|
2018-10-28 10:26:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about the progress of the auditor.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param[out] ppdc set to where the auditor is in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_auditor_progress_deposit_confirmation (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
struct TALER_AUDITORDB_ProgressPointDepositConfirmation *ppdc)
|
2018-10-28 10:26:32 +01:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-28 10:26:32 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_deposit_confirmation_serial_id",
|
|
|
|
&ppdc->last_deposit_confirmation_serial_id),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_progress_select_deposit_confirmation",
|
|
|
|
params,
|
|
|
|
rs);
|
2018-10-28 10:26:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-27 21:27:23 +02:00
|
|
|
/**
|
|
|
|
* Insert information about the auditor's progress with an exchange's
|
|
|
|
* data.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param ppc where is the auditor in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_auditor_progress_coin (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_AUDITORDB_ProgressPointCoin *ppc)
|
2018-10-27 21:27:23 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-27 21:27:23 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_withdraw_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_deposit_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_melt_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_refund_serial_id),
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_recoup_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_recoup_refresh_serial_id),
|
2022-06-08 17:05:51 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_purse_deposits_serial_id),
|
2022-06-13 15:31:52 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_purse_refunds_serial_id),
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-07-24 14:13:25 +02:00
|
|
|
"auditor_progress_insert_coin",
|
|
|
|
params);
|
2018-10-27 21:27:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update information about the progress of the auditor. There
|
|
|
|
* must be an existing record for the exchange.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param ppc where is the auditor in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_update_auditor_progress_coin (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_AUDITORDB_ProgressPointCoin *ppc)
|
2018-10-27 21:27:23 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-27 21:27:23 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_withdraw_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_deposit_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_melt_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_refund_serial_id),
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_recoup_serial_id),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_recoup_refresh_serial_id),
|
2022-06-08 17:05:51 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_purse_deposits_serial_id),
|
2022-06-13 15:31:52 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&ppc->last_purse_refunds_serial_id),
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-07-24 14:13:25 +02:00
|
|
|
"auditor_progress_update_coin",
|
|
|
|
params);
|
2018-10-27 21:27:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about the progress of the auditor.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param[out] ppc set to where the auditor is in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_auditor_progress_coin (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
struct TALER_AUDITORDB_ProgressPointCoin *ppc)
|
2018-10-27 21:27:23 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-10-27 21:27:23 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_withdraw_serial_id",
|
2018-10-27 21:27:23 +02:00
|
|
|
&ppc->last_withdraw_serial_id),
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_deposit_serial_id",
|
2018-10-27 21:27:23 +02:00
|
|
|
&ppc->last_deposit_serial_id),
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_melt_serial_id",
|
2018-10-27 21:27:23 +02:00
|
|
|
&ppc->last_melt_serial_id),
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_refund_serial_id",
|
2018-10-27 21:27:23 +02:00
|
|
|
&ppc->last_refund_serial_id),
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_recoup_serial_id",
|
|
|
|
&ppc->last_recoup_serial_id),
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_recoup_refresh_serial_id",
|
|
|
|
&ppc->last_recoup_refresh_serial_id),
|
2022-06-08 17:05:51 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_purse_deposits_serial_id",
|
|
|
|
&ppc->last_purse_deposits_serial_id),
|
2022-06-13 15:31:52 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_purse_refunds_serial_id",
|
|
|
|
&ppc->last_purse_refunds_serial_id),
|
2017-03-15 13:12:45 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2019-07-24 14:13:25 +02:00
|
|
|
"auditor_progress_select_coin",
|
|
|
|
params,
|
|
|
|
rs);
|
2016-11-06 14:24:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-30 20:29:19 +02:00
|
|
|
/**
|
|
|
|
* Insert information about the auditor's progress with an exchange's
|
|
|
|
* data.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
2018-04-02 14:24:45 +02:00
|
|
|
* @param account_name name of the wire account we are auditing
|
2020-01-17 23:50:41 +01:00
|
|
|
* @param pp how far are we in the auditor's tables
|
|
|
|
* @param in_wire_off how far are we in the incoming wire transfers
|
|
|
|
* @param out_wire_off how far are we in the outgoing wire transfers
|
2017-09-30 20:29:19 +02:00
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_wire_auditor_account_progress (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const char *account_name,
|
|
|
|
const struct TALER_AUDITORDB_WireAccountProgressPoint *pp,
|
|
|
|
uint64_t in_wire_off,
|
|
|
|
uint64_t out_wire_off)
|
2017-09-30 20:29:19 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-09-30 20:29:19 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_PQ_query_param_string (account_name),
|
2017-09-30 20:29:19 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&pp->last_reserve_in_serial_id),
|
2017-10-12 20:46:42 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&pp->last_wire_out_serial_id),
|
2020-01-11 15:19:56 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&in_wire_off),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&out_wire_off),
|
2017-09-30 20:29:19 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-24 22:49:35 +02:00
|
|
|
"wire_auditor_account_progress_insert",
|
2019-08-17 21:35:21 +02:00
|
|
|
params);
|
2017-09-30 20:29:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update information about the progress of the auditor. There
|
|
|
|
* must be an existing record for the exchange.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
2018-04-02 14:24:45 +02:00
|
|
|
* @param account_name name of the wire account we are auditing
|
2020-01-18 12:34:17 +01:00
|
|
|
* @param pp where is the auditor in processing
|
|
|
|
* @param in_wire_off how far are we in the incoming wire transaction history
|
|
|
|
* @param out_wire_off how far are we in the outgoing wire transaction history
|
2017-09-30 20:29:19 +02:00
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_update_wire_auditor_account_progress (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const char *account_name,
|
|
|
|
const struct TALER_AUDITORDB_WireAccountProgressPoint *pp,
|
|
|
|
uint64_t in_wire_off,
|
|
|
|
uint64_t out_wire_off)
|
2017-09-30 20:29:19 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-09-30 20:29:19 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&pp->last_reserve_in_serial_id),
|
2017-10-12 20:46:42 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&pp->last_wire_out_serial_id),
|
2020-01-11 15:19:56 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&in_wire_off),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&out_wire_off),
|
2017-11-08 18:44:12 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_PQ_query_param_string (account_name),
|
2017-09-30 20:29:19 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-24 22:49:35 +02:00
|
|
|
"wire_auditor_account_progress_update",
|
2019-08-17 21:35:21 +02:00
|
|
|
params);
|
2017-09-30 20:29:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about the progress of the auditor.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
2018-04-02 14:24:45 +02:00
|
|
|
* @param account_name name of the wire account we are auditing
|
2019-08-24 22:49:35 +02:00
|
|
|
* @param[out] pp where is the auditor in processing
|
|
|
|
* @param[out] in_wire_off how far are we in the incoming wire transaction history
|
|
|
|
* @param[out] out_wire_off how far are we in the outgoing wire transaction history
|
2017-09-30 20:29:19 +02:00
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_wire_auditor_account_progress (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const char *account_name,
|
|
|
|
struct TALER_AUDITORDB_WireAccountProgressPoint *pp,
|
|
|
|
uint64_t *in_wire_off,
|
|
|
|
uint64_t *out_wire_off)
|
2017-09-30 20:29:19 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-09-30 20:29:19 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_PQ_query_param_string (account_name),
|
2017-09-30 20:29:19 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2017-11-08 18:44:12 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_wire_reserve_in_serial_id",
|
2017-09-30 20:29:19 +02:00
|
|
|
&pp->last_reserve_in_serial_id),
|
2017-11-08 18:44:12 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_wire_wire_out_serial_id",
|
2017-10-12 20:46:42 +02:00
|
|
|
&pp->last_wire_out_serial_id),
|
2020-01-11 15:19:56 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("wire_in_off",
|
|
|
|
in_wire_off),
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("wire_out_off",
|
|
|
|
out_wire_off),
|
2017-09-30 20:29:19 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2020-01-11 15:19:56 +01:00
|
|
|
"wire_auditor_account_progress_select",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-09-30 20:29:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-24 22:49:35 +02:00
|
|
|
/**
|
|
|
|
* Insert information about the auditor's progress with an exchange's
|
|
|
|
* data.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param pp where is the auditor in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_wire_auditor_progress (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_AUDITORDB_WireProgressPoint *pp)
|
2019-08-24 22:49:35 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2019-08-24 22:49:35 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_query_param_timestamp (&pp->last_timestamp),
|
2019-10-06 16:54:09 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&pp->last_reserve_close_uuid),
|
2019-08-24 22:49:35 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-24 22:49:35 +02:00
|
|
|
"wire_auditor_progress_insert",
|
|
|
|
params);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update information about the progress of the auditor. There
|
|
|
|
* must be an existing record for the exchange.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param pp where is the auditor in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_update_wire_auditor_progress (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_AUDITORDB_WireProgressPoint *pp)
|
2019-08-24 22:49:35 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2019-08-24 22:49:35 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_query_param_timestamp (&pp->last_timestamp),
|
2019-10-06 16:54:09 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&pp->last_reserve_close_uuid),
|
2019-08-24 22:49:35 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-24 22:49:35 +02:00
|
|
|
"wire_auditor_progress_update",
|
|
|
|
params);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about the progress of the auditor.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param[out] pp set to where the auditor is in processing
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_wire_auditor_progress (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
struct TALER_AUDITORDB_WireProgressPoint *pp)
|
2019-08-24 22:49:35 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2019-08-24 22:49:35 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_result_spec_timestamp ("last_timestamp",
|
|
|
|
&pp->last_timestamp),
|
2019-10-06 16:54:09 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("last_reserve_close_uuid",
|
|
|
|
&pp->last_reserve_close_uuid),
|
2019-08-24 22:49:35 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2019-08-24 22:49:35 +02:00
|
|
|
"wire_auditor_progress_select",
|
|
|
|
params,
|
|
|
|
rs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-09 01:17:37 +02:00
|
|
|
/**
|
|
|
|
* Insert information about a reserve. There must not be an
|
|
|
|
* existing record for the reserve.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param reserve_pub public key of the reserve
|
|
|
|
* @param master_pub master public key of the exchange
|
|
|
|
* @param reserve_balance amount stored in the reserve
|
|
|
|
* @param withdraw_fee_balance amount the exchange gained in withdraw fees
|
|
|
|
* due to withdrawals from this reserve
|
|
|
|
* @param expiration_date expiration date of the reserve
|
2019-10-05 15:12:11 +02:00
|
|
|
* @param origin_account where did the money in the reserve originally come from
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-10-09 01:17:37 +02:00
|
|
|
postgres_insert_reserve_info (void *cls,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_Amount *reserve_balance,
|
|
|
|
const struct TALER_Amount *withdraw_fee_balance,
|
2021-12-14 16:04:32 +01:00
|
|
|
struct GNUNET_TIME_Timestamp expiration_date,
|
2019-10-05 15:12:11 +02:00
|
|
|
const char *origin_account)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (reserve_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2016-11-04 00:51:17 +01:00
|
|
|
TALER_PQ_query_param_amount (reserve_balance),
|
|
|
|
TALER_PQ_query_param_amount (withdraw_fee_balance),
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_query_param_timestamp (&expiration_date),
|
2019-10-05 15:12:11 +02:00
|
|
|
GNUNET_PQ_query_param_string (origin_account),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_YES ==
|
|
|
|
TALER_amount_cmp_currency (reserve_balance,
|
|
|
|
withdraw_fee_balance));
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_reserves_insert",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update information about a reserve. Destructively updates an
|
|
|
|
* existing record, which must already exist.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param reserve_pub public key of the reserve
|
|
|
|
* @param master_pub master public key of the exchange
|
|
|
|
* @param reserve_balance amount stored in the reserve
|
|
|
|
* @param withdraw_fee_balance amount the exchange gained in withdraw fees
|
|
|
|
* due to withdrawals from this reserve
|
|
|
|
* @param expiration_date expiration date of the reserve
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-10-09 01:17:37 +02:00
|
|
|
postgres_update_reserve_info (void *cls,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_Amount *reserve_balance,
|
|
|
|
const struct TALER_Amount *withdraw_fee_balance,
|
2021-12-14 16:04:32 +01:00
|
|
|
struct GNUNET_TIME_Timestamp expiration_date)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2016-11-04 00:51:17 +01:00
|
|
|
TALER_PQ_query_param_amount (reserve_balance),
|
|
|
|
TALER_PQ_query_param_amount (withdraw_fee_balance),
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_query_param_timestamp (&expiration_date),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (reserve_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_YES ==
|
|
|
|
TALER_amount_cmp_currency (reserve_balance,
|
|
|
|
withdraw_fee_balance));
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_reserves_update",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
/**
|
|
|
|
* Delete information about a reserve.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param reserve_pub public key of the reserve
|
|
|
|
* @param master_pub master public key of the exchange
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2017-03-14 18:00:17 +01:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-03-14 18:00:17 +01:00
|
|
|
postgres_del_reserve_info (void *cls,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub)
|
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-03-14 18:00:17 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (reserve_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_reserves_delete",
|
|
|
|
params);
|
2017-03-14 18:00:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-09 01:17:37 +02:00
|
|
|
/**
|
|
|
|
* Get information about a reserve.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param reserve_pub public key of the reserve
|
|
|
|
* @param master_pub master public key of the exchange
|
2017-03-15 13:36:47 +01:00
|
|
|
* @param[out] rowid which row did we get the information from
|
2016-10-09 01:17:37 +02:00
|
|
|
* @param[out] reserve_balance amount stored in the reserve
|
|
|
|
* @param[out] withdraw_fee_balance amount the exchange gained in withdraw fees
|
|
|
|
* due to withdrawals from this reserve
|
|
|
|
* @param[out] expiration_date expiration date of the reserve
|
2019-10-05 15:12:11 +02:00
|
|
|
* @param[out] sender_account from where did the money in the reserve originally come from
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-10-09 01:17:37 +02:00
|
|
|
postgres_get_reserve_info (void *cls,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
2017-03-15 13:36:47 +01:00
|
|
|
uint64_t *rowid,
|
2016-10-09 01:17:37 +02:00
|
|
|
struct TALER_Amount *reserve_balance,
|
|
|
|
struct TALER_Amount *withdraw_fee_balance,
|
2021-12-14 16:04:32 +01:00
|
|
|
struct GNUNET_TIME_Timestamp *expiration_date,
|
2019-10-05 15:12:11 +02:00
|
|
|
char **sender_account)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (reserve_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("reserve_balance", reserve_balance),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("withdraw_fee_balance", withdraw_fee_balance),
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_result_spec_timestamp ("expiration_date", expiration_date),
|
2017-03-15 13:36:47 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("auditor_reserves_rowid", rowid),
|
2019-10-05 15:12:11 +02:00
|
|
|
GNUNET_PQ_result_spec_string ("origin_account", sender_account),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-06-24 23:06:44 +02:00
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_reserves_select",
|
|
|
|
params,
|
|
|
|
rs);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert information about all reserves. There must not be an
|
|
|
|
* existing record for the @a master_pub.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master public key of the exchange
|
|
|
|
* @param reserve_balance amount stored in the reserve
|
|
|
|
* @param withdraw_fee_balance amount the exchange gained in withdraw fees
|
2022-06-14 23:04:43 +02:00
|
|
|
* @param purse_fee_balance amount the exchange gained in purse fees
|
|
|
|
* @param history_fee_balance amount the exchange gained in history fees
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_reserve_summary (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_Amount *reserve_balance,
|
2022-06-14 23:04:43 +02:00
|
|
|
const struct TALER_Amount *withdraw_fee_balance,
|
|
|
|
const struct TALER_Amount *purse_fee_balance,
|
|
|
|
const struct TALER_Amount *history_fee_balance)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2016-11-04 00:51:17 +01:00
|
|
|
TALER_PQ_query_param_amount (reserve_balance),
|
|
|
|
TALER_PQ_query_param_amount (withdraw_fee_balance),
|
2022-06-14 23:04:43 +02:00
|
|
|
TALER_PQ_query_param_amount (purse_fee_balance),
|
|
|
|
TALER_PQ_query_param_amount (history_fee_balance),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_YES ==
|
|
|
|
TALER_amount_cmp_currency (reserve_balance,
|
|
|
|
withdraw_fee_balance));
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_reserve_balance_insert",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update information about all reserves. Destructively updates an
|
|
|
|
* existing record, which must already exist.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master public key of the exchange
|
|
|
|
* @param reserve_balance amount stored in the reserve
|
|
|
|
* @param withdraw_fee_balance amount the exchange gained in withdraw fees
|
|
|
|
* due to withdrawals from this reserve
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_update_reserve_summary (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_Amount *reserve_balance,
|
2022-06-14 23:04:43 +02:00
|
|
|
const struct TALER_Amount *withdraw_fee_balance,
|
|
|
|
const struct TALER_Amount *purse_fee_balance,
|
|
|
|
const struct TALER_Amount *history_fee_balance)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2016-11-04 00:51:17 +01:00
|
|
|
TALER_PQ_query_param_amount (reserve_balance),
|
|
|
|
TALER_PQ_query_param_amount (withdraw_fee_balance),
|
2022-06-14 23:04:43 +02:00
|
|
|
TALER_PQ_query_param_amount (purse_fee_balance),
|
|
|
|
TALER_PQ_query_param_amount (history_fee_balance),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_reserve_balance_update",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get summary information about all reserves.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master public key of the exchange
|
2022-06-14 23:04:43 +02:00
|
|
|
* @param[out] reserve_balance amount stored in reserves
|
2016-10-09 01:17:37 +02:00
|
|
|
* @param[out] withdraw_fee_balance amount the exchange gained in withdraw fees
|
2022-06-14 23:04:43 +02:00
|
|
|
* @param[out] purse_fee_balance amount the exchange gained in purse fees
|
|
|
|
* @param[out] history_fee_balance amount the exchange gained in history fees
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-10-09 01:17:37 +02:00
|
|
|
postgres_get_reserve_summary (void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
struct TALER_Amount *reserve_balance,
|
2022-06-14 23:04:43 +02:00
|
|
|
struct TALER_Amount *withdraw_fee_balance,
|
|
|
|
struct TALER_Amount *purse_fee_balance,
|
|
|
|
struct TALER_Amount *history_fee_balance)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-24 23:06:44 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("reserve_balance", reserve_balance),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("withdraw_fee_balance", withdraw_fee_balance),
|
2022-06-14 23:04:43 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("purse_fee_balance", purse_fee_balance),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("history_fee_balance", history_fee_balance),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-03-20 04:17:06 +01:00
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_reserve_balance_select",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-06-24 23:06:44 +02:00
|
|
|
}
|
2017-03-20 04:17:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert information about exchange's wire fee balance. There must not be an
|
|
|
|
* existing record for the same @a master_pub.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master public key of the exchange
|
|
|
|
* @param wire_fee_balance amount the exchange gained in wire fees
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2017-03-20 04:17:06 +01:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_wire_fee_summary (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_Amount *wire_fee_balance)
|
2017-03-20 04:17:06 +01:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-03-20 04:17:06 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2017-06-24 23:06:44 +02:00
|
|
|
TALER_PQ_query_param_amount (wire_fee_balance),
|
2017-03-20 04:17:06 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_wire_fee_balance_insert",
|
|
|
|
params);
|
2017-03-20 04:17:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert information about exchange's wire fee balance. Destructively updates an
|
|
|
|
* existing record, which must already exist.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master public key of the exchange
|
|
|
|
* @param wire_fee_balance amount the exchange gained in wire fees
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2017-03-20 04:17:06 +01:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_update_wire_fee_summary (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_Amount *wire_fee_balance)
|
2017-03-20 04:17:06 +01:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-03-20 04:17:06 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_amount (wire_fee_balance),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_wire_fee_balance_update",
|
|
|
|
params);
|
2017-03-20 04:17:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get summary information about an exchanges wire fee balance.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master public key of the exchange
|
|
|
|
* @param[out] wire_fee_balance set amount the exchange gained in wire fees
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2017-03-20 04:17:06 +01:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-03-20 04:17:06 +01:00
|
|
|
postgres_get_wire_fee_summary (void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
struct TALER_Amount *wire_fee_balance)
|
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-03-20 04:17:06 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("wire_fee_balance",
|
|
|
|
wire_fee_balance),
|
2017-03-20 04:17:06 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-06-24 23:06:44 +02:00
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_wire_fee_balance_select",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-03-20 04:17:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-09 01:17:37 +02:00
|
|
|
/**
|
|
|
|
* Insert information about a denomination key's balances. There
|
|
|
|
* must not be an existing record for the denomination key.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param denom_pub_hash hash of the denomination public key
|
|
|
|
* @param denom_balance value of coins outstanding with this denomination key
|
2019-09-02 08:01:55 +02:00
|
|
|
* @param denom_loss value of coins redeemed that were not outstanding (effectively, negative @a denom_balance)
|
2017-03-18 22:20:48 +01:00
|
|
|
* @param denom_risk value of coins issued with this denomination key
|
2020-01-18 23:49:37 +01:00
|
|
|
* @param recoup_loss losses from recoup (if this denomination was revoked)
|
2018-10-28 11:30:02 +01:00
|
|
|
* @param num_issued how many coins of this denomination did the exchange blind-sign
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_denomination_balance (
|
|
|
|
void *cls,
|
2022-02-21 00:23:23 +01:00
|
|
|
const struct TALER_DenominationHashP *denom_pub_hash,
|
2020-03-07 00:28:07 +01:00
|
|
|
const struct TALER_Amount *denom_balance,
|
|
|
|
const struct TALER_Amount *denom_loss,
|
|
|
|
const struct TALER_Amount *denom_risk,
|
|
|
|
const struct TALER_Amount *recoup_loss,
|
|
|
|
uint64_t num_issued)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (denom_pub_hash),
|
2016-11-04 00:51:17 +01:00
|
|
|
TALER_PQ_query_param_amount (denom_balance),
|
2019-09-02 08:01:55 +02:00
|
|
|
TALER_PQ_query_param_amount (denom_loss),
|
2018-10-28 11:30:02 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&num_issued),
|
2017-03-18 22:20:48 +01:00
|
|
|
TALER_PQ_query_param_amount (denom_risk),
|
2020-01-18 23:49:37 +01:00
|
|
|
TALER_PQ_query_param_amount (recoup_loss),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_denomination_pending_insert",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update information about a denomination key's balances. There
|
|
|
|
* must be an existing record for the denomination key.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param denom_pub_hash hash of the denomination public key
|
|
|
|
* @param denom_balance value of coins outstanding with this denomination key
|
2019-09-02 08:01:55 +02:00
|
|
|
* @param denom_loss value of coins redeemed that were not outstanding (effectively, negative @a denom_balance)
|
|
|
|
* @param denom_risk value of coins issued with this denomination key
|
2020-01-18 23:49:37 +01:00
|
|
|
* @param recoup_loss losses from recoup (if this denomination was revoked)
|
2018-10-28 11:30:02 +01:00
|
|
|
* @param num_issued how many coins of this denomination did the exchange blind-sign
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_update_denomination_balance (
|
|
|
|
void *cls,
|
2022-02-21 00:23:23 +01:00
|
|
|
const struct TALER_DenominationHashP *denom_pub_hash,
|
2020-03-07 00:28:07 +01:00
|
|
|
const struct TALER_Amount *denom_balance,
|
|
|
|
const struct TALER_Amount *denom_loss,
|
|
|
|
const struct TALER_Amount *denom_risk,
|
|
|
|
const struct TALER_Amount *recoup_loss,
|
|
|
|
uint64_t num_issued)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2016-11-04 00:51:17 +01:00
|
|
|
TALER_PQ_query_param_amount (denom_balance),
|
2019-09-02 08:01:55 +02:00
|
|
|
TALER_PQ_query_param_amount (denom_loss),
|
2018-10-28 11:30:02 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&num_issued),
|
2017-03-18 22:20:48 +01:00
|
|
|
TALER_PQ_query_param_amount (denom_risk),
|
2020-01-18 23:49:37 +01:00
|
|
|
TALER_PQ_query_param_amount (recoup_loss),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (denom_pub_hash),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_denomination_pending_update",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about a denomination key's balances.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param denom_pub_hash hash of the denomination public key
|
|
|
|
* @param[out] denom_balance value of coins outstanding with this denomination key
|
2017-03-18 22:20:48 +01:00
|
|
|
* @param[out] denom_risk value of coins issued with this denomination key
|
2019-09-02 08:01:55 +02:00
|
|
|
* @param[out] denom_loss value of coins redeemed that were not outstanding (effectively, negative @a denom_balance)
|
2020-01-18 23:49:37 +01:00
|
|
|
* @param[out] recoup_loss losses from recoup (if this denomination was revoked)
|
2018-10-28 11:30:02 +01:00
|
|
|
* @param[out] num_issued how many coins of this denomination did the exchange blind-sign
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2022-02-21 00:23:23 +01:00
|
|
|
postgres_get_denomination_balance (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_DenominationHashP *denom_pub_hash,
|
|
|
|
struct TALER_Amount *denom_balance,
|
|
|
|
struct TALER_Amount *denom_loss,
|
|
|
|
struct TALER_Amount *denom_risk,
|
|
|
|
struct TALER_Amount *recoup_loss,
|
|
|
|
uint64_t *num_issued)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (denom_pub_hash),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("denom_balance", denom_balance),
|
2019-09-02 08:01:55 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("denom_loss", denom_loss),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("denom_risk", denom_risk),
|
2020-01-18 23:49:37 +01:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("recoup_loss", recoup_loss),
|
2018-10-28 11:30:02 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("num_issued", num_issued),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-09-30 20:29:19 +02:00
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_denomination_pending_select",
|
|
|
|
params,
|
|
|
|
rs);
|
2016-11-03 13:01:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert information about an exchange's denomination balances. There
|
|
|
|
* must not be an existing record for the exchange.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
2016-10-09 01:17:37 +02:00
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param denom_balance value of coins outstanding with this denomination key
|
|
|
|
* @param deposit_fee_balance total deposit fees collected for this DK
|
|
|
|
* @param melt_fee_balance total melt fees collected for this DK
|
|
|
|
* @param refund_fee_balance total refund fees collected for this DK
|
2017-03-18 22:06:27 +01:00
|
|
|
* @param risk maximum risk exposure of the exchange
|
2020-01-18 23:49:37 +01:00
|
|
|
* @param loss materialized @a risk from recoup
|
|
|
|
* @param irregular_recoup recoups on non-revoked coins
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_balance_summary (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_Amount *denom_balance,
|
|
|
|
const struct TALER_Amount *deposit_fee_balance,
|
|
|
|
const struct TALER_Amount *melt_fee_balance,
|
|
|
|
const struct TALER_Amount *refund_fee_balance,
|
|
|
|
const struct TALER_Amount *risk,
|
|
|
|
const struct TALER_Amount *loss,
|
|
|
|
const struct TALER_Amount *irregular_recoup)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2016-11-04 00:51:17 +01:00
|
|
|
TALER_PQ_query_param_amount (denom_balance),
|
|
|
|
TALER_PQ_query_param_amount (deposit_fee_balance),
|
|
|
|
TALER_PQ_query_param_amount (melt_fee_balance),
|
|
|
|
TALER_PQ_query_param_amount (refund_fee_balance),
|
2017-03-18 22:06:27 +01:00
|
|
|
TALER_PQ_query_param_amount (risk),
|
2019-07-25 19:26:25 +02:00
|
|
|
TALER_PQ_query_param_amount (loss),
|
2020-01-18 23:49:37 +01:00
|
|
|
TALER_PQ_query_param_amount (irregular_recoup),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_YES ==
|
|
|
|
TALER_amount_cmp_currency (denom_balance,
|
|
|
|
deposit_fee_balance));
|
|
|
|
GNUNET_assert (GNUNET_YES ==
|
|
|
|
TALER_amount_cmp_currency (denom_balance,
|
|
|
|
melt_fee_balance));
|
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_YES ==
|
|
|
|
TALER_amount_cmp_currency (denom_balance,
|
|
|
|
refund_fee_balance));
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_balance_summary_insert",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update information about an exchange's denomination balances. There
|
|
|
|
* must be an existing record for the exchange.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param denom_balance value of coins outstanding with this denomination key
|
|
|
|
* @param deposit_fee_balance total deposit fees collected for this DK
|
|
|
|
* @param melt_fee_balance total melt fees collected for this DK
|
|
|
|
* @param refund_fee_balance total refund fees collected for this DK
|
2017-03-18 22:06:27 +01:00
|
|
|
* @param risk maximum risk exposure of the exchange
|
2020-01-18 23:49:37 +01:00
|
|
|
* @param loss materialized @a risk from recoup
|
|
|
|
* @param irregular_recoup recoups made on non-revoked coins
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_update_balance_summary (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_Amount *denom_balance,
|
|
|
|
const struct TALER_Amount *deposit_fee_balance,
|
|
|
|
const struct TALER_Amount *melt_fee_balance,
|
|
|
|
const struct TALER_Amount *refund_fee_balance,
|
|
|
|
const struct TALER_Amount *risk,
|
|
|
|
const struct TALER_Amount *loss,
|
|
|
|
const struct TALER_Amount *irregular_recoup)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2016-11-04 00:51:17 +01:00
|
|
|
TALER_PQ_query_param_amount (denom_balance),
|
|
|
|
TALER_PQ_query_param_amount (deposit_fee_balance),
|
|
|
|
TALER_PQ_query_param_amount (melt_fee_balance),
|
|
|
|
TALER_PQ_query_param_amount (refund_fee_balance),
|
2017-03-18 22:06:27 +01:00
|
|
|
TALER_PQ_query_param_amount (risk),
|
2019-07-25 19:26:25 +02:00
|
|
|
TALER_PQ_query_param_amount (loss),
|
2020-01-18 23:49:37 +01:00
|
|
|
TALER_PQ_query_param_amount (irregular_recoup),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_balance_summary_update",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about an exchange's denomination balances.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param[out] denom_balance value of coins outstanding with this denomination key
|
|
|
|
* @param[out] deposit_fee_balance total deposit fees collected for this DK
|
|
|
|
* @param[out] melt_fee_balance total melt fees collected for this DK
|
|
|
|
* @param[out] refund_fee_balance total refund fees collected for this DK
|
2017-03-18 22:06:27 +01:00
|
|
|
* @param[out] risk maximum risk exposure of the exchange
|
2020-01-18 23:49:37 +01:00
|
|
|
* @param[out] loss losses from recoup (on revoked denominations)
|
|
|
|
* @param[out] irregular_recoup recoups on NOT revoked denominations
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-03-19 01:09:00 +01:00
|
|
|
postgres_get_balance_summary (void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
struct TALER_Amount *denom_balance,
|
|
|
|
struct TALER_Amount *deposit_fee_balance,
|
|
|
|
struct TALER_Amount *melt_fee_balance,
|
|
|
|
struct TALER_Amount *refund_fee_balance,
|
2019-07-25 19:26:25 +02:00
|
|
|
struct TALER_Amount *risk,
|
2020-01-17 15:00:22 +01:00
|
|
|
struct TALER_Amount *loss,
|
2020-01-18 23:49:37 +01:00
|
|
|
struct TALER_Amount *irregular_recoup)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("denom_balance", denom_balance),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("deposit_fee_balance", deposit_fee_balance),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("melt_fee_balance", melt_fee_balance),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("refund_fee_balance", refund_fee_balance),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("risk", risk),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("loss", loss),
|
2020-01-18 23:49:37 +01:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("irregular_recoup", irregular_recoup),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-06-24 23:06:44 +02:00
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2019-07-25 19:26:25 +02:00
|
|
|
"auditor_balance_summary_select",
|
|
|
|
params,
|
|
|
|
rs);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert information about an exchange's historic
|
|
|
|
* revenue about a denomination key.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param denom_pub_hash hash of the denomination key
|
|
|
|
* @param revenue_timestamp when did this profit get realized
|
|
|
|
* @param revenue_balance what was the total profit made from
|
|
|
|
* deposit fees, melting fees, refresh fees
|
|
|
|
* and coins that were never returned?
|
2020-01-18 12:34:17 +01:00
|
|
|
* @param loss_balance total losses suffered by the exchange at the time
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_historic_denom_revenue (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
2022-02-21 00:23:23 +01:00
|
|
|
const struct TALER_DenominationHashP *denom_pub_hash,
|
2021-12-14 16:04:32 +01:00
|
|
|
struct GNUNET_TIME_Timestamp revenue_timestamp,
|
2020-03-07 00:28:07 +01:00
|
|
|
const struct TALER_Amount *revenue_balance,
|
|
|
|
const struct TALER_Amount *loss_balance)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (denom_pub_hash),
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_query_param_timestamp (&revenue_timestamp),
|
2016-11-04 00:51:17 +01:00
|
|
|
TALER_PQ_query_param_amount (revenue_balance),
|
2019-07-25 19:26:25 +02:00
|
|
|
TALER_PQ_query_param_amount (loss_balance),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-25 16:18:24 +02:00
|
|
|
"auditor_historic_denomination_revenue_insert",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-24 23:06:44 +02:00
|
|
|
* Closure for #historic_denom_revenue_cb().
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
struct HistoricDenomRevenueContext
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2017-06-24 23:06:44 +02:00
|
|
|
/**
|
|
|
|
* Function to call for each result.
|
|
|
|
*/
|
|
|
|
TALER_AUDITORDB_HistoricDenominationRevenueDataCallback cb;
|
2017-03-15 13:12:45 +01:00
|
|
|
|
2017-06-24 23:06:44 +02:00
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
2019-08-25 16:18:24 +02:00
|
|
|
*/
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg;
|
|
|
|
|
2017-06-24 23:06:44 +02:00
|
|
|
/**
|
|
|
|
* Number of results processed.
|
|
|
|
*/
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function for #postgres_select_historic_denom_revenue().
|
|
|
|
* To be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct HistoricRevenueContext *`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 23:06:44 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
historic_denom_revenue_cb (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 23:06:44 +02:00
|
|
|
{
|
|
|
|
struct HistoricDenomRevenueContext *hrc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = hrc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-06-24 23:06:44 +02:00
|
|
|
for (unsigned int i = 0; i < num_results; i++)
|
2016-11-03 13:01:36 +01:00
|
|
|
{
|
2022-02-21 00:23:23 +01:00
|
|
|
struct TALER_DenominationHashP denom_pub_hash;
|
2021-12-14 16:04:32 +01:00
|
|
|
struct GNUNET_TIME_Timestamp revenue_timestamp;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct TALER_Amount revenue_balance;
|
2019-07-25 19:26:25 +02:00
|
|
|
struct TALER_Amount loss;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
|
|
|
&denom_pub_hash),
|
|
|
|
GNUNET_PQ_result_spec_timestamp ("revenue_timestamp",
|
|
|
|
&revenue_timestamp),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("revenue_balance",
|
|
|
|
&revenue_balance),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("loss_balance",
|
|
|
|
&loss),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-03-15 13:12:45 +01:00
|
|
|
|
2016-11-03 13:01:36 +01:00
|
|
|
if (GNUNET_OK !=
|
2017-06-24 23:06:44 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
2019-08-17 21:35:21 +02:00
|
|
|
rs,
|
|
|
|
i))
|
2016-11-03 13:01:36 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 23:06:44 +02:00
|
|
|
hrc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return;
|
2016-11-03 13:01:36 +01:00
|
|
|
}
|
2016-11-04 00:34:09 +01:00
|
|
|
|
2017-06-24 23:06:44 +02:00
|
|
|
hrc->qs = i + 1;
|
|
|
|
if (GNUNET_OK !=
|
2019-08-17 21:35:21 +02:00
|
|
|
hrc->cb (hrc->cb_cls,
|
|
|
|
&denom_pub_hash,
|
|
|
|
revenue_timestamp,
|
|
|
|
&revenue_balance,
|
|
|
|
&loss))
|
2016-11-04 00:34:09 +01:00
|
|
|
break;
|
2016-11-03 13:01:36 +01:00
|
|
|
}
|
2017-06-24 23:06:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain all of the historic denomination key revenue
|
|
|
|
* of the given @a master_pub.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param cb function to call with the results
|
|
|
|
* @param cb_cls closure for @a cb
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_historic_denom_revenue (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
TALER_AUDITORDB_HistoricDenominationRevenueDataCallback cb,
|
|
|
|
void *cb_cls)
|
2017-06-24 23:06:44 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-06-24 23:06:44 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct HistoricDenomRevenueContext hrc = {
|
|
|
|
.cb = cb,
|
2019-08-17 21:35:21 +02:00
|
|
|
.cb_cls = cb_cls,
|
|
|
|
.pg = pg
|
2017-06-24 23:06:44 +02:00
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-09-30 20:29:19 +02:00
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_historic_denomination_revenue_select",
|
|
|
|
params,
|
|
|
|
&historic_denom_revenue_cb,
|
|
|
|
&hrc);
|
2017-06-24 23:06:44 +02:00
|
|
|
if (qs <= 0)
|
|
|
|
return qs;
|
|
|
|
return hrc.qs;
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert information about an exchange's historic revenue from reserves.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param start_time beginning of aggregated time interval
|
|
|
|
* @param end_time end of aggregated time interval
|
|
|
|
* @param reserve_profits total profits made
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_historic_reserve_revenue (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
2021-12-14 16:04:32 +01:00
|
|
|
struct GNUNET_TIME_Timestamp start_time,
|
|
|
|
struct GNUNET_TIME_Timestamp end_time,
|
2020-03-07 00:28:07 +01:00
|
|
|
const struct TALER_Amount *reserve_profits)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_query_param_timestamp (&start_time),
|
|
|
|
GNUNET_PQ_query_param_timestamp (&end_time),
|
2016-11-04 00:51:17 +01:00
|
|
|
TALER_PQ_query_param_amount (reserve_profits),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-07-25 19:26:25 +02:00
|
|
|
"auditor_historic_reserve_summary_insert",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-24 23:06:44 +02:00
|
|
|
* Closure for #historic_reserve_revenue_cb().
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
struct HistoricReserveRevenueContext
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2017-06-24 23:06:44 +02:00
|
|
|
/**
|
|
|
|
* Function to call for each result.
|
|
|
|
*/
|
|
|
|
TALER_AUDITORDB_HistoricReserveRevenueDataCallback cb;
|
2017-03-15 13:12:45 +01:00
|
|
|
|
2017-06-24 23:06:44 +02:00
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
|
|
|
|
2017-06-24 23:06:44 +02:00
|
|
|
/**
|
|
|
|
* Number of results processed.
|
|
|
|
*/
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function for #postgres_select_historic_reserve_revenue().
|
|
|
|
* To be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct HistoricRevenueContext *`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 23:06:44 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
historic_reserve_revenue_cb (void *cls,
|
2019-07-25 19:26:25 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 23:06:44 +02:00
|
|
|
{
|
|
|
|
struct HistoricReserveRevenueContext *hrc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = hrc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-06-24 23:06:44 +02:00
|
|
|
for (unsigned int i = 0; i < num_results; i++)
|
2016-11-03 13:01:36 +01:00
|
|
|
{
|
2021-12-14 16:04:32 +01:00
|
|
|
struct GNUNET_TIME_Timestamp start_date;
|
|
|
|
struct GNUNET_TIME_Timestamp end_date;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct TALER_Amount reserve_profits;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2021-12-14 16:04:32 +01:00
|
|
|
GNUNET_PQ_result_spec_timestamp ("start_date",
|
|
|
|
&start_date),
|
|
|
|
GNUNET_PQ_result_spec_timestamp ("end_date",
|
|
|
|
&end_date),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("reserve_profits",
|
|
|
|
&reserve_profits),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-09-30 20:29:19 +02:00
|
|
|
|
2016-11-03 13:01:36 +01:00
|
|
|
if (GNUNET_OK !=
|
2017-06-24 23:06:44 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
2019-08-25 16:18:24 +02:00
|
|
|
rs,
|
|
|
|
i))
|
2016-11-03 13:01:36 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 23:06:44 +02:00
|
|
|
hrc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return;
|
2016-11-03 13:01:36 +01:00
|
|
|
}
|
2017-06-24 23:06:44 +02:00
|
|
|
hrc->qs = i + 1;
|
|
|
|
if (GNUNET_OK !=
|
2019-08-17 21:35:21 +02:00
|
|
|
hrc->cb (hrc->cb_cls,
|
|
|
|
start_date,
|
|
|
|
end_date,
|
|
|
|
&reserve_profits))
|
2016-11-04 00:34:09 +01:00
|
|
|
break;
|
2016-11-03 13:01:36 +01:00
|
|
|
}
|
2017-06-24 23:06:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return information about an exchange's historic revenue from reserves.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param cb function to call with results
|
|
|
|
* @param cb_cls closure for @a cb
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_historic_reserve_revenue (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
TALER_AUDITORDB_HistoricReserveRevenueDataCallback cb,
|
|
|
|
void *cb_cls)
|
2017-06-24 23:06:44 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-06-24 23:06:44 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
struct HistoricReserveRevenueContext hrc = {
|
|
|
|
.cb = cb,
|
2019-08-17 21:35:21 +02:00
|
|
|
.cb_cls = cb_cls,
|
|
|
|
.pg = pg
|
2017-06-24 23:06:44 +02:00
|
|
|
};
|
2017-09-30 20:29:19 +02:00
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (pg->conn,
|
2019-07-25 19:26:25 +02:00
|
|
|
"auditor_historic_reserve_summary_select",
|
|
|
|
params,
|
|
|
|
&historic_reserve_revenue_cb,
|
|
|
|
&hrc);
|
2017-06-24 23:06:44 +02:00
|
|
|
if (0 >= qs)
|
|
|
|
return qs;
|
|
|
|
return hrc.qs;
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert information about the predicted exchange's bank
|
|
|
|
* account balance.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param balance what the bank account balance of the exchange should show
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_predicted_result (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_Amount *balance)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2016-11-04 00:51:17 +01:00
|
|
|
TALER_PQ_query_param_amount (balance),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_predicted_result_insert",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update information about an exchange's predicted balance. There
|
|
|
|
* must be an existing record for the exchange.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param balance what the bank account balance of the exchange should show
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_update_predicted_result (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
const struct TALER_Amount *balance)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2021-08-23 08:24:59 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2016-11-04 20:37:53 +01:00
|
|
|
TALER_PQ_query_param_amount (balance),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_predicted_result_update",
|
|
|
|
params);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get an exchange's predicted balance.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param master_pub master key of the exchange
|
|
|
|
* @param[out] balance expected bank account balance of the exchange
|
2017-06-24 23:06:44 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 23:06:44 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-10-09 01:17:37 +02:00
|
|
|
postgres_get_predicted_balance (void *cls,
|
|
|
|
const struct TALER_MasterPublicKeyP *master_pub,
|
|
|
|
struct TALER_Amount *balance)
|
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-11-03 13:01:36 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("balance",
|
|
|
|
balance),
|
2016-11-03 13:01:36 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-06-24 23:06:44 +02:00
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (pg->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"auditor_predicted_result_select",
|
|
|
|
params,
|
|
|
|
rs);
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-06 15:17:10 +02:00
|
|
|
/**
|
|
|
|
* Initialize Postgres database subsystem.
|
|
|
|
*
|
|
|
|
* @param cls a configuration instance
|
|
|
|
* @return NULL on error, otherwise a `struct TALER_AUDITORDB_Plugin`
|
|
|
|
*/
|
|
|
|
void *
|
|
|
|
libtaler_plugin_auditordb_postgres_init (void *cls)
|
|
|
|
{
|
2020-02-09 15:53:28 +01:00
|
|
|
const struct GNUNET_CONFIGURATION_Handle *cfg = cls;
|
2016-10-06 15:17:10 +02:00
|
|
|
struct PostgresClosure *pg;
|
|
|
|
struct TALER_AUDITORDB_Plugin *plugin;
|
|
|
|
|
|
|
|
pg = GNUNET_new (struct PostgresClosure);
|
2020-02-09 16:34:40 +01:00
|
|
|
pg->cfg = cfg;
|
2019-08-17 21:35:21 +02:00
|
|
|
if (GNUNET_OK !=
|
2020-03-15 20:08:38 +01:00
|
|
|
TALER_config_get_currency (cfg,
|
|
|
|
&pg->currency))
|
2019-08-17 21:35:21 +02:00
|
|
|
{
|
|
|
|
GNUNET_free (pg);
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-10-06 15:17:10 +02:00
|
|
|
plugin = GNUNET_new (struct TALER_AUDITORDB_Plugin);
|
|
|
|
plugin->cls = pg;
|
2021-08-23 08:24:59 +02:00
|
|
|
plugin->preflight = &postgres_preflight;
|
2016-10-06 15:17:10 +02:00
|
|
|
plugin->drop_tables = &postgres_drop_tables;
|
|
|
|
plugin->create_tables = &postgres_create_tables;
|
|
|
|
plugin->start = &postgres_start;
|
|
|
|
plugin->commit = &postgres_commit;
|
|
|
|
plugin->rollback = &postgres_rollback;
|
|
|
|
plugin->gc = &postgres_gc;
|
2016-11-06 14:24:17 +01:00
|
|
|
|
2018-10-28 10:26:32 +01:00
|
|
|
plugin->insert_exchange = &postgres_insert_exchange;
|
|
|
|
plugin->delete_exchange = &postgres_delete_exchange;
|
|
|
|
plugin->list_exchanges = &postgres_list_exchanges;
|
|
|
|
plugin->insert_exchange_signkey = &postgres_insert_exchange_signkey;
|
2018-10-20 19:40:09 +02:00
|
|
|
plugin->insert_deposit_confirmation = &postgres_insert_deposit_confirmation;
|
2018-11-04 17:36:56 +01:00
|
|
|
plugin->get_deposit_confirmations = &postgres_get_deposit_confirmations;
|
2018-10-20 19:40:09 +02:00
|
|
|
|
2018-10-27 21:27:23 +02:00
|
|
|
plugin->get_auditor_progress_reserve = &postgres_get_auditor_progress_reserve;
|
2019-08-25 16:18:24 +02:00
|
|
|
plugin->update_auditor_progress_reserve =
|
|
|
|
&postgres_update_auditor_progress_reserve;
|
|
|
|
plugin->insert_auditor_progress_reserve =
|
|
|
|
&postgres_insert_auditor_progress_reserve;
|
|
|
|
plugin->get_auditor_progress_aggregation =
|
|
|
|
&postgres_get_auditor_progress_aggregation;
|
|
|
|
plugin->update_auditor_progress_aggregation =
|
|
|
|
&postgres_update_auditor_progress_aggregation;
|
|
|
|
plugin->insert_auditor_progress_aggregation =
|
|
|
|
&postgres_insert_auditor_progress_aggregation;
|
|
|
|
plugin->get_auditor_progress_deposit_confirmation =
|
|
|
|
&postgres_get_auditor_progress_deposit_confirmation;
|
|
|
|
plugin->update_auditor_progress_deposit_confirmation =
|
|
|
|
&postgres_update_auditor_progress_deposit_confirmation;
|
|
|
|
plugin->insert_auditor_progress_deposit_confirmation =
|
|
|
|
&postgres_insert_auditor_progress_deposit_confirmation;
|
2018-10-27 21:27:23 +02:00
|
|
|
plugin->get_auditor_progress_coin = &postgres_get_auditor_progress_coin;
|
|
|
|
plugin->update_auditor_progress_coin = &postgres_update_auditor_progress_coin;
|
|
|
|
plugin->insert_auditor_progress_coin = &postgres_insert_auditor_progress_coin;
|
2016-11-06 14:24:17 +01:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
plugin->get_wire_auditor_account_progress =
|
|
|
|
&postgres_get_wire_auditor_account_progress;
|
|
|
|
plugin->update_wire_auditor_account_progress =
|
|
|
|
&postgres_update_wire_auditor_account_progress;
|
|
|
|
plugin->insert_wire_auditor_account_progress =
|
|
|
|
&postgres_insert_wire_auditor_account_progress;
|
2017-09-30 20:29:19 +02:00
|
|
|
plugin->get_wire_auditor_progress = &postgres_get_wire_auditor_progress;
|
|
|
|
plugin->update_wire_auditor_progress = &postgres_update_wire_auditor_progress;
|
|
|
|
plugin->insert_wire_auditor_progress = &postgres_insert_wire_auditor_progress;
|
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
plugin->del_reserve_info = &postgres_del_reserve_info;
|
2016-10-09 01:17:37 +02:00
|
|
|
plugin->get_reserve_info = &postgres_get_reserve_info;
|
|
|
|
plugin->update_reserve_info = &postgres_update_reserve_info;
|
|
|
|
plugin->insert_reserve_info = &postgres_insert_reserve_info;
|
2016-11-06 14:24:17 +01:00
|
|
|
|
|
|
|
plugin->get_reserve_summary = &postgres_get_reserve_summary;
|
|
|
|
plugin->update_reserve_summary = &postgres_update_reserve_summary;
|
|
|
|
plugin->insert_reserve_summary = &postgres_insert_reserve_summary;
|
|
|
|
|
2017-03-20 04:17:06 +01:00
|
|
|
plugin->get_wire_fee_summary = &postgres_get_wire_fee_summary;
|
|
|
|
plugin->update_wire_fee_summary = &postgres_update_wire_fee_summary;
|
|
|
|
plugin->insert_wire_fee_summary = &postgres_insert_wire_fee_summary;
|
|
|
|
|
2016-11-06 14:24:17 +01:00
|
|
|
plugin->get_denomination_balance = &postgres_get_denomination_balance;
|
|
|
|
plugin->update_denomination_balance = &postgres_update_denomination_balance;
|
|
|
|
plugin->insert_denomination_balance = &postgres_insert_denomination_balance;
|
|
|
|
|
2017-03-19 01:09:00 +01:00
|
|
|
plugin->get_balance_summary = &postgres_get_balance_summary;
|
|
|
|
plugin->update_balance_summary = &postgres_update_balance_summary;
|
|
|
|
plugin->insert_balance_summary = &postgres_insert_balance_summary;
|
2016-11-06 14:24:17 +01:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
plugin->select_historic_denom_revenue =
|
|
|
|
&postgres_select_historic_denom_revenue;
|
|
|
|
plugin->insert_historic_denom_revenue =
|
|
|
|
&postgres_insert_historic_denom_revenue;
|
2016-11-06 14:24:17 +01:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
plugin->select_historic_reserve_revenue =
|
|
|
|
&postgres_select_historic_reserve_revenue;
|
|
|
|
plugin->insert_historic_reserve_revenue =
|
|
|
|
&postgres_insert_historic_reserve_revenue;
|
2016-11-06 14:24:17 +01:00
|
|
|
|
|
|
|
plugin->get_predicted_balance = &postgres_get_predicted_balance;
|
|
|
|
plugin->update_predicted_result = &postgres_update_predicted_result;
|
|
|
|
plugin->insert_predicted_result = &postgres_insert_predicted_result;
|
2016-10-09 01:17:37 +02:00
|
|
|
|
2016-10-06 15:17:10 +02:00
|
|
|
return plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shutdown Postgres database subsystem.
|
|
|
|
*
|
|
|
|
* @param cls a `struct TALER_AUDITORDB_Plugin`
|
|
|
|
* @return NULL (always)
|
|
|
|
*/
|
|
|
|
void *
|
|
|
|
libtaler_plugin_auditordb_postgres_done (void *cls)
|
|
|
|
{
|
|
|
|
struct TALER_AUDITORDB_Plugin *plugin = cls;
|
|
|
|
struct PostgresClosure *pg = plugin->cls;
|
|
|
|
|
2021-08-23 08:24:59 +02:00
|
|
|
if (NULL != pg->conn)
|
|
|
|
GNUNET_PQ_disconnect (pg->conn);
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_free (pg->currency);
|
2016-10-06 15:17:10 +02:00
|
|
|
GNUNET_free (pg);
|
|
|
|
GNUNET_free (plugin);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-10-31 12:59:50 +01:00
|
|
|
|
2016-10-06 15:17:10 +02:00
|
|
|
/* end of plugin_auditordb_postgres.c */
|