commit f063f667a887b0bc20f569feb09c41c9b3efa433
parent 7370e96bfa1bf3881df424eee48387f77d94be1f
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 7 Jul 2024 10:27:43 +0200
init kyc-info subsystem
Diffstat:
2 files changed, 51 insertions(+), 0 deletions(-)
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c
@@ -47,6 +47,7 @@
#include "taler-exchange-httpd_extensions.h"
#include "taler-exchange-httpd_keys.h"
#include "taler-exchange-httpd_kyc-check.h"
+#include "taler-exchange-httpd_kyc-info.h"
#include "taler-exchange-httpd_kyc-proof.h"
#include "taler-exchange-httpd_kyc-upload.h"
#include "taler-exchange-httpd_kyc-wallet.h"
@@ -2600,6 +2601,7 @@ do_shutdown (void *cls)
TEH_reserves_get_cleanup ();
TEH_purses_get_cleanup ();
TEH_kyc_check_cleanup ();
+ TEH_kyc_info_cleanup ();
TEH_kyc_proof_cleanup ();
TALER_KYCLOGIC_kyc_done ();
if (NULL != mhd)
diff --git a/src/exchange/taler-exchange-httpd_kyc-info.h b/src/exchange/taler-exchange-httpd_kyc-info.h
@@ -0,0 +1,49 @@
+/*
+ This file is part of TALER
+ Copyright (C) 2021 Taler Systems SA
+
+ TALER is free software; you can redistribute it and/or modify it under the
+ terms of the GNU Affero 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 Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License along with
+ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+*/
+/**
+ * @file taler-exchange-httpd_kyc-info.h
+ * @brief Handle /kyc-info requests
+ * @author Christian Grothoff
+ */
+#ifndef TALER_EXCHANGE_HTTPD_KYC_INFO_H
+#define TALER_EXCHANGE_HTTPD_KYC_INFO_H
+
+#include <microhttpd.h>
+#include "taler-exchange-httpd.h"
+
+
+/**
+ * Shutdown kyc-info subsystem. Resumes all suspended long-polling clients
+ * and cleans up data structures.
+ */
+void
+TEH_kyc_info_cleanup (void);
+
+
+/**
+ * Handle a "/kyc-info" request.
+ *
+ * @param rc request to handle
+ * @param args one argument with the legitimization_uuid
+ * @return MHD result code
+ */
+MHD_RESULT
+TEH_handler_kyc_info (
+ struct TEH_RequestContext *rc,
+ const char *const args[1]);
+
+
+#endif