exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

insert_kyc_failure.c (3285B)


      1 /*
      2    This file is part of TALER
      3    Copyright (C) 2024 Taler Systems SA
      4 
      5    TALER is free software; you can redistribute it and/or modify it under the
      6    terms of the GNU General Public License as published by the Free Software
      7    Foundation; either version 3, or (at your option) any later version.
      8 
      9    TALER is distributed in the hope that it will be useful, but WITHOUT ANY
     10    WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
     11    A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
     12 
     13    You should have received a copy of the GNU General Public License along with
     14    TALER; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
     15  */
     16 /**
     17  * @file exchangedb/insert_kyc_failure.c
     18  * @brief Implementation of the insert_kyc_failure function for Postgres
     19  * @author Christian Grothoff
     20  */
     21 #include "platform.h"  /* UNNECESSARY? */
     22 #include "taler/taler_error_codes.h"
     23 #include "taler/taler_dbevents.h"  /* UNNECESSARY? */
     24 #include "taler/taler_pq_lib.h"
     25 #include "exchange-database/insert_kyc_failure.h"
     26 #include "helper.h"
     27 #include "exchange-database/event_notify.h"  /* UNNECESSARY? */
     28 
     29 
     30 enum GNUNET_DB_QueryStatus
     31 TALER_EXCHANGEDB_insert_kyc_failure (
     32   struct TALER_EXCHANGEDB_PostgresContext *pg,
     33   uint64_t process_row,
     34   const struct TALER_NormalizedPaytoHashP *h_payto,
     35   const char *provider_name,
     36   const char *provider_account_id,
     37   const char *provider_legitimization_id,
     38   const char *error_message,
     39   enum TALER_ErrorCode ec)
     40 {
     41   uint32_t ec32 = (uint32_t) ec;
     42   struct GNUNET_PQ_QueryParam params[] = {
     43     GNUNET_PQ_query_param_uint64 (&process_row),
     44     GNUNET_PQ_query_param_auto_from_type (h_payto),
     45     NULL != provider_name
     46     ? GNUNET_PQ_query_param_string (provider_name)
     47     : GNUNET_PQ_query_param_null (),
     48     NULL != provider_account_id
     49     ? GNUNET_PQ_query_param_string (provider_account_id)
     50     : GNUNET_PQ_query_param_null (),
     51     NULL != provider_legitimization_id
     52     ? GNUNET_PQ_query_param_string (provider_legitimization_id)
     53     : GNUNET_PQ_query_param_null (),
     54     GNUNET_PQ_query_param_uint32 (&ec32),
     55     GNUNET_PQ_query_param_string (error_message),
     56     GNUNET_PQ_query_param_end
     57   };
     58   enum GNUNET_DB_QueryStatus qs;
     59 
     60   PREPARE (pg,
     61            "insert_kyc_failure",
     62            "UPDATE legitimization_processes"
     63            " SET"
     64            "  finished=TRUE"
     65            " ,provider_user_id=$4"
     66            " ,provider_legitimization_id=$5"
     67            " ,error_code=$6"
     68            " ,error_message=$7"
     69            " WHERE h_payto=$2"
     70            "   AND legitimization_process_serial_id=$1"
     71            "   AND provider_name=$3;");
     72   qs = GNUNET_PQ_eval_prepared_non_select (pg->conn,
     73                                            "insert_kyc_failure",
     74                                            params);
     75   if (qs > 0)
     76   {
     77     /* FIXME-#9419: might want to do this eventually in the same transaction... */
     78     struct TALER_EXCHANGEDB_KycCompletedEventP rep = {
     79       .header.size = htons (sizeof (rep)),
     80       .header.type = htons (TALER_DBEVENT_EXCHANGE_KYC_COMPLETED),
     81       .h_payto = *h_payto
     82     };
     83 
     84     TALER_EXCHANGEDB_event_notify (pg,
     85                                    &rep.header,
     86                                    NULL,
     87                                    0);
     88   }
     89   return qs;
     90 }