wallet-core/packages/anastasis-webui/src/pages/home/SecretSelectionScreen.tsx

418 lines
13 KiB
TypeScript
Raw Normal View History

2022-06-06 16:46:49 +02:00
/*
This file is part of GNU Anastasis
(C) 2021-2022 Anastasis SARL
GNU Anastasis is free software; you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
GNU Anastasis 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with
GNU Anastasis; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
2022-01-24 18:39:27 +01:00
import {
AuthenticationProviderStatus,
AuthenticationProviderStatusOk,
} from "@gnu-taler/anastasis-core";
2021-10-19 15:56:52 +02:00
import { h, VNode } from "preact";
2022-04-12 12:54:57 +02:00
import { useEffect, useState } from "preact/hooks";
2022-06-06 05:54:55 +02:00
import { AsyncButton } from "../../components/AsyncButton.js";
import { PhoneNumberInput } from "../../components/fields/NumberInput.js";
import { useAnastasisContext } from "../../context/anastasis.js";
import { AddingProviderScreen } from "./AddingProviderScreen.js";
import { AnastasisClientFrame } from "./index.js";
2021-10-19 15:56:52 +02:00
2021-10-22 06:31:46 +02:00
export function SecretSelectionScreen(): VNode {
2021-10-19 15:56:52 +02:00
const [selectingVersion, setSelectingVersion] = useState<boolean>(false);
2021-11-10 14:20:52 +01:00
const reducer = useAnastasisContext();
2022-04-12 12:54:57 +02:00
const [manageProvider, setManageProvider] = useState(false);
useEffect(() => {
async function f() {
if (reducer) {
await reducer.discoverStart();
}
}
f().catch((e) => console.log(e));
}, []);
if (!reducer) {
return <div>no reducer in context</div>;
}
if (
!reducer.currentReducerState ||
2022-04-13 08:44:37 +02:00
reducer.currentReducerState.reducer_type !== "recovery"
2022-04-12 12:54:57 +02:00
) {
return <div>invalid state</div>;
}
const provs = reducer.currentReducerState.authentication_providers ?? {};
const recoveryDocument = reducer.currentReducerState.recovery_document;
if (manageProvider) {
return <AddingProviderScreen onCancel={() => setManageProvider(false)} />;
}
if (reducer.discoveryState.state === "none") {
// Can this even happen?
return (
<AnastasisClientFrame title="Recovery: Select secret">
<div>waiting to start discovery</div>
</AnastasisClientFrame>
);
}
if (reducer.discoveryState.state === "active") {
return (
<AnastasisClientFrame title="Recovery: Select secret">
<div>loading secret versions</div>
</AnastasisClientFrame>
);
}
const policies = reducer.discoveryState.aggregatedPolicies ?? [];
if (policies.length === 0) {
return (
<ChooseAnotherProviderScreen
providers={provs}
selected=""
2022-06-06 05:54:55 +02:00
onChange={() => null}
2022-04-12 12:54:57 +02:00
></ChooseAnotherProviderScreen>
);
}
return (
2022-04-13 08:44:37 +02:00
<AnastasisClientFrame
title="Recovery: Select secret"
hideNext="Please select version to recover"
>
2022-06-09 21:11:49 +02:00
<div class="columns">
<div class="column">
<p class="block">Found versions:</p>
{policies.map((version, i) => (
<div key={i} class="box">
<div
class="block"
style={{ display: "flex", justifyContent: "space-between" }}
>
<div
style={{
display: "flex",
flexDirection: "column",
}}
>
<div style={{ display: "flex", alignItems: "center" }}>
<b>Name:</b>&nbsp;<span>{version.secret_name}</span>
</div>
<div style={{ display: "flex", alignItems: "center" }}>
<b>Id:</b>&nbsp;
<span
class="icon has-tooltip-top"
data-tooltip={version.policy_hash
.match(/(.{22})/g)
?.join("\n")}
>
<i class="mdi mdi-information" />
</span>
<span>{version.policy_hash.substring(0, 22)}...</span>
</div>
</div>
<div>
<AsyncButton
class="button"
onClick={() =>
reducer.transition("select_version", version)
}
>
Recover
</AsyncButton>
</div>
</div>
</div>
))}
2022-04-12 12:54:57 +02:00
</div>
2022-06-09 21:11:49 +02:00
<div class="column">
<p>
Secret found, you can select another version or continue to the
challenges solving
</p>
<p class="block">
<a onClick={() => setManageProvider(true)}>
Manage recovery providers
</a>
</p>
</div>
</div>
2022-04-12 12:54:57 +02:00
</AnastasisClientFrame>
);
}
2021-10-22 06:31:46 +02:00
2022-04-12 12:54:57 +02:00
export function OldSecretSelectionScreen(): VNode {
const [selectingVersion, setSelectingVersion] = useState<boolean>(false);
const reducer = useAnastasisContext();
2021-11-10 14:20:52 +01:00
const [manageProvider, setManageProvider] = useState(false);
2022-04-12 12:54:57 +02:00
useEffect(() => {
async function f() {
if (reducer) {
await reducer.discoverStart();
}
}
f().catch((e) => console.log(e));
}, []);
2021-11-10 14:20:52 +01:00
const currentVersion =
(reducer?.currentReducerState &&
"recovery_document" in reducer.currentReducerState &&
reducer.currentReducerState.recovery_document?.version) ||
0;
2021-10-22 06:31:46 +02:00
if (!reducer) {
2021-11-10 14:20:52 +01:00
return <div>no reducer in context</div>;
2021-10-22 06:31:46 +02:00
}
2021-11-10 14:20:52 +01:00
if (
!reducer.currentReducerState ||
2022-04-13 08:44:37 +02:00
reducer.currentReducerState.reducer_type !== "recovery"
2021-11-10 14:20:52 +01:00
) {
return <div>invalid state</div>;
2021-10-22 06:31:46 +02:00
}
2021-11-05 15:17:42 +01:00
async function doSelectVersion(p: string, n: number): Promise<void> {
2021-11-04 20:51:19 +01:00
if (!reducer) return Promise.resolve();
return reducer.runTransaction(async (tx) => {
2022-04-13 08:44:37 +02:00
await tx.transition("select_version", {
2021-10-19 15:56:52 +02:00
version: n,
provider_url: p,
});
2021-11-04 20:51:19 +01:00
setSelectingVersion(false);
2021-10-19 15:56:52 +02:00
});
}
2021-10-22 06:31:46 +02:00
const provs = reducer.currentReducerState.authentication_providers ?? {};
2021-11-10 14:20:52 +01:00
const recoveryDocument = reducer.currentReducerState.recovery_document;
2021-10-27 20:13:35 +02:00
2021-11-05 15:17:42 +01:00
if (!recoveryDocument) {
2021-11-10 14:20:52 +01:00
return (
<ChooseAnotherProviderScreen
providers={provs}
2021-11-10 14:20:52 +01:00
selected=""
onChange={(newProv) => doSelectVersion(newProv, 0)}
/>
);
2021-10-19 15:56:52 +02:00
}
2021-11-04 20:51:19 +01:00
2021-11-05 15:17:42 +01:00
if (selectingVersion) {
2021-11-10 14:20:52 +01:00
return (
<SelectOtherVersionProviderScreen
providers={provs}
2021-11-10 14:20:52 +01:00
provider={recoveryDocument.provider_url}
version={recoveryDocument.version}
onCancel={() => setSelectingVersion(false)}
onConfirm={doSelectVersion}
/>
);
2021-11-04 20:51:19 +01:00
}
2021-11-09 04:19:50 +01:00
if (manageProvider) {
2021-11-10 14:20:52 +01:00
return <AddingProviderScreen onCancel={() => setManageProvider(false)} />;
2021-11-09 04:19:50 +01:00
}
2022-04-12 12:54:57 +02:00
const providerInfo = provs[
2022-01-24 18:39:27 +01:00
recoveryDocument.provider_url
] as AuthenticationProviderStatusOk;
2022-04-12 12:54:57 +02:00
2021-10-19 15:56:52 +02:00
return (
<AnastasisClientFrame title="Recovery: Select secret">
2021-11-04 19:17:57 +01:00
<div class="columns">
2021-11-04 20:51:19 +01:00
<div class="column">
2021-11-10 14:20:52 +01:00
<div class="box" style={{ border: "2px solid green" }}>
2022-04-12 12:54:57 +02:00
<h1 class="subtitle">{providerInfo.business_name}</h1>
2021-11-04 20:51:19 +01:00
<div class="block">
2021-11-10 14:20:52 +01:00
{currentVersion === 0 ? (
<p>Set to recover the latest version</p>
) : (
<p>Set to recover the version number {currentVersion}</p>
)}
2021-11-04 20:51:19 +01:00
</div>
2021-11-04 19:17:57 +01:00
<div class="buttons is-right">
2021-11-10 14:20:52 +01:00
<button class="button" onClick={(e) => setSelectingVersion(true)}>
2022-06-06 05:54:55 +02:00
Change secret&apos;s version
2021-11-10 14:20:52 +01:00
</button>
2021-11-04 19:17:57 +01:00
</div>
</div>
</div>
2021-11-04 20:51:19 +01:00
<div class="column">
2021-11-10 14:20:52 +01:00
<p>
Secret found, you can select another version or continue to the
challenges solving
</p>
2021-11-09 04:19:50 +01:00
<p class="block">
2021-11-10 14:20:52 +01:00
<a onClick={() => setManageProvider(true)}>
2021-11-09 04:19:50 +01:00
Manage recovery providers
2021-11-10 14:20:52 +01:00
</a>
2021-11-09 04:19:50 +01:00
</p>
2021-11-04 19:17:57 +01:00
</div>
</div>
2021-10-19 15:56:52 +02:00
</AnastasisClientFrame>
);
}
2021-11-05 15:17:42 +01:00
2021-11-10 14:20:52 +01:00
function ChooseAnotherProviderScreen({
providers,
selected,
onChange,
}: {
selected: string;
providers: { [url: string]: AuthenticationProviderStatus };
2021-11-10 14:20:52 +01:00
onChange: (prov: string) => void;
}): VNode {
2021-11-05 15:17:42 +01:00
return (
2021-11-10 14:20:52 +01:00
<AnastasisClientFrame
hideNext="Recovery document not found"
title="Recovery: Problem"
>
2021-11-05 15:17:42 +01:00
<p>No recovery document found, try with another provider</p>
<div class="field">
<label class="label">Provider</label>
<div class="control is-expanded has-icons-left">
<div class="select is-fullwidth">
2021-11-10 14:20:52 +01:00
<select
onChange={(e) => onChange(e.currentTarget.value)}
value={selected}
>
<option key="none" disabled selected value="">
{" "}
Choose a provider{" "}
</option>
{Object.keys(providers).map((url) => {
2022-01-24 18:39:27 +01:00
const p = providers[url];
if (!("methods" in p)) return null;
return (
<option key={url} value={url}>
{p.business_name}
</option>
);
})}
2021-11-05 15:17:42 +01:00
</select>
<div class="icon is-small is-left">
<i class="mdi mdi-earth" />
</div>
</div>
</div>
</div>
</AnastasisClientFrame>
);
}
2021-11-10 14:20:52 +01:00
function SelectOtherVersionProviderScreen({
providers,
provider,
version,
onConfirm,
onCancel,
}: {
onCancel: () => void;
provider: string;
version: number;
providers: { [url: string]: AuthenticationProviderStatus };
2021-11-10 14:20:52 +01:00
onConfirm: (prov: string, v: number) => Promise<void>;
}): VNode {
2021-11-05 15:17:42 +01:00
const [otherProvider, setOtherProvider] = useState<string>(provider);
2021-11-10 14:20:52 +01:00
const [otherVersion, setOtherVersion] = useState(
version > 0 ? String(version) : "",
);
2022-01-24 18:39:27 +01:00
const otherProviderInfo = providers[
otherProvider
] as AuthenticationProviderStatusOk;
2021-11-05 15:17:42 +01:00
return (
<AnastasisClientFrame hideNav title="Recovery: Select secret">
<div class="columns">
<div class="column">
<div class="box">
<h1 class="subtitle">Provider {otherProviderInfo.business_name}</h1>
2021-11-05 15:17:42 +01:00
<div class="block">
2021-11-10 14:20:52 +01:00
{version === 0 ? (
<p>Set to recover the latest version</p>
) : (
<p>Set to recover the version number {version}</p>
)}
2021-11-05 15:17:42 +01:00
<p>Specify other version below or use the latest</p>
</div>
<div class="field">
<label class="label">Provider</label>
<div class="control is-expanded has-icons-left">
<div class="select is-fullwidth">
2021-11-10 14:20:52 +01:00
<select
onChange={(e) => setOtherProvider(e.currentTarget.value)}
value={otherProvider}
>
<option key="none" disabled selected value="">
{" "}
Choose a provider{" "}
</option>
{Object.keys(providers).map((url) => {
2022-01-24 18:39:27 +01:00
const p = providers[url];
if (!("methods" in p)) return null;
return (
<option key={url} value={url}>
{p.business_name}
</option>
);
})}
2021-11-05 15:17:42 +01:00
</select>
<div class="icon is-small is-left">
<i class="mdi mdi-earth" />
</div>
</div>
</div>
</div>
<div class="container">
2021-11-09 23:14:44 +01:00
<PhoneNumberInput
2021-11-05 15:17:42 +01:00
label="Version"
placeholder="version number to recover"
grabFocus
2021-11-10 14:20:52 +01:00
bind={[otherVersion, setOtherVersion]}
/>
2021-11-05 15:17:42 +01:00
</div>
</div>
2021-11-10 14:20:52 +01:00
<div
style={{
marginTop: "2em",
display: "flex",
justifyContent: "space-between",
}}
>
<button class="button" onClick={onCancel}>
Cancel
</button>
2021-11-05 15:17:42 +01:00
<div class="buttons">
2021-11-10 14:20:52 +01:00
<AsyncButton
class="button"
onClick={() => onConfirm(otherProvider, 0)}
>
Use latest
</AsyncButton>
<AsyncButton
class="button is-info"
onClick={() =>
onConfirm(otherProvider, parseInt(otherVersion, 10))
}
>
Confirm
</AsyncButton>
2021-11-05 15:17:42 +01:00
</div>
</div>
</div>
</div>
</AnastasisClientFrame>
);
}