2019-12-02 00:42:40 +01:00
|
|
|
/*
|
|
|
|
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/>
|
|
|
|
*/
|
|
|
|
|
2022-04-13 21:40:56 +02:00
|
|
|
import { generateFakeSegwitAddress } from "./bitcoin.js";
|
2021-03-17 17:56:37 +01:00
|
|
|
import { URLSearchParams } from "./url.js";
|
2020-08-03 09:30:48 +02:00
|
|
|
|
2022-04-13 21:40:56 +02:00
|
|
|
export type PaytoUri =
|
|
|
|
| PaytoUriUnknown
|
|
|
|
| PaytoUriIBAN
|
|
|
|
| PaytoUriTalerBank
|
|
|
|
| PaytoUriBitcoin;
|
2021-11-16 17:59:53 +01:00
|
|
|
|
2022-04-18 21:23:37 +02:00
|
|
|
export interface PaytoUriGeneric {
|
2019-12-02 00:42:40 +01:00
|
|
|
targetType: string;
|
|
|
|
targetPath: string;
|
|
|
|
params: { [name: string]: string };
|
|
|
|
}
|
|
|
|
|
2022-04-18 21:23:37 +02:00
|
|
|
export interface PaytoUriUnknown extends PaytoUriGeneric {
|
2021-11-16 17:59:53 +01:00
|
|
|
isKnown: false;
|
|
|
|
}
|
|
|
|
|
2022-04-18 21:23:37 +02:00
|
|
|
export interface PaytoUriIBAN extends PaytoUriGeneric {
|
2021-11-16 17:59:53 +01:00
|
|
|
isKnown: true;
|
2022-04-13 21:40:56 +02:00
|
|
|
targetType: "iban";
|
2021-11-16 17:59:53 +01:00
|
|
|
iban: string;
|
2022-11-04 19:58:10 +01:00
|
|
|
bic?: string;
|
2021-11-16 17:59:53 +01:00
|
|
|
}
|
|
|
|
|
2022-04-18 21:23:37 +02:00
|
|
|
export interface PaytoUriTalerBank extends PaytoUriGeneric {
|
2021-11-16 17:59:53 +01:00
|
|
|
isKnown: true;
|
2022-04-13 21:40:56 +02:00
|
|
|
targetType: "x-taler-bank";
|
2021-11-16 17:59:53 +01:00
|
|
|
host: string;
|
|
|
|
account: string;
|
|
|
|
}
|
|
|
|
|
2022-04-18 21:23:37 +02:00
|
|
|
export interface PaytoUriBitcoin extends PaytoUriGeneric {
|
2022-03-24 20:02:38 +01:00
|
|
|
isKnown: true;
|
2022-04-13 21:40:56 +02:00
|
|
|
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 || "");
|
2022-10-12 19:36:30 +02:00
|
|
|
const keys = Object.keys(params);
|
2022-09-23 20:16:13 +02:00
|
|
|
if (keys.length === 0) {
|
2022-10-12 19:36:30 +02:00
|
|
|
return paytoPfx + acct;
|
2022-09-23 20:16:13 +02:00
|
|
|
}
|
|
|
|
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
|
2022-04-13 21:40:56 +02:00
|
|
|
*
|
|
|
|
* @param p
|
|
|
|
* @returns
|
2022-04-11 16:31:33 +02:00
|
|
|
*/
|
|
|
|
export function stringifyPaytoUri(p: PaytoUri): string {
|
2023-01-16 23:34:44 +01:00
|
|
|
const url = new URL(`${paytoPfx}${p.targetType}/${p.targetPath}`);
|
2022-09-23 20:16:13 +02:00
|
|
|
const paramList = !p.params ? [] : Object.entries(p.params);
|
2023-01-16 23:34:44 +01:00
|
|
|
paramList.forEach(([key, value]) => {
|
|
|
|
url.searchParams.set(key, value)
|
|
|
|
})
|
|
|
|
return url.href;
|
2022-04-11 16:31:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a valid payto:// uri into a PaytoUri object
|
|
|
|
* RFC 8905
|
2022-04-13 21:40:56 +02:00
|
|
|
*
|
|
|
|
* @param s
|
|
|
|
* @returns
|
2022-04-11 16:31:33 +02:00
|
|
|
*/
|
2019-12-02 00:42:40 +01:00
|
|
|
export function parsePaytoUri(s: string): PaytoUri | undefined {
|
2020-06-21 14:49:27 +02:00
|
|
|
if (!s.startsWith(paytoPfx)) {
|
2019-12-02 00:42:40 +01:00
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2020-06-21 14:49:27 +02:00
|
|
|
const [acct, search] = s.slice(paytoPfx.length).split("?");
|
2019-12-02 00:42:40 +01:00
|
|
|
|
|
|
|
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;
|
2019-12-02 00:42:40 +01:00
|
|
|
});
|
|
|
|
|
2022-04-13 21:40:56 +02:00
|
|
|
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,
|
2022-04-13 21:40:56 +02:00
|
|
|
host,
|
|
|
|
account,
|
2021-11-16 17:59:53 +01:00
|
|
|
};
|
|
|
|
}
|
2022-04-13 21:40:56 +02:00
|
|
|
if (targetType === "iban") {
|
2022-11-04 19:58:10 +01:00
|
|
|
const parts = targetPath.split("/");
|
|
|
|
let iban: string | undefined = undefined;
|
|
|
|
let bic: string | undefined = undefined;
|
|
|
|
if (parts.length === 1) {
|
2022-11-08 17:00:34 +01:00
|
|
|
iban = parts[0];
|
|
|
|
}
|
|
|
|
if (parts.length === 2) {
|
|
|
|
bic = parts[0];
|
|
|
|
iban = parts[1];
|
2022-11-04 19:58:10 +01:00
|
|
|
} else {
|
2022-11-08 17:00:34 +01:00
|
|
|
iban = targetPath;
|
2022-11-04 19:58:10 +01:00
|
|
|
}
|
2021-11-16 17:59:53 +01:00
|
|
|
return {
|
|
|
|
isKnown: true,
|
|
|
|
targetPath,
|
|
|
|
targetType,
|
|
|
|
params,
|
2022-11-04 19:58:10 +01:00
|
|
|
iban,
|
|
|
|
bic,
|
2021-11-16 17:59:53 +01:00
|
|
|
};
|
2022-03-24 20:02:38 +01:00
|
|
|
}
|
2022-04-13 21:40:56 +02: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-04-13 21:40:56 +02:00
|
|
|
};
|
2022-03-24 20:02:38 +01:00
|
|
|
|
|
|
|
return result;
|
2021-11-16 17:59:53 +01:00
|
|
|
}
|
2019-12-02 00:42:40 +01:00
|
|
|
return {
|
|
|
|
targetPath,
|
|
|
|
targetType,
|
|
|
|
params,
|
2022-04-13 21:40:56 +02:00
|
|
|
isKnown: false,
|
2020-03-30 12:39:32 +02:00
|
|
|
};
|
|
|
|
}
|