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/>
|
|
|
|
*/
|
2021-11-03 21:30:11 +01:00
|
|
|
import { h, VNode } from "preact";
|
|
|
|
import { useState } from "preact/hooks";
|
2022-06-06 05:54:55 +02:00
|
|
|
import { useAnastasisContext } from "../../context/anastasis.js";
|
|
|
|
import { authMethods, KnownAuthMethods } from "./authMethod/index.js";
|
|
|
|
import { AnastasisClientFrame } from "./index.js";
|
2021-11-03 21:30:11 +01:00
|
|
|
|
|
|
|
export interface ProviderInfo {
|
|
|
|
url: string;
|
|
|
|
cost: string;
|
|
|
|
isFree: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export type ProviderInfoByType = {
|
|
|
|
[type in KnownAuthMethods]?: ProviderInfo[];
|
|
|
|
};
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
index: number;
|
|
|
|
cancel: () => void;
|
|
|
|
confirm: (changes: MethodProvider[]) => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MethodProvider {
|
|
|
|
authentication_method: number;
|
|
|
|
provider: string;
|
|
|
|
}
|
|
|
|
|
2021-11-10 14:20:52 +01:00
|
|
|
export function EditPoliciesScreen({
|
|
|
|
index: policy_index,
|
|
|
|
cancel,
|
|
|
|
confirm,
|
|
|
|
}: Props): VNode {
|
|
|
|
const [changedProvider, setChangedProvider] = useState<Array<string>>([]);
|
2021-11-03 21:30:11 +01:00
|
|
|
|
2021-11-10 14:20:52 +01:00
|
|
|
const reducer = useAnastasisContext();
|
2021-11-03 21:30:11 +01:00
|
|
|
if (!reducer) {
|
2021-11-10 14:20:52 +01:00
|
|
|
return <div>no reducer in context</div>;
|
2021-11-03 21:30:11 +01:00
|
|
|
}
|
2022-04-13 08:44:37 +02:00
|
|
|
if (reducer.currentReducerState?.reducer_type !== "backup") {
|
2021-11-10 14:20:52 +01:00
|
|
|
return <div>invalid state</div>;
|
2021-11-03 21:30:11 +01:00
|
|
|
}
|
|
|
|
|
2021-11-10 14:20:52 +01:00
|
|
|
const selectableProviders: ProviderInfoByType = {};
|
|
|
|
const allProviders = Object.entries(
|
|
|
|
reducer.currentReducerState.authentication_providers || {},
|
|
|
|
);
|
2021-11-03 21:30:11 +01:00
|
|
|
for (let index = 0; index < allProviders.length; index++) {
|
2021-11-10 14:20:52 +01:00
|
|
|
const [url, status] = allProviders[index];
|
2021-11-03 21:30:11 +01:00
|
|
|
if ("methods" in status) {
|
2021-11-10 14:20:52 +01:00
|
|
|
status.methods.map((m) => {
|
|
|
|
const type: KnownAuthMethods = m.type as KnownAuthMethods;
|
|
|
|
const values = selectableProviders[type] || [];
|
|
|
|
const isFree = !m.usage_fee || m.usage_fee.endsWith(":0");
|
|
|
|
values.push({ url, cost: m.usage_fee, isFree });
|
|
|
|
selectableProviders[type] = values;
|
|
|
|
});
|
2021-11-03 21:30:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-10 14:20:52 +01:00
|
|
|
const allAuthMethods =
|
|
|
|
reducer.currentReducerState.authentication_methods ?? [];
|
2021-11-03 21:30:11 +01:00
|
|
|
const policies = reducer.currentReducerState.policies ?? [];
|
2021-11-10 14:20:52 +01:00
|
|
|
const policy = policies[policy_index];
|
|
|
|
|
|
|
|
for (
|
|
|
|
let method_index = 0;
|
|
|
|
method_index < allAuthMethods.length;
|
|
|
|
method_index++
|
|
|
|
) {
|
|
|
|
policy?.methods.find((m) => m.authentication_method === method_index)
|
|
|
|
?.provider;
|
2021-11-03 21:30:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function sendChanges(): void {
|
2021-11-10 14:20:52 +01:00
|
|
|
const newMethods: MethodProvider[] = [];
|
2021-11-03 21:30:11 +01:00
|
|
|
allAuthMethods.forEach((method, index) => {
|
2021-11-10 14:20:52 +01:00
|
|
|
const oldValue = policy?.methods.find(
|
|
|
|
(m) => m.authentication_method === index,
|
|
|
|
);
|
2021-11-03 21:30:11 +01:00
|
|
|
if (changedProvider[index] === undefined && oldValue !== undefined) {
|
2021-11-10 14:20:52 +01:00
|
|
|
newMethods.push(oldValue);
|
2021-11-03 21:30:11 +01:00
|
|
|
}
|
2021-11-10 14:20:52 +01:00
|
|
|
if (
|
|
|
|
changedProvider[index] !== undefined &&
|
|
|
|
changedProvider[index] !== ""
|
|
|
|
) {
|
2021-11-03 21:30:11 +01:00
|
|
|
newMethods.push({
|
|
|
|
authentication_method: index,
|
2021-11-10 14:20:52 +01:00
|
|
|
provider: changedProvider[index],
|
|
|
|
});
|
2021-11-03 21:30:11 +01:00
|
|
|
}
|
2021-11-10 14:20:52 +01:00
|
|
|
});
|
|
|
|
confirm(newMethods);
|
2021-11-03 21:30:11 +01:00
|
|
|
}
|
|
|
|
|
2021-11-10 14:20:52 +01:00
|
|
|
return (
|
|
|
|
<AnastasisClientFrame
|
|
|
|
hideNav
|
|
|
|
title={!policy ? "Backup: New Policy" : "Backup: Edit Policy"}
|
|
|
|
>
|
|
|
|
<section class="section">
|
|
|
|
{!policy ? (
|
|
|
|
<p>Creating a new policy #{policy_index}</p>
|
|
|
|
) : (
|
|
|
|
<p>Editing policy #{policy_index}</p>
|
|
|
|
)}
|
|
|
|
{allAuthMethods.map((method, index) => {
|
|
|
|
//take the url from the updated change or from the policy
|
|
|
|
const providerURL =
|
|
|
|
changedProvider[index] === undefined
|
|
|
|
? policy?.methods.find((m) => m.authentication_method === index)
|
|
|
|
?.provider
|
|
|
|
: changedProvider[index];
|
2021-11-03 21:30:11 +01:00
|
|
|
|
2021-11-10 14:20:52 +01:00
|
|
|
const type: KnownAuthMethods = method.type as KnownAuthMethods;
|
|
|
|
function changeProviderTo(url: string): void {
|
|
|
|
const copy = [...changedProvider];
|
|
|
|
copy[index] = url;
|
|
|
|
setChangedProvider(copy);
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
key={index}
|
|
|
|
class="block"
|
|
|
|
style={{ display: "flex", alignItems: "center" }}
|
|
|
|
>
|
|
|
|
<span class="icon">{authMethods[type]?.icon}</span>
|
|
|
|
<span>{method.instructions}</span>
|
|
|
|
<span>
|
|
|
|
<span class="select ">
|
|
|
|
<select
|
|
|
|
onChange={(e) => changeProviderTo(e.currentTarget.value)}
|
|
|
|
value={providerURL ?? ""}
|
|
|
|
>
|
|
|
|
<option key="none" value="">
|
|
|
|
{" "}
|
|
|
|
<< off >>{" "}
|
2021-11-03 21:30:11 +01:00
|
|
|
</option>
|
2021-11-10 14:20:52 +01:00
|
|
|
{selectableProviders[type]?.map((prov) => (
|
|
|
|
<option key={prov.url} value={prov.url}>
|
|
|
|
{prov.url}
|
|
|
|
</option>
|
|
|
|
))}
|
|
|
|
</select>
|
|
|
|
</span>
|
2021-11-03 21:30:11 +01:00
|
|
|
</span>
|
2021-11-10 14:20:52 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
marginTop: "2em",
|
|
|
|
display: "flex",
|
|
|
|
justifyContent: "space-between",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<button class="button" onClick={cancel}>
|
|
|
|
Cancel
|
|
|
|
</button>
|
|
|
|
<span class="buttons">
|
|
|
|
<button class="button" onClick={() => setChangedProvider([])}>
|
|
|
|
Reset
|
|
|
|
</button>
|
|
|
|
<button class="button is-info" onClick={sendChanges}>
|
|
|
|
Confirm
|
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</AnastasisClientFrame>
|
|
|
|
);
|
2021-11-03 21:30:11 +01:00
|
|
|
}
|