Line data Source code
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/pg_insert_kyc_failure.c 18 : * @brief Implementation of the insert_kyc_failure function for Postgres 19 : * @author Christian Grothoff 20 : */ 21 : #include "platform.h" 22 : #include "taler_error_codes.h" 23 : #include "taler_dbevents.h" 24 : #include "taler_pq_lib.h" 25 : #include "pg_insert_kyc_failure.h" 26 : #include "pg_helper.h" 27 : #include "pg_event_notify.h" 28 : 29 : 30 : enum GNUNET_DB_QueryStatus 31 1 : TEH_PG_insert_kyc_failure ( 32 : void *cls, 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 1 : struct PostgresClosure *pg = cls; 42 1 : uint32_t ec32 = (uint32_t) ec; 43 1 : struct GNUNET_PQ_QueryParam params[] = { 44 1 : GNUNET_PQ_query_param_uint64 (&process_row), 45 1 : GNUNET_PQ_query_param_auto_from_type (h_payto), 46 : NULL != provider_name 47 1 : ? GNUNET_PQ_query_param_string (provider_name) 48 1 : : GNUNET_PQ_query_param_null (), 49 : NULL != provider_account_id 50 0 : ? GNUNET_PQ_query_param_string (provider_account_id) 51 1 : : GNUNET_PQ_query_param_null (), 52 : NULL != provider_legitimization_id 53 1 : ? GNUNET_PQ_query_param_string (provider_legitimization_id) 54 1 : : GNUNET_PQ_query_param_null (), 55 1 : GNUNET_PQ_query_param_uint32 (&ec32), 56 1 : GNUNET_PQ_query_param_string (error_message), 57 : GNUNET_PQ_query_param_end 58 : }; 59 : enum GNUNET_DB_QueryStatus qs; 60 : 61 1 : PREPARE (pg, 62 : "insert_kyc_failure", 63 : "UPDATE legitimization_processes" 64 : " SET" 65 : " finished=TRUE" 66 : " ,provider_user_id=$4" 67 : " ,provider_legitimization_id=$5" 68 : " ,error_code=$6" 69 : " ,error_message=$7" 70 : " WHERE h_payto=$2" 71 : " AND legitimization_process_serial_id=$1" 72 : " AND provider_name=$3;"); 73 1 : qs = GNUNET_PQ_eval_prepared_non_select (pg->conn, 74 : "insert_kyc_failure", 75 : params); 76 1 : if (qs > 0) 77 : { 78 : /* FIXME-#9419: might want to do this eventually in the same transaction... */ 79 1 : struct TALER_KycCompletedEventP rep = { 80 1 : .header.size = htons (sizeof (rep)), 81 1 : .header.type = htons (TALER_DBEVENT_EXCHANGE_KYC_COMPLETED), 82 : .h_payto = *h_payto 83 : }; 84 : 85 1 : TEH_PG_event_notify (pg, 86 : &rep.header, 87 : NULL, 88 : 0); 89 : } 90 1 : return qs; 91 : }