[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-exchange] branch master updated: -work on FIXMEs
From: |
gnunet |
Subject: |
[taler-exchange] branch master updated: -work on FIXMEs |
Date: |
Thu, 18 Aug 2022 22:30:09 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository exchange.
The following commit(s) were added to refs/heads/master by this push:
new 9c1f1c76 -work on FIXMEs
9c1f1c76 is described below
commit 9c1f1c76be598baeb7cc14d4c63e9815ad78d22f
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Thu Aug 18 22:30:00 2022 +0200
-work on FIXMEs
---
src/kyclogic/plugin_kyclogic_persona.c | 40 +++++++++++++++++++++-------------
1 file changed, 25 insertions(+), 15 deletions(-)
diff --git a/src/kyclogic/plugin_kyclogic_persona.c
b/src/kyclogic/plugin_kyclogic_persona.c
index 74bc53f0..960b9f0e 100644
--- a/src/kyclogic/plugin_kyclogic_persona.c
+++ b/src/kyclogic/plugin_kyclogic_persona.c
@@ -593,8 +593,8 @@ handle_initiate_finished (void *cls,
{
const char *msg;
- /* FIXME: figure out how to nicely extract
- the rate limit data from the reply */
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+ "Rate limiting requested:\n");
json_dumpf (j,
stderr,
JSON_INDENT (2));
@@ -1153,18 +1153,27 @@ handle_proof_finished (void *cls,
break;
}
- // FIXME: do not generate kyc-completed from template, do redirect!
- proof_generic_reply (ph,
- TALER_KYCLOGIC_STATUS_SUCCESS,
- account_id,
- inquiry_id,
- MHD_HTTP_OK,
- "persona-kyc-completed",
- GNUNET_JSON_PACK (
- GNUNET_JSON_pack_allow_null (
- GNUNET_JSON_pack_object_incref ("attributes",
- (json_t *)
- data))));
+ {
+ struct MHD_Response *resp;
+ struct GNUNET_TIME_Absolute expiration;
+
+ expiration = GNUNET_TIME_relative_to_absolute (ph->pd->validity);
+ resp = MHD_create_response_from_buffer (0,
+ "",
+ MHD_RESPMEM_PERSISTENT);
+ GNUNET_break (MHD_YES ==
+ MHD_add_response_header (resp,
+ MHD_HTTP_HEADER_LOCATION,
+
ph->pd->post_kyc_redirect_url));
+ TALER_MHD_add_global_headers (resp);
+ ph->cb (ph->cb_cls,
+ TALER_KYCLOGIC_STATUS_SUCCESS,
+ account_id,
+ inquiry_id,
+ expiration,
+ MHD_HTTP_SEE_OTHER,
+ resp);
+ }
GNUNET_JSON_parse_free (ispec);
}
GNUNET_JSON_parse_free (spec);
@@ -1454,6 +1463,7 @@ webhook_generic_reply (struct
TALER_KYCLOGIC_WebhookHandle *wh,
resp = MHD_create_response_from_buffer (0,
"",
MHD_RESPMEM_PERSISTENT);
+ TALER_MHD_add_global_headers (resp);
wh->cb (wh->cb_cls,
wh->legitimization_uuid,
&wh->h_payto,
@@ -1755,7 +1765,7 @@ async_webhook_reply (void *cls)
(0 == wh->legitimization_uuid)
? NULL
: &wh->h_payto,
- NULL, /* FIXME: never known here, but maybe prevent clearing it in
the DB as it should already be there? */
+ NULL,
wh->inquiry_id, /* provider legi ID */
TALER_KYCLOGIC_STATUS_PROVIDER_FAILED,
GNUNET_TIME_UNIT_ZERO_ABS, /* expiration */
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-exchange] branch master updated: -work on FIXMEs,
gnunet <=