mirror of
https://github.com/idanoo/autobrr
synced 2025-07-24 01:09:13 +00:00
489 lines
14 KiB
TypeScript
489 lines
14 KiB
TypeScript
/*
|
|
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import { useMutation, useQueryClient } from "@tanstack/react-query";
|
|
import { toast } from "react-hot-toast";
|
|
import { XMarkIcon } from "@heroicons/react/24/solid";
|
|
import type { FieldProps } from "formik";
|
|
import { Field, FieldArray, FormikErrors, FormikValues } from "formik";
|
|
import { ExclamationTriangleIcon } from "@heroicons/react/24/outline";
|
|
import Select, { components, ControlProps, InputProps, MenuProps, OptionProps } from "react-select";
|
|
import { Dialog } from "@headlessui/react";
|
|
|
|
import { IrcAuthMechanismTypeOptions, OptionBasicTyped } from "@domain/constants";
|
|
import { ircKeys } from "@screens/settings/Irc";
|
|
import { APIClient } from "@api/APIClient";
|
|
import { NumberFieldWide, PasswordFieldWide, SwitchGroupWide, SwitchGroupWideRed, TextFieldWide } from "@components/inputs";
|
|
import { SlideOver } from "@components/panels";
|
|
import Toast from "@components/notifications/Toast";
|
|
|
|
interface ChannelsFieldArrayProps {
|
|
channels: IrcChannel[];
|
|
}
|
|
|
|
const ChannelsFieldArray = ({ channels }: ChannelsFieldArrayProps) => (
|
|
<div className="p-6">
|
|
<FieldArray name="channels">
|
|
{({ remove, push }) => (
|
|
<div className="flex flex-col space-y-2 border-2 border-dashed dark:border-gray-700 p-4">
|
|
{channels && channels.length > 0 ? (
|
|
channels.map((_channel: IrcChannel, index: number) => (
|
|
<div key={index} className="flex justify-between">
|
|
<div className="flex">
|
|
<Field name={`channels.${index}.name`}>
|
|
{({ field }: FieldProps) => (
|
|
<input
|
|
{...field}
|
|
type="text"
|
|
value={field.value ?? ""}
|
|
onChange={field.onChange}
|
|
placeholder="#Channel"
|
|
className="mr-4 dark:bg-gray-700 focus:ring-blue-500 dark:focus:ring-blue-500 focus:border-blue-500 dark:focus:border-blue-500 border-gray-300 dark:border-gray-600 block w-full shadow-sm sm:text-sm dark:text-white rounded-md"
|
|
/>
|
|
)}
|
|
</Field>
|
|
|
|
<Field name={`channels.${index}.password`}>
|
|
{({ field }: FieldProps) => (
|
|
<input
|
|
{...field}
|
|
type="text"
|
|
value={field.value ?? ""}
|
|
onChange={field.onChange}
|
|
placeholder="Password"
|
|
className="mr-4 dark:bg-gray-700 focus:ring-blue-500 dark:focus:ring-blue-500 focus:border-blue-500 dark:focus:border-blue-500 border-gray-300 dark:border-gray-600 block w-full shadow-sm sm:text-sm dark:text-white rounded-md"
|
|
/>
|
|
)}
|
|
</Field>
|
|
</div>
|
|
|
|
<button
|
|
type="button"
|
|
className="bg-white dark:bg-gray-700 rounded-md text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-blue-500 dark:focus:ring-blue-500"
|
|
onClick={() => remove(index)}
|
|
>
|
|
<span className="sr-only">Remove</span>
|
|
<XMarkIcon className="h-6 w-6" aria-hidden="true" />
|
|
</button>
|
|
</div>
|
|
))
|
|
) : (
|
|
<span className="text-center text-sm text-grey-darker dark:text-white">
|
|
No channels!
|
|
</span>
|
|
)}
|
|
<button
|
|
type="button"
|
|
className="border dark:border-gray-600 dark:bg-gray-700 my-4 px-4 py-2 text-sm text-gray-700 dark:text-white hover:bg-gray-50 dark:hover:bg-gray-600 rounded self-center text-center"
|
|
onClick={() => push({ name: "", password: "" })}
|
|
>
|
|
Add Channel
|
|
</button>
|
|
</div>
|
|
)}
|
|
</FieldArray>
|
|
</div>
|
|
);
|
|
|
|
interface IrcNetworkAddFormValues {
|
|
name: string;
|
|
enabled: boolean;
|
|
server : string;
|
|
port: number;
|
|
tls: boolean;
|
|
pass: string;
|
|
nick: string;
|
|
auth: IrcAuth;
|
|
channels: IrcChannel[];
|
|
}
|
|
|
|
interface AddFormProps {
|
|
isOpen: boolean;
|
|
toggle: () => void;
|
|
}
|
|
|
|
export function IrcNetworkAddForm({ isOpen, toggle }: AddFormProps) {
|
|
const queryClient = useQueryClient();
|
|
|
|
const mutation = useMutation({
|
|
mutationFn: (network: IrcNetwork) => APIClient.irc.createNetwork(network),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ircKeys.lists() });
|
|
|
|
toast.custom((t) => <Toast type="success" body="IRC Network added. Please allow up to 30 seconds for the network to come online." t={t} />);
|
|
toggle();
|
|
},
|
|
onError: () => {
|
|
toast.custom((t) => <Toast type="error" body="IRC Network could not be added" t={t} />);
|
|
}
|
|
});
|
|
|
|
const onSubmit = (data: unknown) => mutation.mutate(data as IrcNetwork);
|
|
|
|
const initialValues: IrcNetworkAddFormValues = {
|
|
name: "",
|
|
enabled: true,
|
|
server: "",
|
|
port: 6667,
|
|
tls: false,
|
|
pass: "",
|
|
nick: "",
|
|
auth: {
|
|
mechanism: "SASL_PLAIN",
|
|
account: ""
|
|
},
|
|
channels: []
|
|
};
|
|
|
|
return (
|
|
<SlideOver
|
|
type="CREATE"
|
|
title="Network"
|
|
isOpen={isOpen}
|
|
toggle={toggle}
|
|
onSubmit={onSubmit}
|
|
initialValues={initialValues}
|
|
validate={validateNetwork}
|
|
>
|
|
{(values) => (
|
|
<div className="flex flex-col space-y-4 px-1 py-6 sm:py-0 sm:space-y-0">
|
|
<div className="flex justify-center dark:bg-red-300 text-sm font-bold text-center p-4 py-8 dark:text-red-800"><span className="flex"><ExclamationTriangleIcon className="mr-2 h-6 w-6" /> ADD NETWORKS VIA INDEXERS! ONLY USE THIS IF YOU DELETED NETWORKS</span></div>
|
|
|
|
<TextFieldWide
|
|
name="name"
|
|
label="Name"
|
|
placeholder="Name"
|
|
required={true}
|
|
/>
|
|
|
|
<SwitchGroupWide name="enabled" label="Enabled" />
|
|
<TextFieldWide
|
|
name="server"
|
|
label="Server"
|
|
placeholder="Address: Eg irc.server.net"
|
|
required={true}
|
|
/>
|
|
<NumberFieldWide
|
|
name="port"
|
|
label="Port"
|
|
placeholder="Eg 6667"
|
|
required={true}
|
|
/>
|
|
<SwitchGroupWide name="tls" label="TLS" />
|
|
<PasswordFieldWide
|
|
name="pass"
|
|
label="Password"
|
|
help="Network password"
|
|
/>
|
|
<TextFieldWide
|
|
name="nick"
|
|
label="Nick"
|
|
placeholder="bot nick"
|
|
required={true}
|
|
/>
|
|
<TextFieldWide
|
|
name="auth.account"
|
|
label="Auth Account"
|
|
placeholder="Auth Account"
|
|
required={true}
|
|
/>
|
|
<PasswordFieldWide
|
|
name="auth.password"
|
|
label="Auth Password"
|
|
/>
|
|
<PasswordFieldWide name="invite_command" label="Invite command" />
|
|
|
|
<ChannelsFieldArray channels={values.channels} />
|
|
</div>
|
|
)}
|
|
</SlideOver>
|
|
);
|
|
}
|
|
|
|
const validateNetwork = (values: FormikValues) => {
|
|
const errors = {} as FormikErrors<FormikValues>;
|
|
|
|
if (!values.name) {
|
|
errors.name = "Required";
|
|
}
|
|
|
|
if (!values.server) {
|
|
errors.server = "Required";
|
|
}
|
|
|
|
if (!values.port) {
|
|
errors.port = "Required";
|
|
}
|
|
|
|
if (!values.nick) {
|
|
errors.nick = "Required";
|
|
}
|
|
|
|
return errors;
|
|
};
|
|
|
|
interface IrcNetworkUpdateFormValues {
|
|
id: number;
|
|
name: string;
|
|
enabled: boolean;
|
|
server: string;
|
|
port: number;
|
|
tls: boolean;
|
|
pass: string;
|
|
nick: string;
|
|
auth?: IrcAuth;
|
|
invite_command: string;
|
|
channels: Array<IrcChannel>;
|
|
}
|
|
|
|
interface IrcNetworkUpdateFormProps {
|
|
isOpen: boolean;
|
|
toggle: () => void;
|
|
network: IrcNetwork;
|
|
}
|
|
|
|
export function IrcNetworkUpdateForm({
|
|
isOpen,
|
|
toggle,
|
|
network
|
|
}: IrcNetworkUpdateFormProps) {
|
|
const queryClient = useQueryClient();
|
|
|
|
const updateMutation = useMutation({
|
|
mutationFn: (network: IrcNetwork) => APIClient.irc.updateNetwork(network),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ircKeys.lists() });
|
|
|
|
toast.custom((t) => <Toast type="success" body={`${network.name} was updated successfully`} t={t} />);
|
|
|
|
toggle();
|
|
}
|
|
});
|
|
|
|
const onSubmit = (data: unknown) => updateMutation.mutate(data as IrcNetwork);
|
|
|
|
const deleteMutation = useMutation({
|
|
mutationFn: (id: number) => APIClient.irc.deleteNetwork(id),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ircKeys.lists() });
|
|
|
|
toast.custom((t) => <Toast type="success" body={`${network.name} was deleted.`} t={t} />);
|
|
|
|
toggle();
|
|
}
|
|
});
|
|
|
|
const deleteAction = () => deleteMutation.mutate(network.id);
|
|
|
|
const initialValues: IrcNetworkUpdateFormValues = {
|
|
id: network.id,
|
|
name: network.name,
|
|
enabled: network.enabled,
|
|
server: network.server,
|
|
port: network.port,
|
|
tls: network.tls,
|
|
nick: network.nick,
|
|
pass: network.pass,
|
|
auth: network.auth,
|
|
invite_command: network.invite_command,
|
|
channels: network.channels
|
|
};
|
|
|
|
return (
|
|
<SlideOver
|
|
type="UPDATE"
|
|
title="Network"
|
|
isOpen={isOpen}
|
|
toggle={toggle}
|
|
onSubmit={onSubmit}
|
|
deleteAction={deleteAction}
|
|
initialValues={initialValues}
|
|
validate={validateNetwork}
|
|
>
|
|
{(values) => (
|
|
<div className="flex flex-col space-y-4 px-1 py-6 sm:py-0 sm:space-y-0">
|
|
<TextFieldWide
|
|
name="name"
|
|
label="Name"
|
|
placeholder="Name"
|
|
required={true}
|
|
/>
|
|
|
|
<SwitchGroupWideRed name="enabled" label="Enabled" />
|
|
<TextFieldWide
|
|
name="server"
|
|
label="Server"
|
|
placeholder="Address: Eg irc.server.net"
|
|
required={true}
|
|
/>
|
|
<NumberFieldWide
|
|
name="port"
|
|
label="Port"
|
|
placeholder="Eg 6667"
|
|
required={true}
|
|
/>
|
|
|
|
<SwitchGroupWide name="tls" label="TLS" />
|
|
|
|
<PasswordFieldWide
|
|
name="pass"
|
|
label="Password"
|
|
help="Network password, not commonly used."
|
|
/>
|
|
|
|
<TextFieldWide
|
|
name="nick"
|
|
label="Nick"
|
|
placeholder="nick"
|
|
required={true}
|
|
/>
|
|
|
|
<div className="border-t border-gray-200 dark:border-gray-700 py-5">
|
|
<div className="px-4 space-y-1 mb-8">
|
|
<Dialog.Title className="text-lg font-medium text-gray-900 dark:text-white">Identification</Dialog.Title>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400">
|
|
Identify with SASL or NickServ. Most networks support SASL but some don't.
|
|
</p>
|
|
</div>
|
|
|
|
<SelectField<IrcAuthMechanism>
|
|
name="auth.mechanism"
|
|
label="Mechanism"
|
|
options={IrcAuthMechanismTypeOptions}
|
|
/>
|
|
|
|
<TextFieldWide
|
|
name="auth.account"
|
|
label="Account"
|
|
placeholder="Auth Account"
|
|
help="NickServ / SASL account. For grouped nicks try the main."
|
|
/>
|
|
|
|
<PasswordFieldWide
|
|
name="auth.password"
|
|
label="Password"
|
|
help="NickServ / SASL password."
|
|
/>
|
|
|
|
</div>
|
|
|
|
<PasswordFieldWide name="invite_command" label="Invite command" />
|
|
|
|
<ChannelsFieldArray channels={values.channels} />
|
|
</div>
|
|
)}
|
|
</SlideOver>
|
|
);
|
|
}
|
|
|
|
interface SelectFieldProps<T> {
|
|
name: string;
|
|
label: string;
|
|
options: OptionBasicTyped<T>[]
|
|
}
|
|
|
|
function SelectField<T>({ name, label, options }: SelectFieldProps<T>) {
|
|
return (
|
|
<div className="flex items-center justify-between space-y-1 px-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4">
|
|
<div>
|
|
<label
|
|
htmlFor={name}
|
|
className="block text-sm font-medium text-gray-900 dark:text-white"
|
|
>
|
|
{label}
|
|
</label>
|
|
</div>
|
|
<div className="sm:col-span-2">
|
|
<Field name={name} type="select">
|
|
{({
|
|
field,
|
|
form: { setFieldValue, resetForm }
|
|
}: FieldProps) => (
|
|
<Select
|
|
{...field}
|
|
id={name}
|
|
isClearable={true}
|
|
isSearchable={true}
|
|
components={{
|
|
Input,
|
|
Control,
|
|
Menu,
|
|
Option
|
|
}}
|
|
placeholder="Choose a type"
|
|
styles={{
|
|
singleValue: (base) => ({
|
|
...base,
|
|
color: "unset"
|
|
})
|
|
}}
|
|
theme={(theme) => ({
|
|
...theme,
|
|
spacing: {
|
|
...theme.spacing,
|
|
controlHeight: 30,
|
|
baseUnit: 2
|
|
}
|
|
})}
|
|
value={field?.value && options.find(o => o.value == field?.value)}
|
|
onChange={(option) => {
|
|
resetForm();
|
|
|
|
// const opt = option as SelectOption;
|
|
// setFieldValue("name", option?.label ?? "")
|
|
setFieldValue(
|
|
field.name,
|
|
option.value ?? ""
|
|
);
|
|
}}
|
|
options={options}
|
|
/>
|
|
)}
|
|
</Field>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const Input = (props: InputProps) => {
|
|
return (
|
|
<components.Input
|
|
{...props}
|
|
inputClassName="outline-none border-none shadow-none focus:ring-transparent"
|
|
className="text-gray-400 dark:text-gray-100"
|
|
children={props.children}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const Control = (props: ControlProps) => {
|
|
return (
|
|
<components.Control
|
|
{...props}
|
|
className="p-1 block w-full dark:bg-gray-800 border border-gray-300 dark:border-gray-700 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500 dark:text-gray-100 sm:text-sm"
|
|
children={props.children}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const Menu = (props: MenuProps) => {
|
|
return (
|
|
<components.Menu
|
|
{...props}
|
|
className="dark:bg-gray-800 border border-gray-300 dark:border-gray-700 dark:text-gray-400 rounded-md shadow-sm"
|
|
children={props.children}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const Option = (props: OptionProps) => {
|
|
return (
|
|
<components.Option
|
|
{...props}
|
|
className="dark:text-gray-400 dark:bg-gray-800 dark:hover:bg-gray-900 dark:focus:bg-gray-900"
|
|
children={props.children}
|
|
/>
|
|
);
|
|
};
|