summaryrefslogtreecommitdiff
path: root/src/backenddb/pg_lookup_transfers.c
blob: 02faca2bd50cafa54835b196c02b90a6aa5de750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
/*
   This file is part of TALER
   Copyright (C) 2022 Taler Systems SA

   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 backenddb/pg_lookup_transfers.c
 * @brief Implementation of the lookup_transfers function for Postgres
 * @author Christian Grothoff
 */
#include "platform.h"
#include <taler/taler_error_codes.h>
#include <taler/taler_dbevents.h>
#include <taler/taler_pq_lib.h>
#include "pg_lookup_transfers.h"
#include "pg_helper.h"


/**
 * Closure for #lookup_transfers_cb().
 */
struct LookupTransfersContext
{
  /**
   * Function to call on results.
   */
  TALER_MERCHANTDB_TransferCallback cb;

  /**
   * Closure for @e cb.
   */
  void *cb_cls;

  /**
   * Postgres context.
   */
  struct PostgresClosure *pg;

  /**
   * Transaction status (set).
   */
  enum GNUNET_DB_QueryStatus qs;

  /**
   * Filter to apply by verification status.
   */
  enum TALER_EXCHANGE_YesNoAll verified;
};


/**
 * Function to be called with the results of a SELECT statement
 * that has returned @a num_results results.
 *
 * @param cls of type `struct LookupTransfersContext *`
 * @param result the postgres result
 * @param num_results the number of results in @a result
 */
static void
lookup_transfers_cb (void *cls,
                     PGresult *result,
                     unsigned int num_results)
{
  struct LookupTransfersContext *ltc = cls;
  struct PostgresClosure *pg = ltc->pg;

  for (unsigned int i = 0; i<num_results; i++)
  {
    struct TALER_Amount credit_amount;
    struct TALER_WireTransferIdentifierRawP wtid;
    char *payto_uri;
    char *exchange_url;
    uint64_t transfer_serial_id;
    struct GNUNET_TIME_Timestamp execution_time;
    enum TALER_EXCHANGE_YesNoAll verified;
    uint8_t verified8;
    uint8_t confirmed8;
    struct GNUNET_PQ_ResultSpec rs[] = {
      TALER_PQ_RESULT_SPEC_AMOUNT ("credit_amount",
                                   &credit_amount),
      GNUNET_PQ_result_spec_auto_from_type ("wtid",
                                            &wtid),
      GNUNET_PQ_result_spec_string ("payto_uri",
                                    &payto_uri),
      GNUNET_PQ_result_spec_string ("exchange_url",
                                    &exchange_url),
      GNUNET_PQ_result_spec_uint64 ("credit_serial",
                                    &transfer_serial_id),
      GNUNET_PQ_result_spec_timestamp ("execution_time",
                                       &execution_time),
      GNUNET_PQ_result_spec_auto_from_type ("verified",
                                            &verified8),
      GNUNET_PQ_result_spec_auto_from_type ("confirmed",
                                            &confirmed8),
      GNUNET_PQ_result_spec_end
    };

    if (GNUNET_OK !=
        GNUNET_PQ_extract_result (result,
                                  rs,
                                  i))
    {
      GNUNET_break (0);
      ltc->qs = GNUNET_DB_STATUS_HARD_ERROR;
      return;
    }
    if (0 == verified8)
      verified = TALER_EXCHANGE_YNA_NO;
    else
      verified = TALER_EXCHANGE_YNA_YES;
    if ( (ltc->verified == TALER_EXCHANGE_YNA_ALL) ||
         (ltc->verified == verified) )
    {
      ltc->cb (ltc->cb_cls,
               &credit_amount,
               &wtid,
               payto_uri,
               exchange_url,
               transfer_serial_id,
               execution_time,
               TALER_EXCHANGE_YNA_YES == verified,
               0 != confirmed8);
    }
    GNUNET_PQ_cleanup_result (rs);
  }
  ltc->qs = num_results;
}


