summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_private-get-orders-ID.c
blob: bb5384d184b76122826ee11a5c2b1571f1203445 (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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
/*
  This file is part of TALER
  (C) 2017, 2019 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 backend/taler-merchant-httpd_check-payment.c
 * @brief implementation of /check-payment handler
 * @author Florian Dold
 * @author Christian Grothoff
 */
#include "platform.h"
#include <string.h>
#include <microhttpd.h>
#include <jansson.h>
#include <taler/taler_json_lib.h>
#include <taler/taler_signatures.h>
#include "taler-merchant-httpd.h"
#include "taler-merchant-httpd_mhd.h"
#include "taler-merchant-httpd_exchanges.h"
#include "taler-merchant-httpd_check-payment.h"

/**
 * Maximum number of retries for database operations.
 */
#define MAX_RETRIES 5


/**
 * Data structure we keep for a check payment request.
 */
struct CheckPaymentRequestContext
{
  /**
   * Must be first for #handle_mhd_completion_callback.
   */
  struct TM_HandlerContext hc;

  /**
   * Entry in the #resume_timeout_heap for this check payment, if we are
   * suspended.
   */
  struct TMH_SuspendedConnection sc;

  /**
   * Which merchant instance is this for?
   */
  struct MerchantInstance *mi;

  /**
   * URL where the final contract can be found for this payment.
   */
  char *final_contract_url;

  /**
   * order ID for the payment
   */
  const char *order_id;

  /**
   * Where to get the contract
   */
  const char *contract_url;

  /**
   * session of the client
   */
  const char *session_id;

  /**
   * fulfillment URL of the contract (valid as long as
   * @e contract_terms is valid).
   */
  const char *fulfillment_url;

  /**
   * Contract terms of the payment we are checking. NULL when they
   * are not (yet) known.
   */
  json_t *contract_terms;

  /**
   * Hash of @e contract_terms, set only once @e contract_terms
   * is available.
   */
  struct GNUNET_HashCode h_contract_terms;

  /**
   * Total refunds granted for this payment. Only initialized
   * if @e refunded is set to #GNUNET_YES.
   */
  struct TALER_Amount refund_amount;

  /**
   * Set to #GNUNET_YES if this payment has been refunded and
   * @e refund_amount is initialized.
   */
  int refunded;

  /**
   * Initially #GNUNET_SYSERR. If we queued a response, set to the
   * result code (i.e. #MHD_YES or #MHD_NO).
   */
  int ret;

};


/**
 * Clean up the session state for a check payment request.
 *
 * @param hc must be a `struct CheckPaymentRequestContext *`
 */
static void
cprc_cleanup (struct TM_HandlerContext *hc)
{
  struct CheckPaymentRequestContext *cprc = (struct
                                             CheckPaymentRequestContext *) hc;

  if (NULL != cprc->contract_terms)
    json_decref (cprc->contract_terms);
  GNUNET_free_non_null (cprc->final_contract_url);
  GNUNET_free (cprc);
}


/**
 * Function called with information about a refund.
 * It is responsible for summing up the refund amount.
 *
 * @param cls closure
 * @param coin_pub public coin from which the refund comes from
 * @param exchange_url URL of the exchange that issued @a coin_pub
 * @param rtransaction_id identificator of the refund
 * @param reason human-readable explanation of the refund
 * @param refund_amount refund amount which is being taken from @a coin_pub
 * @param refund_fee cost of this refund operation
 */
static void
process_refunds_cb (void *cls,
                    const struct TALER_CoinSpendPublicKeyP *coin_pub,
                    const char *exchange_url,
                    uint64_t rtransaction_id,
                    const char *reason,
                    const struct TALER_Amount *refund_amount,
                    const struct TALER_Amount *refund_fee)
{
  struct CheckPaymentRequestContext *cprc = cls;

  if (cprc->refunded)
  {
    GNUNET_assert (0 <=
                   TALER_amount_add (&cprc->refund_amount,
                                     &cprc->refund_amount,
                                     refund_amount));
    return;
  }
  cprc->refund_amount = *refund_amount;
  cprc->refunded = GNUNET_YES;
}


/**
 * The client did not yet pay, send it the payment request.
 *
 * @param cprc check pay request context
 * @return #MHD_YES on success
 */
static int
send_pay_request (struct CheckPaymentRequestContext *cprc)
{
  int ret;
  char *already_paid_order_id = NULL;
  char *taler_pay_uri;
  struct GNUNET_TIME_Relative remaining;

  remaining = GNUNET_TIME_absolute_get_remaining (cprc->sc.long_poll_timeout);
  if (0 != remaining.rel_value_us)
  {
    /* long polling: do not queue a response, suspend connection instead */
    TMH_compute_pay_key (cprc->order_id,
                         &cprc->mi->pubkey,
                         &cprc->sc.key);
    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                "Suspending /check-payment on key %s\n",
                GNUNET_h2s (&cprc->sc.key));
    TMH_long_poll_suspend (&cprc->sc,
                           NULL);
    return MHD_YES;
  }

  /* Check if resource_id has been paid for in the same session
   * with another order_id.
   */
  if ( (NULL != cprc->session_id) &&
       (NULL != cprc->fulfillment_url) )
  {
    enum GNUNET_DB_QueryStatus qs;

    qs = db->find_session_info (db->cls,
                                &already_paid_order_id,
                                cprc->session_id,
                                cprc->fulfillment_url,
                                &cprc->mi->pubkey);
    if (qs < 0)
    {
      /* single, read-only SQL statements should never cause
         serialization problems */
      GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR != qs);
      /* Always report on hard error as well to enable diagnostics */
      GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR == qs);
      return TALER_MHD_reply_with_error (cprc->sc.con,
                                         MHD_HTTP_INTERNAL_SERVER_ERROR,
                                         TALER_EC_CHECK_PAYMENT_DB_FETCH_ORDER_ERROR,
                                         "db error fetching pay session info");
    }
  }
  taler_pay_uri = TMH_make_taler_pay_uri (cprc->sc.con,
                                          cprc->order_id,
                                          cprc->session_id,
                                          cprc->mi->id);
  ret = TALER_MHD_reply_json_pack (cprc->sc.con,
                                   MHD_HTTP_OK,
                                   "{s:s, s:s, s:b, s:s?}",
                                   "taler_pay_uri", taler_pay_uri,
                                   "contract_url", cprc->final_contract_url,
                                   "paid", 0,
                                   "already_paid_order_id",
                                   already_paid_order_id);
  GNUNET_free (taler_pay_uri);
  GNUNET_free_non_null (already_paid_order_id);
  return ret;
}


