2021-11-23 23:51:12 +01:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2021 Taler Systems S.A..
|
|
|
|
|
|
|
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
GNU 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
|
|
|
import {
|
|
|
|
canonicalizeBaseUrl,
|
|
|
|
Logger,
|
|
|
|
URL,
|
|
|
|
codecForMerchantConfigResponse,
|
|
|
|
LibtoolVersion,
|
|
|
|
} from "@gnu-taler/taler-util";
|
2022-03-23 13:11:36 +01:00
|
|
|
import { InternalWalletState, MerchantInfo } from "../internal-wallet-state.js";
|
2022-10-08 20:56:57 +02:00
|
|
|
import { readSuccessResponseJsonOrThrow } from "../util/http.js";
|
2021-11-23 23:51:12 +01:00
|
|
|
|
|
|
|
const logger = new Logger("taler-wallet-core:merchants.ts");
|
|
|
|
|
|
|
|
export async function getMerchantInfo(
|
|
|
|
ws: InternalWalletState,
|
|
|
|
merchantBaseUrl: string,
|
|
|
|
): Promise<MerchantInfo> {
|
|
|
|
const canonBaseUrl = canonicalizeBaseUrl(merchantBaseUrl);
|
|
|
|
|
|
|
|
const existingInfo = ws.merchantInfoCache[canonBaseUrl];
|
|
|
|
if (existingInfo) {
|
|
|
|
return existingInfo;
|
|
|
|
}
|
|
|
|
|
2022-10-10 19:54:00 +02:00
|
|
|
const configUrl = new URL("config", canonBaseUrl);
|
2021-11-23 23:51:12 +01:00
|
|
|
const resp = await ws.http.get(configUrl.href);
|
|
|
|
|
|
|
|
const configResp = await readSuccessResponseJsonOrThrow(
|
|
|
|
resp,
|
|
|
|
codecForMerchantConfigResponse(),
|
|
|
|
);
|
|
|
|
|
|
|
|
logger.info(
|
|
|
|
`merchant "${canonBaseUrl}" reports protocol ${configResp.version}"`,
|
|
|
|
);
|
|
|
|
|
2021-11-27 20:56:58 +01:00
|
|
|
const parsedVersion = LibtoolVersion.parseVersion(configResp.version);
|
|
|
|
if (!parsedVersion) {
|
|
|
|
throw Error("invalid merchant version");
|
|
|
|
}
|
|
|
|
|
2021-11-23 23:51:12 +01:00
|
|
|
const merchantInfo: MerchantInfo = {
|
2021-11-27 20:56:58 +01:00
|
|
|
protocolVersionCurrent: parsedVersion.current,
|
2021-11-23 23:51:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
ws.merchantInfoCache[canonBaseUrl] = merchantInfo;
|
|
|
|
return merchantInfo;
|
|
|
|
}
|