mirror of
https://github.com/wgh136/nysoure.git
synced 2025-09-27 12:17:24 +00:00
92 lines
3.4 KiB
TypeScript
92 lines
3.4 KiB
TypeScript
import { useTranslation } from "react-i18next";
|
|
import { app } from "../app"
|
|
import { ErrorAlert, InfoAlert } from "../components/alert"
|
|
import { useEffect, useState } from "react";
|
|
import { ServerConfig } from "../network/models";
|
|
import Loading from "../components/loading";
|
|
import Input from "../components/input";
|
|
import { network } from "../network/network";
|
|
import showToast from "../components/toast";
|
|
import Button from "../components/button";
|
|
|
|
export default function ManageServerConfigPage() {
|
|
const { t } = useTranslation();
|
|
|
|
const [config, setConfig] = useState<ServerConfig | null>(null);
|
|
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
|
|
useEffect(() => {
|
|
network.getServerConfig().then((res) => {
|
|
if (res.success) {
|
|
setConfig(res.data!);
|
|
} else {
|
|
showToast({
|
|
message: res.message,
|
|
type: "error",
|
|
})
|
|
}
|
|
})
|
|
}, []);
|
|
|
|
if (!app.user) {
|
|
return <ErrorAlert className={"m-4"} message={t("You are not logged in. Please log in to access this page.")} />
|
|
}
|
|
|
|
if (!app.user?.is_admin) {
|
|
return <ErrorAlert className={"m-4"} message={t("You are not authorized to access this page.")} />
|
|
}
|
|
|
|
if (config == null) {
|
|
return <Loading />
|
|
}
|
|
|
|
const handleSubmit = async (e: React.FormEvent<HTMLFormElement>) => {
|
|
e.preventDefault();
|
|
if (isLoading) {
|
|
return;
|
|
}
|
|
setIsLoading(true);
|
|
const res = await network.setServerConfig(config);
|
|
if (res.success) {
|
|
showToast({
|
|
message: t("Update server config successfully"),
|
|
type: "success",
|
|
});
|
|
} else {
|
|
showToast({
|
|
message: res.message,
|
|
type: "error",
|
|
});
|
|
}
|
|
setIsLoading(false);
|
|
};
|
|
|
|
return <form className="px-4" onSubmit={handleSubmit}>
|
|
<Input type="number" value={config.max_uploading_size_in_mb.toString()} label="Max uploading size (MB)" onChange={(e) => {
|
|
setConfig({...config, max_uploading_size_in_mb: parseInt(e.target.value) })
|
|
}}></Input>
|
|
<Input type="number" value={config.max_file_size_in_mb.toString()} label="Max file size (MB)" onChange={(e) => {
|
|
setConfig({...config, max_file_size_in_mb: parseInt(e.target.value) })
|
|
}}></Input>
|
|
<Input type="number" value={config.max_downloads_per_day_for_single_ip.toString()} label="Max downloads per day for single IP" onChange={(e) => {
|
|
setConfig({...config, max_downloads_per_day_for_single_ip: parseInt(e.target.value) })
|
|
}}></Input>
|
|
<fieldset className="fieldset w-full">
|
|
<legend className="fieldset-legend">Allow register</legend>
|
|
<input type="checkbox" checked={config.allow_register} className="toggle-primary toggle" onChange={(e) => {
|
|
setConfig({ ...config, allow_register: e.target.checked })
|
|
}} />
|
|
</fieldset>
|
|
<Input type="text" value={config.cloudflare_turnstile_site_key} label="Cloudflare Turnstile Site Key" onChange={(e) => {
|
|
setConfig({...config, cloudflare_turnstile_site_key: e.target.value })
|
|
}}></Input>
|
|
<Input type="text" value={config.cloudflare_turnstile_secret_key} label="Cloudflare Turnstile Secret Key" onChange={(e) => {
|
|
setConfig({...config, cloudflare_turnstile_secret_key: e.target.value })
|
|
}}></Input>
|
|
<InfoAlert className="my-2" message="If the cloudflare turnstile keys are not empty, the turnstile will be used for register and download." />
|
|
<div className="flex justify-end">
|
|
<Button className="btn-accent shadow" isLoading={isLoading}>{t("Submit")}</Button>
|
|
</div>
|
|
</form>
|
|
} |