/**
 * Parse the "contract_terms" in @a cprc and set the
 * "fulfillment_url" and the "h_contract_terms" in @a cprc
 * accordingly.
 *
 * On errors, the response is being queued and the status
 * code set in @cprc "ret".
 *
 * @param cprc[in,out] context to process
 * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
 */
static int
parse_contract_terms (struct CheckPaymentRequestContext *cprc)
{
  struct GNUNET_JSON_Specification spec[] = {
    GNUNET_JSON_spec_string ("fulfillment_url",
                             &cprc->fulfillment_url),
    GNUNET_JSON_spec_end ()
  };

  if (GNUNET_OK !=
      GNUNET_JSON_parse (cprc->contract_terms,
                         spec,
                         NULL, NULL))
  {
    GNUNET_break (0);
    cprc->ret
      = TALER_MHD_reply_with_error (cprc->sc.con,
                                    MHD_HTTP_INTERNAL_SERVER_ERROR,
                                    TALER_EC_CHECK_PAYMENT_DB_FETCH_CONTRACT_TERMS_ERROR,
                                    "Merchant database error (contract terms corrupted)");
    return GNUNET_SYSERR;
  }
  if (GNUNET_OK !=
      TALER_JSON_hash (cprc->contract_terms,
                       &cprc->h_contract_terms))
  {
    GNUNET_break (0);
    cprc->ret
      = TALER_MHD_reply_with_error (cprc->sc.con,
                                    MHD_HTTP_INTERNAL_SERVER_ERROR,
                                    TALER_EC_CHECK_PAYMENT_FAILED_COMPUTE_PROPOSAL_HASH,
                                    "Failed to hash proposal");
    return GNUNET_SYSERR;
  }
  return GNUNET_OK;
}


/**
 * Check that we are aware of @a order_id and if so request the payment,
 * otherwise generate an error response.
 *
 * @param cprc session state
 * @return status code to return to MHD for @a connection
 */
static int
check_order_and_request_payment (struct CheckPaymentRequestContext *cprc)
{
  enum GNUNET_DB_QueryStatus qs;

  if (NULL != cprc->contract_terms)
  {
    /* This should never happen. */
    GNUNET_break (0);
    json_decref (cprc->contract_terms);
    cprc->contract_terms = NULL;
  }
  qs = db->find_order (db->cls,
                       &cprc->contract_terms,
                       cprc->order_id,
                       &cprc->mi->pubkey);
  if (0 > qs)
  {
    /* single, read-only SQL statements should never cause
       serialization problems */
    GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR != qs);
    /* Always report on hard error as well to enable diagnostics */
    GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR == qs);
    return TALER_MHD_reply_with_error (cprc->sc.con,
                                       MHD_HTTP_INTERNAL_SERVER_ERROR,
                                       TALER_EC_CHECK_PAYMENT_DB_FETCH_ORDER_ERROR,
                                       "db error fetching order");
  }
  if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
  {
    return TALER_MHD_reply_with_error (cprc->sc.con,
                                       MHD_HTTP_NOT_FOUND,
                                       TALER_EC_CHECK_PAYMENT_ORDER_ID_UNKNOWN,
                                       "unknown order_id");
  }

  if (GNUNET_OK !=
      parse_contract_terms (cprc))
    return cprc->ret;
  /* Offer was not picked up yet, but we ensured that it exists */
  return send_pay_request (cprc);
}


