aboutsummaryrefslogtreecommitdiff
path: root/src/util/payto.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/payto.ts')
-rw-r--r--src/util/payto.ts19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/util/payto.ts b/src/util/payto.ts
index ac5bc0c7f..0f624de67 100644
--- a/src/util/payto.ts
+++ b/src/util/payto.ts
@@ -20,13 +20,26 @@ interface PaytoUri {
params: { [name: string]: string };
}
+const paytoPfx = "payto://";
+
+/**
+ * Add query parameters to a payto URI
+ */
+export function addPaytoQueryParams(s: string, params: { [name: string]: string }): string {
+ const [acct, search] = s.slice(paytoPfx.length).split("?");
+ const searchParams = new URLSearchParams(search || "");
+ for (let k of Object.keys(params)) {
+ searchParams.set(k, params[k]);
+ }
+ return paytoPfx + acct + "?" + searchParams.toString();
+}
+
export function parsePaytoUri(s: string): PaytoUri | undefined {
- const pfx = "payto://";
- if (!s.startsWith(pfx)) {
+ if (!s.startsWith(paytoPfx)) {
return undefined;
}
- const [acct, search] = s.slice(pfx.length).split("?");
+ const [acct, search] = s.slice(paytoPfx.length).split("?");
const firstSlashPos = acct.indexOf("/");