/* 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, TranslatedString } from "@gnu-taler/taler-util"; import { ErrorType, notifyError, useTranslationContext } from "@gnu-taler/web-util/browser"; import { Fragment, VNode, h } from "preact"; import { useEffect, useRef, useState } from "preact/hooks"; import { ShowInputErrorLabel } from "../components/ShowInputErrorLabel.js"; import { useBackendContext } from "../context/backend.js"; import { useCredentialsChecker } from "../hooks/useCredentialsChecker.js"; import { bankUiSettings } from "../settings.js"; import { undefinedIfEmpty } from "../utils.js"; /** * Collect and submit login data. */ export function LoginForm({ onRegister }: { onRegister?: () => void }): VNode { const backend = useBackendContext(); const currentUser = backend.state.status === "loggedIn" ? backend.state.username : undefined const [username, setUsername] = useState(currentUser); const [password, setPassword] = useState(); const { i18n } = useTranslationContext(); const { requestNewLoginToken, refreshLoginToken } = useCredentialsChecker(); const ref = useRef(null); useEffect(function focusInput() { ref.current?.focus(); }, []); const [busy, setBusy] = useState>() 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, }) ?? busy; function saveError({ title, description, debug }: { title: TranslatedString, description?: TranslatedString, debug?: any }) { notifyError(title, description, debug) } async function doLogin() { if (!username || !password) return; setBusy({}) const result = await requestNewLoginToken(username, password); if (result.valid) { backend.logIn({ username, token: result.token }); } else { const { cause } = result; switch (cause.type) { case ErrorType.CLIENT: { if (cause.status === HttpStatusCode.Unauthorized) { saveError({ title: i18n.str`Wrong credentials for "${username}"`, }); } else if (cause.status === HttpStatusCode.NotFound) { saveError({ title: i18n.str`Account not found`, }); } else { saveError({ title: i18n.str`Could not load due to a client error`, // description: cause.payload.error.description, debug: JSON.stringify(cause.payload), }); } break; } case ErrorType.SERVER: { saveError({ title: i18n.str`Server had a problem, try again later or report.`, // description: cause.payload.error.description, debug: JSON.stringify(cause.payload), }); break; } case ErrorType.TIMEOUT: { saveError({ title: i18n.str`Request timeout, try again later.`, }); break; } case ErrorType.UNREADABLE: { saveError({ title: i18n.str`Unexpected error.`, description: `Response from ${cause.info?.url} is unreadable, http status: ${cause.status}` as TranslatedString, debug: JSON.stringify(cause), }); break; } default: { saveError({ title: i18n.str`Unexpected error, please report.`, description: `Diagnostic from ${cause.info?.url} is "${cause.message}"` as TranslatedString, debug: JSON.stringify(cause), }); break; } } // backend.logOut(); } setPassword(undefined); setBusy(undefined) } /** * Register form may be shown in the initialization step. * If this is an error when usgin the app the registration * callback is not set */ const isSessionExpired = !onRegister return (

{/* {error && ( saveError(undefined)} /> )} */}
{/*

{i18n.str`Welcome to ${bankUiSettings.bankName}!`}

*/}
{ e.preventDefault(); }} autoCapitalize="none" autoCorrect="off" >
{ setUsername(e.currentTarget.value); }} />
{ setPassword(e.currentTarget.value); }} />
{isSessionExpired ?
:
}
{bankUiSettings.allowRegistrations && onRegister &&

}
); }