gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-merchant] 01/03: no more tip_redirect url, as we're


From: gnunet
Subject: [GNUnet-SVN] [taler-merchant] 01/03: no more tip_redirect url, as we're moving to taler:// URIs
Date: Fri, 30 Aug 2019 13:45:04 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository merchant.

commit 68247a1449ed0f9559ee4e1b94fd76f5201bb43e
Author: Florian Dold <address@hidden>
AuthorDate: Fri Aug 30 10:44:00 2019 +0200

    no more tip_redirect url, as we're moving to taler:// URIs
---
 src/backend/taler-merchant-httpd_tip-authorize.c | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/src/backend/taler-merchant-httpd_tip-authorize.c 
b/src/backend/taler-merchant-httpd_tip-authorize.c
index 4a8ae03..381bb86 100644
--- a/src/backend/taler-merchant-httpd_tip-authorize.c
+++ b/src/backend/taler-merchant-httpd_tip-authorize.c
@@ -282,7 +282,6 @@ MH_handler_tip_authorize (struct TMH_RequestHandler *rh,
   {
     json_t *tip_token;
     char *tip_token_str;
-    char *tip_redirect_url;
 
     tip_token = json_pack ("{s:o, s:o, s:o, s:s, s:s, s:s}",
                            "tip_id", GNUNET_JSON_from_data_auto (&tip_id),
@@ -293,23 +292,14 @@ MH_handler_tip_authorize (struct TMH_RequestHandler *rh,
                            "pickup_url", tac->pickup_url);
     tip_token_str = json_dumps (tip_token, JSON_COMPACT);
     GNUNET_assert (NULL != tip_token_str);
-    tip_redirect_url = TALER_url_absolute_mhd (connection, 
"public/trigger-pay",
-                                               "tip_token", tip_token_str,
-                                               NULL);
-    GNUNET_assert (NULL != tip_redirect_url);
-    /* FIXME:  This is pretty redundant, but we want to support some older
-     * merchant implementations.  Newer ones should only get the
-     * tip_redirect_url. */
     res = TMH_RESPONSE_reply_json_pack (connection,
                                         MHD_HTTP_OK,
                                         "{s:o, s:o, s:s, s:o, s:s}",
                                         "tip_id", GNUNET_JSON_from_data_auto 
(&tip_id),
                                         "expiration", 
GNUNET_JSON_from_time_abs (expiration),
                                         "exchange_url", mi->tip_exchange,
-                                        "tip_token", tip_token,
-                                        "tip_redirect_url", tip_redirect_url);
+                                        "tip_token", tip_token);
     GNUNET_free (tip_token_str);
-    GNUNET_free (tip_redirect_url);
     return res;
   }
 }

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]