summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/withdraw.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-09-09 21:16:20 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-09-09 21:16:20 +0530
commitf32062ccf030d4a2059db26186476d3962c931e2 (patch)
tree8e927361af7a5c45252bd5298f1222bf5dd3cace /packages/taler-wallet-core/src/operations/withdraw.ts
parenta602e6714e09b80599b5db7b340aefcce459c973 (diff)
downloadwallet-core-f32062ccf030d4a2059db26186476d3962c931e2.tar.gz
wallet-core-f32062ccf030d4a2059db26186476d3962c931e2.tar.bz2
wallet-core-f32062ccf030d4a2059db26186476d3962c931e2.zip
check bank's protocol version first, fix typo
Diffstat (limited to 'packages/taler-wallet-core/src/operations/withdraw.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/withdraw.ts31
1 files changed, 29 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts
index e44ac7cf2..b5670a82d 100644
--- a/packages/taler-wallet-core/src/operations/withdraw.ts
+++ b/packages/taler-wallet-core/src/operations/withdraw.ts
@@ -37,12 +37,13 @@ import {
codecForWithdrawResponse,
WithdrawUriInfoResponse,
WithdrawResponse,
+ codecForTalerConfigResponse,
} from "../types/talerTypes";
import { InternalWalletState } from "./state";
import { parseWithdrawUri } from "../util/taleruri";
import { Logger } from "../util/logging";
import { updateExchangeFromUrl, getExchangeTrust } from "./exchanges";
-import { WALLET_EXCHANGE_PROTOCOL_VERSION } from "./versions";
+import { WALLET_EXCHANGE_PROTOCOL_VERSION, WALLET_BANK_INTEGRATION_PROTOCOL_VERSION } from "./versions";
import * as LibtoolVersion from "../util/libtoolVersion";
import {
@@ -62,6 +63,7 @@ import { URL } from "../util/url";
import { TalerErrorCode } from "../TalerErrorCode";
import { encodeCrock } from "../crypto/talerCrypto";
import { updateRetryInfoTimeout, initRetryInfo } from "../util/retries";
+import { compare } from "../util/libtoolVersion";
const logger = new Logger("withdraw.ts");
@@ -152,8 +154,33 @@ export async function getBankWithdrawalInfo(
if (!uriResult) {
throw Error(`can't parse URL ${talerWithdrawUri}`);
}
+
+ const configReqUrl = new URL(
+ "config",
+ uriResult.bankIntegrationApiBaseUrl,
+ )
+
+ const configResp = await ws.http.get(configReqUrl.href);
+ const config = await readSuccessResponseJsonOrThrow(
+ configResp,
+ codecForTalerConfigResponse(),
+ );
+
+ const versionRes = compare(WALLET_BANK_INTEGRATION_PROTOCOL_VERSION, config.version);
+ if (versionRes?.compatible != true) {
+ const opErr = makeErrorDetails(
+ TalerErrorCode.WALLET_BANK_INTEGRATION_PROTOCOL_VERSION_INCOMPATIBLE,
+ "bank integration protocol version not compatible with wallet",
+ {
+ exchangeProtocolVersion: config.version,
+ walletProtocolVersion: WALLET_BANK_INTEGRATION_PROTOCOL_VERSION,
+ },
+ );
+ throw new OperationFailedError(opErr);
+ }
+
const reqUrl = new URL(
- `api/withdraw-operation/${uriResult.withdrawalOperationId}`,
+ `withdrawal-operation/${uriResult.withdrawalOperationId}`,
uriResult.bankIntegrationApiBaseUrl,
);
const resp = await ws.http.get(reqUrl.href);