enum GNUNET_DB_QueryStatus
TMH_PG_lookup_transfers (void *cls,
                         const char *instance_id,
                         const char *payto_uri,
                         struct GNUNET_TIME_Timestamp before,
                         struct GNUNET_TIME_Timestamp after,
                         int64_t limit,
                         uint64_t offset,
                         enum TALER_EXCHANGE_YesNoAll verified,
                         TALER_MERCHANTDB_TransferCallback cb,
                         void *cb_cls)
{
  struct PostgresClosure *pg = cls;
  uint64_t plimit = (uint64_t) ((limit < 0) ? -limit : limit);
  struct LookupTransfersContext ltc = {
    .cb = cb,
    .cb_cls = cb_cls,
    .pg = pg,
    .verified = verified
  };
  enum GNUNET_DB_QueryStatus qs;
  bool by_time;

  by_time = ( (! GNUNET_TIME_absolute_is_never (before.abs_time)) ||
              (! GNUNET_TIME_absolute_is_zero (after.abs_time)) );
  check_connection (pg);
  if (by_time)
  {
    if (NULL != payto_uri)
    {
      struct GNUNET_PQ_QueryParam params[] = {
        GNUNET_PQ_query_param_string (instance_id),
        GNUNET_PQ_query_param_timestamp (&before),
        GNUNET_PQ_query_param_timestamp (&after),
        GNUNET_PQ_query_param_uint64 (&offset),
        GNUNET_PQ_query_param_uint64 (&plimit),
        GNUNET_PQ_query_param_string (payto_uri),
        GNUNET_PQ_query_param_end
      };

      PREPARE (pg,
               "lookup_transfers_time_payto_asc",
               "SELECT"
               " mt.credit_amount_val"
               ",mt.credit_amount_frac"
               ",wtid"
               ",merchant_accounts.payto_uri"
               ",exchange_url"
               ",credit_serial"
               ",merchant_transfer_signatures.execution_time"
               ",verified"
               ",confirmed"
               " FROM merchant_transfers mt"
               "  JOIN merchant_accounts USING (account_serial)"
               "  JOIN merchant_transfer_signatures USING (credit_serial)"
               " WHERE execution_time < $2"
               "   AND execution_time >= $3"
               "   AND credit_serial > $4"
               "   AND payto_uri = $6"
               "   AND merchant_serial ="
               "     (SELECT merchant_serial"
               "        FROM merchant_instances"
               "       WHERE merchant_id=$1)"
               " ORDER BY credit_serial ASC"
               " LIMIT $5");
      PREPARE (pg,
               "lookup_transfers_time_payto_desc",
               "SELECT"
               " mt.credit_amount_val"
               ",mt.credit_amount_frac"
               ",wtid"
               ",merchant_accounts.payto_uri"
               ",exchange_url"
               ",credit_serial"
               ",merchant_transfer_signatures.execution_time"
               ",verified"
               ",confirmed"
               " FROM merchant_transfers mt"
               "  JOIN merchant_accounts USING (account_serial)"
               "  JOIN merchant_transfer_signatures USING (credit_serial)"
               " WHERE execution_time < $2"
               "   AND execution_time >= $3"
               "   AND credit_serial < $4"
               "   AND payto_uri = $6"
               "   AND merchant_serial ="
               "     (SELECT merchant_serial"
               "        FROM merchant_instances"
               "       WHERE merchant_id=$1)"
               " ORDER BY credit_serial DESC"
               " LIMIT $5");
      qs = GNUNET_PQ_eval_prepared_multi_select (
        pg->conn,
        (limit > 0)
        ? "lookup_transfers_time_payto_asc"
        : "lookup_transfers_time_payto_desc",
        params,
        &lookup_transfers_cb,
        &ltc);
    }
    else
    {
      struct GNUNET_PQ_QueryParam params[] = {
        GNUNET_PQ_query_param_string (instance_id),
        GNUNET_PQ_query_param_timestamp (&before),
        GNUNET_PQ_query_param_timestamp (&after),
        GNUNET_PQ_query_param_uint64 (&offset),
        GNUNET_PQ_query_param_uint64 (&plimit),
        GNUNET_PQ_query_param_end
      };

      PREPARE (pg,
               "lookup_transfers_time_asc",
               "SELECT"
               " mt.credit_amount_val"
               ",mt.credit_amount_frac"
               ",wtid"
               ",merchant_accounts.payto_uri"
               ",exchange_url"
               ",credit_serial"
               ",merchant_transfer_signatures.execution_time"
               ",verified"
               ",confirmed"
               " FROM merchant_transfers mt"
               "  JOIN merchant_accounts USING (account_serial)"
               "  JOIN merchant_transfer_signatures USING (credit_serial)"
               " WHERE execution_time < $2"
               "   AND execution_time >= $3"
               "   AND credit_serial > $4"
               "   AND merchant_serial ="
               "     (SELECT merchant_serial"
               "        FROM merchant_instances"
               "       WHERE merchant_id=$1)"
               " ORDER BY credit_serial ASC"
               " LIMIT $5");
      PREPARE (pg,
               "lookup_transfers_time_desc",
               "SELECT"
               " mt.credit_amount_val"
               ",mt.credit_amount_frac"
               ",wtid"
               ",merchant_accounts.payto_uri"
               ",exchange_url"
               ",credit_serial"
               ",merchant_transfer_signatures.execution_time"
               ",verified"
               ",confirmed"
               " FROM merchant_transfers mt"
               "  JOIN merchant_accounts USING (account_serial)"
               "  JOIN merchant_transfer_signatures USING (credit_serial)"
               " WHERE execution_time < $2"
               "   AND execution_time >= $3"
               "   AND credit_serial < $4"
               "   AND merchant_serial ="
               "     (SELECT merchant_serial"
               "        FROM merchant_instances"
               "       WHERE merchant_id=$1)"
               " ORDER BY credit_serial DESC"
               " LIMIT $5");
      qs = GNUNET_PQ_eval_prepared_multi_select (
        pg->conn,
        (limit > 0)
        ? "lookup_transfers_time_asc"
        : "lookup_transfers_time_desc",
        params,
        &lookup_transfers_cb,
        &ltc);
    }
  }
  else
  {
    if (NULL != payto_uri)
    {
      struct GNUNET_PQ_QueryParam params[] = {
        GNUNET_PQ_query_param_string (instance_id),
        GNUNET_PQ_query_param_uint64 (&offset),
        GNUNET_PQ_query_param_uint64 (&plimit),
        GNUNET_PQ_query_param_string (payto_uri),
        GNUNET_PQ_query_param_end
      };

      PREPARE (pg,
               "lookup_transfers_payto_asc",
               "SELECT"
               " mt.credit_amount_val"
               ",mt.credit_amount_frac"
               ",wtid"
               ",merchant_accounts.payto_uri"
               ",exchange_url"
               ",credit_serial"
               ",CASE WHEN (merchant_transfer_signatures.execution_time) IS NULL"
               "   THEN 9223372036854775807" /* largest BIGINT possible */
               "   ELSE merchant_transfer_signatures.execution_time"
               " END AS execution_time"
               ",verified"
               ",confirmed"
               " FROM merchant_transfers mt"
               "  JOIN merchant_accounts USING (account_serial)"
               "  LEFT JOIN merchant_transfer_signatures USING (credit_serial)"
               " WHERE credit_serial > $2"
               "   AND payto_uri = $4"
               "   AND merchant_serial ="
               "     (SELECT merchant_serial"
               "        FROM merchant_instances"
               "       WHERE merchant_id=$1)"
               " ORDER BY credit_serial ASC"
               " LIMIT $3");
      PREPARE (pg,
               "lookup_transfers_payto_desc",
               "SELECT"
               " mt.credit_amount_val"
               ",mt.credit_amount_frac"
               ",wtid"
               ",merchant_accounts.payto_uri"
               ",exchange_url"
               ",credit_serial"
               ",CASE WHEN (merchant_transfer_signatures.execution_time) IS NULL"
               "   THEN 9223372036854775807" /* largest BIGINT possible */
               "   ELSE merchant_transfer_signatures.execution_time"
               " END AS execution_time"
               ",verified"
               ",confirmed"
               " FROM merchant_transfers mt"
               "  JOIN merchant_accounts USING (account_serial)"
               "  LEFT JOIN merchant_transfer_signatures USING (credit_serial)"
               " WHERE credit_serial < $2"
               "   AND payto_uri = $4"
               "   AND merchant_serial ="
               "     (SELECT merchant_serial"
               "        FROM merchant_instances"
               "       WHERE merchant_id=$1)"
               " ORDER BY credit_serial DESC"
               " LIMIT $3");
      qs = GNUNET_PQ_eval_prepared_multi_select (
        pg->conn,
        (limit > 0)
        ? "lookup_transfers_payto_asc"
        : "lookup_transfers_payto_desc",
        params,
        &lookup_transfers_cb,
        &ltc);
    }
    else
    {
      struct GNUNET_PQ_QueryParam params[] = {
        GNUNET_PQ_query_param_string (instance_id),
        GNUNET_PQ_query_param_uint64 (&offset),
        GNUNET_PQ_query_param_uint64 (&plimit),
        GNUNET_PQ_query_param_end
      };

      PREPARE (pg,
               "lookup_transfers_desc",
               "SELECT"
               " mt.credit_amount_val"
               ",mt.credit_amount_frac"
               ",wtid"
               ",merchant_accounts.payto_uri"
               ",exchange_url"
               ",credit_serial"
               ",CASE WHEN (merchant_transfer_signatures.execution_time) IS NULL"
               "   THEN 9223372036854775807" /* largest BIGINT possible */
               "   ELSE merchant_transfer_signatures.execution_time"
               " END AS execution_time"
               ",verified"
               ",confirmed"
               " FROM merchant_transfers mt"
               "  JOIN merchant_accounts USING (account_serial)"
               "  LEFT JOIN merchant_transfer_signatures USING (credit_serial)"
               " WHERE credit_serial < $2"
               "   AND merchant_serial ="
               "     (SELECT merchant_serial"
               "        FROM merchant_instances"
               "       WHERE merchant_id=$1)"
               " ORDER BY credit_serial DESC"
               " LIMIT $3");
      PREPARE (pg,
               "lookup_transfers_asc",
               "SELECT"
               " mt.credit_amount_val"
               ",mt.credit_amount_frac"
               ",wtid"
               ",merchant_accounts.payto_uri"
               ",exchange_url"
               ",credit_serial"
               ",CASE WHEN (merchant_transfer_signatures.execution_time) IS NULL"
               "   THEN 9223372036854775807" /* largest BIGINT possible */
               "   ELSE merchant_transfer_signatures.execution_time"
               " END AS execution_time"
               ",verified"
               ",confirmed"
               " FROM merchant_transfers mt"
               "  JOIN merchant_accounts USING (account_serial)"
               "  LEFT JOIN merchant_transfer_signatures USING (credit_serial)"
               " WHERE credit_serial > $2"
               "   AND merchant_serial ="
               "     (SELECT merchant_serial"
               "        FROM merchant_instances"
               "       WHERE merchant_id=$1)"
               " ORDER BY credit_serial ASC"
               " LIMIT $3");
      qs = GNUNET_PQ_eval_prepared_multi_select (
        pg->conn,
        (limit > 0)
        ? "lookup_transfers_asc"
        : "lookup_transfers_desc",
        params,
        &lookup_transfers_cb,
        &ltc);
    }
  }
  if (0 >= qs)
    return qs;
  return ltc.qs;
}