2022-01-24 18:39:27 +01:00
|
|
|
import {
|
|
|
|
AuthenticationProviderStatus,
|
|
|
|
AuthenticationProviderStatusOk,
|
2022-04-12 12:54:57 +02:00
|
|
|
PolicyMetaInfo,
|
2022-01-24 18:39:27 +01:00
|
|
|
} 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";
|
2021-11-04 20:51:19 +01:00
|
|
|
import { AsyncButton } from "../../components/AsyncButton";
|
2021-11-09 23:14:44 +01:00
|
|
|
import { PhoneNumberInput } from "../../components/fields/NumberInput";
|
2021-10-22 06:31:46 +02:00
|
|
|
import { useAnastasisContext } from "../../context/anastasis";
|
2021-11-09 04:19:50 +01:00
|
|
|
import { AddingProviderScreen } from "./AddingProviderScreen";
|
2021-10-22 06:31:46 +02:00
|
|
|
import { AnastasisClientFrame } from "./index";
|
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=""
|
|
|
|
onChange={(newProv) => () => {}}
|
|
|
|
></ChooseAnotherProviderScreen>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2022-04-13 08:44:37 +02:00
|
|
|
<AnastasisClientFrame
|
|
|
|
title="Recovery: Select secret"
|
|
|
|
hideNext="Please select version to recover"
|
|
|
|
>
|
2022-04-12 12:54:57 +02:00
|
|
|
<p>Found versions:</p>
|
2022-06-03 17:17:51 +02:00
|
|
|
{policies.map((version) => (
|
2022-04-12 12:54:57 +02:00
|
|
|
<div>
|
2022-06-03 17:17:51 +02:00
|
|
|
{version.policy_hash} / {version.secret_name}
|
2022-04-12 12:54:57 +02:00
|
|
|
<button
|
|
|
|
onClick={async () => {
|
2022-06-03 17:17:51 +02:00
|
|
|
await reducer.transition("select_version", version);
|
2022-04-12 12:54:57 +02:00
|
|
|
}}
|
|
|
|
>
|
|
|
|
Recover
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
<button>Load older versions</button>
|
|
|
|
</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
|
|
|
|
2021-11-11 17:22:14 +01: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
|
2021-11-11 17:22:14 +01:00
|
|
|
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
|
2021-11-11 17:22:14 +01:00
|
|
|
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)}>
|
|
|
|
Change secret's version
|
|
|
|
</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;
|
2021-11-11 17:22:14 +01:00
|
|
|
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>
|
2021-11-11 17:22:14 +01:00
|
|
|
{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-11 17:22:14 +01:00
|
|
|
})}
|
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;
|
2021-11-11 17:22:14 +01:00
|
|
|
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">
|
2021-11-11 17:22:14 +01:00
|
|
|
<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>
|
2021-11-11 17:22:14 +01:00
|
|
|
{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-11 17:22:14 +01:00
|
|
|
})}
|
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>
|
|
|
|
);
|
|
|
|
}
|