/* This file is part of GNU Taler (C) 2022 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 */ import { HttpStatusCode, Logger, TranslatedString } from "@gnu-taler/taler-util"; import { RequestError, notify, notifyError, useTranslationContext, } from "@gnu-taler/web-util/browser"; import { Fragment, VNode, h } from "preact"; import { useState } from "preact/hooks"; import { useBackendContext } from "../context/backend.js"; import { useTestingAPI } from "../hooks/access.js"; import { bankUiSettings } from "../settings.js"; import { buildRequestErrorMessage, undefinedIfEmpty } from "../utils.js"; import { ShowInputErrorLabel } from "../components/ShowInputErrorLabel.js"; import { getRandomPassword, getRandomUsername } from "./rnd.js"; const logger = new Logger("RegistrationPage"); export function RegistrationPage({ onComplete, }: { onComplete: () => void; }): VNode { const { i18n } = useTranslationContext(); if (!bankUiSettings.allowRegistrations) { return (

{i18n.str`Currently, the bank is not accepting new registrations!`}

); } return ; } export const USERNAME_REGEX = /^[a-z][a-zA-Z0-9]*$/; /** * Collect and submit registration data. */ function RegistrationForm({ onComplete }: { onComplete: () => void }): VNode { const backend = useBackendContext(); const [username, setUsername] = useState(); const [password, setPassword] = useState(); const [repeatPassword, setRepeatPassword] = useState(); const { register } = useTestingAPI(); const { i18n } = useTranslationContext(); const errors = undefinedIfEmpty({ username: !username ? i18n.str`Missing username` : !USERNAME_REGEX.test(username) ? i18n.str`Use letters and numbers only, and start with a lowercase letter` : undefined, password: !password ? i18n.str`Missing password` : undefined, repeatPassword: !repeatPassword ? i18n.str`Missing password` : repeatPassword !== password ? i18n.str`Passwords don't match` : undefined, }); async function doRegistrationStep() { if (!username || !password) return; try { await register({ username, password }); setUsername(undefined); backend.logIn({ username, password }); onComplete(); } catch (error) { if (error instanceof RequestError) { notify( buildRequestErrorMessage(i18n, error.cause, { onClientError: (status) => status === HttpStatusCode.Conflict ? i18n.str`That username is already taken` : undefined, }), ); } else { notifyError( i18n.str`Operation failed, please report`, (error instanceof Error ? error.message : JSON.stringify(error)) as TranslatedString ) } } setPassword(undefined); setRepeatPassword(undefined); } async function delay(ms: number):Promise { return new Promise((resolve) => { setTimeout(() => { resolve(undefined); }, ms) }) } async function doRandomRegistration(tries: number = 3) { const user = getRandomUsername(); const pass = getRandomPassword(); try { setUsername(undefined); setPassword(undefined); setRepeatPassword(undefined); await register({ username: user, password: pass }); backend.logIn({ username: user, password: pass }); onComplete(); } catch (error) { if (error instanceof RequestError) { if (tries > 0) { await delay(200) await doRandomRegistration(tries-1) } else { notify( buildRequestErrorMessage(i18n, error.cause, { onClientError: (status) => status === HttpStatusCode.Conflict ? i18n.str`Could not create a random user` : undefined, }), ); } } else { notifyError( i18n.str`Operation failed, please report`, (error instanceof Error ? error.message : JSON.stringify(error)) as TranslatedString ) } } } return (

{i18n.str`Sign up!`}

{ e.preventDefault(); }} autoCapitalize="none" autoCorrect="off" >
{ setUsername(e.currentTarget.value); }} />
{ setPassword(e.currentTarget.value); }} />
{ setRepeatPassword(e.currentTarget.value); }} />

); } export function assertUnreachable(x: never): never { throw new Error("Didn't expect to get here"); }