/**
 * Manages a /check-payment call, checking the status
 * of a payment and, if necessary, constructing the URL
 * for a payment redirect URL.
 *
 * @param rh context of the handler
 * @param connection the MHD connection to handle
 * @param[in,out] connection_cls the connection's closure (can be updated)
 * @param upload_data upload data
 * @param[in,out] upload_data_size number of bytes (left) in @a upload_data
 * @param mi merchant backend instance, never NULL
 * @return MHD result code
 */
MHD_RESULT
MH_handler_check_payment (struct TMH_RequestHandler *rh,
                          struct MHD_Connection *connection,
                          void **connection_cls,
                          const char *upload_data,
                          size_t *upload_data_size,
                          struct MerchantInstance *mi)
{
  struct CheckPaymentRequestContext *cprc = *connection_cls;
  enum GNUNET_DB_QueryStatus qs;
  MHD_RESULT ret;

  if (NULL == cprc)
  {
    const char *long_poll_timeout_s;

    /* First time here, parse request and check order is known */
    cprc = GNUNET_new (struct CheckPaymentRequestContext);
    cprc->hc.cc = &cprc_cleanup;
    cprc->ret = GNUNET_SYSERR;
    cprc->sc.con = connection;
    cprc->mi = mi;
    *connection_cls = cprc;

    cprc->order_id = MHD_lookup_connection_value (connection,
                                                  MHD_GET_ARGUMENT_KIND,
                                                  "order_id");
    if (NULL == cprc->order_id)
    {
      /* order_id is required but missing */
      GNUNET_break_op (0);
      return TALER_MHD_reply_with_error (connection,
                                         MHD_HTTP_BAD_REQUEST,
                                         TALER_EC_PARAMETER_MISSING,
                                         "order_id required");
    }
    cprc->contract_url = MHD_lookup_connection_value (connection,
                                                      MHD_GET_ARGUMENT_KIND,
                                                      "contract_url");
    if (NULL == cprc->contract_url)
    {
      cprc->final_contract_url = TALER_url_absolute_mhd (connection,
                                                         "/public/proposal",
                                                         "instance", mi->id,
                                                         "order_id",
                                                         cprc->order_id,
                                                         NULL);
      GNUNET_assert (NULL != cprc->final_contract_url);
    }
    else
    {
      cprc->final_contract_url = GNUNET_strdup (cprc->contract_url);
    }
    cprc->session_id = MHD_lookup_connection_value (connection,
                                                    MHD_GET_ARGUMENT_KIND,
                                                    "session_id");
    long_poll_timeout_s = MHD_lookup_connection_value (connection,
                                                       MHD_GET_ARGUMENT_KIND,
                                                       "timeout");
    if (NULL != long_poll_timeout_s)
    {
      unsigned int timeout;

      if (1 != sscanf (long_poll_timeout_s,
                       "%u",
                       &timeout))
      {
        GNUNET_break_op (0);
        return TALER_MHD_reply_with_error (connection,
                                           MHD_HTTP_BAD_REQUEST,
                                           TALER_EC_PARAMETER_MALFORMED,
                                           "timeout must be non-negative number");
      }
      cprc->sc.long_poll_timeout
        = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_relative_multiply (
                                              GNUNET_TIME_UNIT_SECONDS,
                                              timeout));
    }
    else
    {
      cprc->sc.long_poll_timeout = GNUNET_TIME_UNIT_ZERO_ABS;
    }
    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                "Starting /check-payment processing with timeout %s\n",
                GNUNET_STRINGS_absolute_time_to_string (
                  cprc->sc.long_poll_timeout));
  }
  if (NULL != cprc->contract_terms)
  {
    json_decref (cprc->contract_terms);
    cprc->contract_terms = NULL;
  }
  db->preflight (db->cls);
  qs = db->find_contract_terms (db->cls,
                                &cprc->contract_terms,
                                cprc->order_id,
                                &mi->pubkey);
  if (0 > qs)
  {
    /* single, read-only SQL statements should never cause
       serialization problems */
    GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR != qs);
    /* Always report on hard error as well to enable diagnostics */
    GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR == qs);
    return TALER_MHD_reply_with_error (connection,
                                       MHD_HTTP_INTERNAL_SERVER_ERROR,
                                       TALER_EC_CHECK_PAYMENT_DB_FETCH_CONTRACT_TERMS_ERROR,
                                       "db error fetching contract terms");
  }

  if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
  {
    /* Check that we're at least aware of the order */
    return check_order_and_request_payment (cprc);
  }
  GNUNET_assert (NULL != cprc->contract_terms);

  if (GNUNET_OK !=
      parse_contract_terms (cprc))
    return cprc->ret;
  GNUNET_log (GNUNET_ERROR_TYPE_INFO,
              "Checkig payment status for order `%s' with contract %s\n",
              cprc->order_id,
              GNUNET_h2s (&cprc->h_contract_terms));
  GNUNET_assert (NULL != cprc->contract_terms);

  /* Check if the order has been paid for. */
  if (NULL != cprc->session_id)
  {
    /* Check if paid within a session. */
    char *already_paid_order_id = NULL;

    qs = db->find_session_info (db->cls,
                                &already_paid_order_id,
                                cprc->session_id,
                                cprc->fulfillment_url,
                                &mi->pubkey);
    if (qs < 0)
    {
      /* single, read-only SQL statements should never cause
         serialization problems */
      GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR != qs);
      /* Always report on hard error as well to enable diagnostics */
      GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR == qs);
      return TALER_MHD_reply_with_error (connection,
                                         MHD_HTTP_INTERNAL_SERVER_ERROR,
                                         TALER_EC_CHECK_PAYMENT_DB_FETCH_ORDER_ERROR,
                                         "db error fetching pay session info");
    }
    else if (0 == qs)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                  "Order `%s' was not yet paid for session `%s'\n",
                  cprc->order_id,
                  cprc->session_id);
      ret = send_pay_request (cprc);
      GNUNET_free_non_null (already_paid_order_id);
      return ret;
    }
    GNUNET_break (1 == qs);
    GNUNET_break (0 == strcmp (cprc->order_id,
                               already_paid_order_id));
    GNUNET_free_non_null (already_paid_order_id);
  }
  else
  {
    /* Check if paid regardless of session. */
    json_t *xcontract_terms = NULL;

    qs = db->find_paid_contract_terms_from_hash (db->cls,
                                                 &xcontract_terms,
                                                 &cprc->h_contract_terms,
                                                 &mi->pubkey);
    if (0 > qs)
    {
      /* Always report on hard error as well to enable diagnostics */
      GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR == qs);
      return TALER_MHD_reply_with_error (connection,
                                         MHD_HTTP_INTERNAL_SERVER_ERROR,
                                         TALER_EC_PAY_DB_FETCH_TRANSACTION_ERROR,
                                         "Merchant database error");
    }
    if (0 == qs)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                  "Order `%s' (contract `%s') was not yet paid\n",
                  cprc->order_id,
                  GNUNET_h2s (&cprc->h_contract_terms));
      return send_pay_request (cprc);
    }
    GNUNET_break (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qs);
    GNUNET_assert (NULL != xcontract_terms);
    json_decref (xcontract_terms);
  }

  /* Accumulate refunds, if any. */
  for (unsigned int i = 0; i<MAX_RETRIES; i++)
  {
    qs = db->get_refunds_from_contract_terms_hash (db->cls,
                                                   &mi->pubkey,
                                                   &cprc->h_contract_terms,
                                                   &process_refunds_cb,
                                                   cprc);
    if (GNUNET_DB_STATUS_SOFT_ERROR != qs)
      break;
  }
  if (0 > qs)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Database hard error on refunds_from_contract_terms_hash lookup: %s\n",
                GNUNET_h2s (&cprc->h_contract_terms));
    return TALER_MHD_reply_with_error (connection,
                                       MHD_HTTP_INTERNAL_SERVER_ERROR,
                                       TALER_EC_PAY_DB_FETCH_TRANSACTION_ERROR,
                                       "Merchant database error");
  }
  if (cprc->refunded)
    return TALER_MHD_reply_json_pack (connection,
                                      MHD_HTTP_OK,
                                      "{s:O, s:b, s:b, s:o}",
                                      "contract_terms", cprc->contract_terms,
                                      "paid", 1,
                                      "refunded", cprc->refunded,
                                      "refund_amount",
                                      TALER_JSON_from_amount (
                                        &cprc->refund_amount));
  return TALER_MHD_reply_json_pack (connection,
                                    MHD_HTTP_OK,
                                    "{s:O, s:b, s:b }",
                                    "contract_terms", cprc->contract_terms,
                                    "paid", 1,
                                    "refunded", 0);
}