wallet-core/packages/taler-util/src/payto.ts

171 lines
3.9 KiB
TypeScript
Raw Normal View History

/*
This file is part of GNU Taler
(C) 2019 GNUnet e.V.
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/>
*/
import { generateFakeSegwitAddress } from "./bitcoin.js";
2021-03-17 17:56:37 +01:00
import { URLSearchParams } from "./url.js";
export type PaytoUri =
| PaytoUriUnknown
| PaytoUriIBAN
| PaytoUriTalerBank
| PaytoUriBitcoin;
2021-11-16 17:59:53 +01:00
export interface PaytoUriGeneric {
targetType: string;
targetPath: string;
params: { [name: string]: string };
}
export interface PaytoUriUnknown extends PaytoUriGeneric {
2021-11-16 17:59:53 +01:00
isKnown: false;
}
export interface PaytoUriIBAN extends PaytoUriGeneric {
2021-11-16 17:59:53 +01:00
isKnown: true;
targetType: "iban";
2021-11-16 17:59:53 +01:00
iban: string;
}
export interface PaytoUriTalerBank extends PaytoUriGeneric {
2021-11-16 17:59:53 +01:00
isKnown: true;
targetType: "x-taler-bank";
2021-11-16 17:59:53 +01:00
host: string;
account: string;
}
export interface PaytoUriBitcoin extends PaytoUriGeneric {
2022-03-24 20:02:38 +01:00
isKnown: true;
targetType: "bitcoin";
2022-04-20 20:14:18 +02:00
segwitAddrs: Array<string>;
2022-03-24 20:02:38 +01:00
}
2020-06-21 14:49:27 +02:00
const paytoPfx = "payto://";
/**
* Add query parameters to a payto URI
*/
2020-06-21 14:50:39 +02:00
export function addPaytoQueryParams(
s: string,
params: { [name: string]: string },
): string {
2020-06-21 14:49:27 +02:00
const [acct, search] = s.slice(paytoPfx.length).split("?");
const searchParams = new URLSearchParams(search || "");
const keys = Object.keys(params)
if (keys.length === 0) {
return paytoPfx + acct
}
for (const k of keys) {
2020-06-21 14:49:27 +02:00
searchParams.set(k, params[k]);
}
return paytoPfx + acct + "?" + searchParams.toString();
}
2022-04-11 16:31:33 +02:00
/**
* Serialize a PaytoURI into a valid payto:// string
*
* @param p
* @returns
2022-04-11 16:31:33 +02:00
*/
export function stringifyPaytoUri(p: PaytoUri): string {
const url = `${paytoPfx}${p.targetType}/${p.targetPath}`;
const paramList = !p.params ? [] : Object.entries(p.params);
if (paramList.length > 0) {
const search = paramList
2022-04-11 16:31:33 +02:00
.map(([key, value]) => `${key}=${value}`)
.join("&");
return `${url}?${search}`;
2022-04-11 16:31:33 +02:00
}
return url;
2022-04-11 16:31:33 +02:00
}
/**
* Parse a valid payto:// uri into a PaytoUri object
* RFC 8905
*
* @param s
* @returns
2022-04-11 16:31:33 +02:00
*/
export function parsePaytoUri(s: string): PaytoUri | undefined {
2020-06-21 14:49:27 +02:00
if (!s.startsWith(paytoPfx)) {
return undefined;
}
2020-06-21 14:49:27 +02:00
const [acct, search] = s.slice(paytoPfx.length).split("?");
const firstSlashPos = acct.indexOf("/");
if (firstSlashPos === -1) {
return undefined;
}
const targetType = acct.slice(0, firstSlashPos);
const targetPath = acct.slice(firstSlashPos + 1);
const params: { [k: string]: string } = {};
const searchParams = new URLSearchParams(search || "");
searchParams.forEach((v, k) => {
2022-04-20 18:25:13 +02:00
params[k] = v;
});
if (targetType === "x-taler-bank") {
const parts = targetPath.split("/");
const host = parts[0];
const account = parts[1];
2021-11-16 17:59:53 +01:00
return {
targetPath,
targetType,
params,
isKnown: true,
host,
account,
2021-11-16 17:59:53 +01:00
};
}
if (targetType === "iban") {
2021-11-16 17:59:53 +01:00
return {
isKnown: true,
targetPath,
targetType,
params,
iban: targetPath,
2021-11-16 17:59:53 +01:00
};
2022-03-24 20:02:38 +01:00
}
if (targetType === "bitcoin") {
2022-09-21 20:43:35 +02:00
const msg = /\b([A-Z0-9]{52})\b/.exec(params["message"]);
2022-04-20 18:25:13 +02:00
const reserve = !msg ? params["subject"] : msg[0];
2022-09-21 20:43:35 +02:00
const segwitAddrs = !reserve
? []
: generateFakeSegwitAddress(reserve, targetPath);
2022-04-20 18:25:13 +02:00
2022-03-24 20:02:38 +01:00
const result: PaytoUriBitcoin = {
isKnown: true,
targetPath,
targetType,
params,
2022-09-21 20:43:35 +02:00
segwitAddrs,
};
2022-03-24 20:02:38 +01:00
return result;
2021-11-16 17:59:53 +01:00
}
return {
targetPath,
targetType,
params,
isKnown: false,
2020-03-30 12:39:32 +02:00
};
}