summaryrefslogtreecommitdiff
path: root/src/bank-lib
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-01-17 01:23:32 +0100
committerFlorian Dold <florian.dold@gmail.com>2020-01-17 01:23:32 +0100
commit6faf6fc732afe58a5da71dd442ede78cdbd7c495 (patch)
treec3f8cc519f5a4bc14b7a361ff168b2b19095392d /src/bank-lib
parentc677720e7b5c6a228159044e35ac12554e9c280b (diff)
downloadexchange-6faf6fc732afe58a5da71dd442ede78cdbd7c495.tar.gz
exchange-6faf6fc732afe58a5da71dd442ede78cdbd7c495.tar.bz2
exchange-6faf6fc732afe58a5da71dd442ede78cdbd7c495.zip
payto fixes WIP
Diffstat (limited to 'src/bank-lib')
-rw-r--r--src/bank-lib/bank_api_parse.c45
1 files changed, 43 insertions, 2 deletions
diff --git a/src/bank-lib/bank_api_parse.c b/src/bank-lib/bank_api_parse.c
index 6e5c9f12c..5423d01b7 100644
--- a/src/bank-lib/bank_api_parse.c
+++ b/src/bank-lib/bank_api_parse.c
@@ -98,16 +98,50 @@ TALER_BANK_auth_parse_cfg (const struct GNUNET_CONFIGURATION_Handle *cfg,
{ NULL, TALER_BANK_AUTH_NONE }
};
char *method;
+ unsigned long long fakebank_port;
+
+ if (GNUNET_OK ==
+ GNUNET_CONFIGURATION_get_value_number (cfg,
+ section,
+ "FAKEBANK_PORT",
+ &fakebank_port))
+ {
+ auth->method = TALER_BANK_AUTH_FAKEBANK;
+ auth->details.fakebank.fb_port = (uint16_t) fakebank_port;
+ // FIXME: we should not hardcode exchange account number "2"
+ GNUNET_asprintf (&auth->wire_gateway_url,
+ "http://localhost:%u/2/",
+ (unsigned int) fakebank_port);
+
+ GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+ "Using fakebank %s on port %u\n",
+ auth->wire_gateway_url,
+ (unsigned int) fakebank_port);
+ return GNUNET_OK;
+ }
if (GNUNET_OK !=
GNUNET_CONFIGURATION_get_value_string (cfg,
section,
- "TALER_BANK_AUTH_METHOD",
+ "WIRE_GATEWAY_URL",
+ &auth->wire_gateway_url))
+ {
+ GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
+ section,
+ "WIRE_GATEWAY_URL");
+ return GNUNET_SYSERR;
+ }
+
+ if (GNUNET_OK !=
+ GNUNET_CONFIGURATION_get_value_string (cfg,
+ section,
+ "WIRE_GATEWAY_AUTH_METHOD",
&method))
{
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
section,
- "TALER_BANK_AUTH_METHOD");
+ "WIRE_GATEWAY_AUTH_METHOD");
+ GNUNET_free (auth->wire_gateway_url);
return GNUNET_SYSERR;
}
for (unsigned int i = 0; NULL != methods[i].m; i++)
@@ -132,6 +166,7 @@ TALER_BANK_auth_parse_cfg (const struct GNUNET_CONFIGURATION_Handle *cfg,
section,
"USERNAME");
GNUNET_free (method);
+ GNUNET_free (auth->wire_gateway_url);
return GNUNET_SYSERR;
}
if (GNUNET_OK !=
@@ -146,11 +181,14 @@ TALER_BANK_auth_parse_cfg (const struct GNUNET_CONFIGURATION_Handle *cfg,
section,
"PASSWORD");
GNUNET_free (method);
+ GNUNET_free (auth->wire_gateway_url);
return GNUNET_SYSERR;
}
auth->method = TALER_BANK_AUTH_BASIC;
GNUNET_free (method);
return GNUNET_OK;
+ case TALER_BANK_AUTH_FAKEBANK:
+ GNUNET_assert (0);
}
}
}
@@ -184,7 +222,10 @@ TALER_BANK_auth_free (struct TALER_BANK_AuthenticationData *auth)
auth->details.basic.password = NULL;
}
break;
+ case TALER_BANK_AUTH_FAKEBANK:
+ break;
}
+ GNUNET_free (auth->wire_gateway_url);
}