/* This file is part of GNU Taler (C) 2021-2024 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 */ /** * * @author Sebastian Javier Marchano (sebasjm) */ import { HttpStatusCode } from "@gnu-taler/taler-util"; import { useMerchantApiContext, useTranslationContext, } from "@gnu-taler/web-util/browser"; import { ComponentChildren, Fragment, VNode, h } from "preact"; import { useState } from "preact/hooks"; import { NotificationCard } from "../../components/menu/index.js"; import { AccessToken } from "../../declaration.js"; import { DEFAULT_ADMIN_USERNAME, useSessionState } from "../../hooks/session.js"; import { Notification } from "../../utils/types.js"; interface Props { } function normalizeToken(r: string): AccessToken { return `secret-token:${r}` as AccessToken; } export function LoginPage(_p: Props): VNode { const [token, setToken] = useState(""); const [notif, setNotif] = useState(undefined); const { state, logIn } = useSessionState(); const { lib } = useMerchantApiContext(); const { i18n } = useTranslationContext(); async function doLoginImpl() { const secretToken = normalizeToken(token); const result = await lib.authenticate.createAccessToken(secretToken, { scope: "write", duration: { d_us: "forever" }, refreshable: true, }); if (result.type === "ok") { const { access_token } = result.body; logIn({ instance: state.instance, token: access_token }); return; } else { switch(result.case) { case HttpStatusCode.Unauthorized: { setNotif({ message: "Your password is incorrect", type: "ERROR", }); return; } case HttpStatusCode.NotFound: { setNotif({ message: "Your instance not found", type: "ERROR", }); return; } } } } if (state.isAdmin && state.instance !== DEFAULT_ADMIN_USERNAME) { //admin trying to access another instance return (
); } return (
); } function AsyncButton({ onClick, disabled, type = "", children, }: { type?: string; disabled?: boolean; onClick: () => Promise; children: ComponentChildren; }): VNode { const [running, setRunning] = useState(false); return ( ); }