captcha
This commit is contained in:
22
frontend/app/package-lock.json
generated
22
frontend/app/package-lock.json
generated
@ -16,13 +16,15 @@
|
||||
"react-device-detect": "^2.2.3",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-redux": "^9.1.0",
|
||||
"react-router-dom": "^6.22.3"
|
||||
"react-router-dom": "^6.22.3",
|
||||
"uuid": "^9.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rsbuild/core": "^0.5.4",
|
||||
"@rsbuild/plugin-react": "^0.5.4",
|
||||
"@types/react": "^18.2.71",
|
||||
"@types/react-dom": "^18.2.22",
|
||||
"@types/uuid": "^9.0.8",
|
||||
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
||||
"@typescript-eslint/parser": "^7.4.0",
|
||||
"eslint": "^8.57.0",
|
||||
@ -711,6 +713,12 @@
|
||||
"resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz",
|
||||
"integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA=="
|
||||
},
|
||||
"node_modules/@types/uuid": {
|
||||
"version": "9.0.8",
|
||||
"resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz",
|
||||
"integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@typescript-eslint/eslint-plugin": {
|
||||
"version": "7.4.0",
|
||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.4.0.tgz",
|
||||
@ -4743,6 +4751,18 @@
|
||||
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/uuid": {
|
||||
"version": "9.0.1",
|
||||
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
|
||||
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
|
||||
"funding": [
|
||||
"https://github.com/sponsors/broofa",
|
||||
"https://github.com/sponsors/ctavan"
|
||||
],
|
||||
"bin": {
|
||||
"uuid": "dist/bin/uuid"
|
||||
}
|
||||
},
|
||||
"node_modules/watchpack": {
|
||||
"version": "2.4.1",
|
||||
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz",
|
||||
|
||||
@ -16,13 +16,15 @@
|
||||
"react-device-detect": "^2.2.3",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-redux": "^9.1.0",
|
||||
"react-router-dom": "^6.22.3"
|
||||
"react-router-dom": "^6.22.3",
|
||||
"uuid": "^9.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rsbuild/core": "^0.5.4",
|
||||
"@rsbuild/plugin-react": "^0.5.4",
|
||||
"@types/react": "^18.2.71",
|
||||
"@types/react-dom": "^18.2.22",
|
||||
"@types/uuid": "^9.0.8",
|
||||
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
||||
"@typescript-eslint/parser": "^7.4.0",
|
||||
"eslint": "^8.57.0",
|
||||
|
||||
@ -1,10 +1,9 @@
|
||||
import React, { createContext } from "react";
|
||||
import { ConfigProvider, message } from "antd";
|
||||
import { message } from "antd";
|
||||
import "./App.css";
|
||||
import HeaderComponent from "./components/HeaderComponent";
|
||||
import { darkTheme, lightTheme, theme } from "./config/style";
|
||||
import { Provider, useSelector } from "react-redux";
|
||||
import { StorePrototype, store } from "./config/store";
|
||||
import { Provider } from "react-redux";
|
||||
import { store } from "./config/store";
|
||||
import { MessageInstance } from "antd/es/message/interface";
|
||||
import AppRoutes from "./pages/AppRoutes";
|
||||
import ThemeProviderWrapper from "./config/ThemeProviderWrapper";
|
||||
|
||||
@ -1,7 +1,18 @@
|
||||
import { Carousel, Form, Input, Menu, MenuProps, Modal, Spin } from "antd";
|
||||
import {
|
||||
Button,
|
||||
Carousel,
|
||||
Form,
|
||||
Image,
|
||||
Input,
|
||||
Menu,
|
||||
MenuProps,
|
||||
Modal,
|
||||
Spin,
|
||||
} from "antd";
|
||||
import {
|
||||
KeyOutlined,
|
||||
LoadingOutlined,
|
||||
ReloadOutlined,
|
||||
UserAddOutlined,
|
||||
} from "@ant-design/icons";
|
||||
import React, { useContext, useEffect, useRef, useState } from "react";
|
||||
@ -16,6 +27,8 @@ import { MessageContext } from "../App";
|
||||
import { store, updateClient, updateToken, updateUser } from "../config/store";
|
||||
import tr from "../config/translation";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
import { v4 as uuidv4 } from "uuid";
|
||||
import { baseUrl } from "../config/baseUrl";
|
||||
|
||||
const AuthModal = (props: {
|
||||
open: boolean;
|
||||
@ -29,6 +42,19 @@ const AuthModal = (props: {
|
||||
const [loginForm] = Form.useForm();
|
||||
const [registerForm] = Form.useForm();
|
||||
|
||||
const [captchaId, setCaptchaId] = useState("");
|
||||
const [captchaPic, setCaptchaPic] = useState("");
|
||||
|
||||
const fetchCaptcha = async () => {
|
||||
registerForm.setFieldValue(["captcha", "prompt"], "");
|
||||
const id = uuidv4();
|
||||
setCaptchaId(id);
|
||||
const res = await fetch(`${baseUrl}/auth/captcha/${id}`);
|
||||
const imageBlob = await res.blob();
|
||||
const imageObjectURL = URL.createObjectURL(imageBlob);
|
||||
setCaptchaPic(imageObjectURL);
|
||||
};
|
||||
|
||||
const { data, refetch, isFetching, isError } = useGetUserQuery({});
|
||||
useEffect(() => {
|
||||
if (!isFetching && !isError) {
|
||||
@ -36,12 +62,18 @@ const AuthModal = (props: {
|
||||
}
|
||||
}, [data, isFetching, useGetUserQuery]);
|
||||
|
||||
const { data: clientData, isFetching: isFetchingClient } = useGetClientQuery(
|
||||
{}
|
||||
);
|
||||
const {
|
||||
data: clientData,
|
||||
isFetching: isFetchingClient,
|
||||
isError: isErrorClient,
|
||||
} = useGetClientQuery({});
|
||||
useEffect(() => {
|
||||
if (!isFetchingClient) {
|
||||
store.dispatch(updateClient(clientData.id));
|
||||
if (isErrorClient) {
|
||||
store.dispatch(updateClient(null));
|
||||
} else {
|
||||
store.dispatch(updateClient(clientData.id));
|
||||
}
|
||||
}
|
||||
}, [clientData, isFetchingClient, useGetClientQuery]);
|
||||
|
||||
@ -70,7 +102,7 @@ const AuthModal = (props: {
|
||||
.then(() => props.setOpen(false))
|
||||
.then(() => navigate("/dashboard"))
|
||||
.then(() => props.setDrawerOpen(false))
|
||||
.catch(() => messageApi.error(tr("Login failed!")));
|
||||
.catch((e) => messageApi.error(tr(e.data.detail)));
|
||||
};
|
||||
|
||||
const submitRegisterForm = (formData: {
|
||||
@ -78,12 +110,19 @@ const AuthModal = (props: {
|
||||
name: string | undefined;
|
||||
password: string;
|
||||
password2: string;
|
||||
captcha: { id: string; prompt: string };
|
||||
}) => {
|
||||
formData.captcha.id = captchaId;
|
||||
registerUser(formData)
|
||||
.unwrap()
|
||||
.then(() => submitLoginForm(formData))
|
||||
.then(() => props.setOpen(false))
|
||||
.catch(() => messageApi.error(tr("Registration failed!")));
|
||||
.then(() => setCaptchaPic(""))
|
||||
.then(() => registerForm.resetFields())
|
||||
.catch((e) => {
|
||||
messageApi.error(tr(e.data.detail));
|
||||
fetchCaptcha();
|
||||
});
|
||||
};
|
||||
|
||||
const items: MenuProps["items"] = [
|
||||
@ -219,9 +258,37 @@ const AuthModal = (props: {
|
||||
},
|
||||
}),
|
||||
]}
|
||||
>
|
||||
<Input type="password" />
|
||||
</Form.Item>
|
||||
<Form.Item label={tr("Captcha")}>
|
||||
{captchaPic ? (
|
||||
<img
|
||||
onClick={() => fetchCaptcha()}
|
||||
src={captchaPic}
|
||||
alt={tr("Click to refresh")}
|
||||
/>
|
||||
) : (
|
||||
<Button
|
||||
onClick={() => fetchCaptcha()}
|
||||
icon={<ReloadOutlined />}
|
||||
>
|
||||
{tr("Fetch captcha")}
|
||||
</Button>
|
||||
)}
|
||||
</Form.Item>
|
||||
<Form.Item
|
||||
name={["captcha", "prompt"]}
|
||||
label={tr("Captcha prompt")}
|
||||
rules={[
|
||||
{
|
||||
required: true,
|
||||
message: tr("Please enter captcha!"),
|
||||
},
|
||||
]}
|
||||
>
|
||||
<Input
|
||||
type="password"
|
||||
disabled={!captchaId}
|
||||
onPressEnter={() => registerForm.submit()}
|
||||
/>
|
||||
</Form.Item>
|
||||
|
||||
@ -39,7 +39,7 @@ export type StorePrototype = {
|
||||
|
||||
export const updateToken = createAction<string>("auth/updateToken");
|
||||
export const getLocalToken = createAction("auth/getLocalToken");
|
||||
export const updateClient = createAction<string>("auth/updateClient");
|
||||
export const updateClient = createAction<string | null>("auth/updateClient");
|
||||
export const getLocalClient = createAction("auth/getLocalClient");
|
||||
export const updateUser = createAction<User>("auth/updateUser");
|
||||
export const logOut = createAction("auth/logOut");
|
||||
@ -67,8 +67,12 @@ export const store = configureStore({
|
||||
}
|
||||
});
|
||||
builder.addCase(updateClient, (state, action) => {
|
||||
state.clientId = action.payload;
|
||||
localStorage.setItem("clientId", action.payload);
|
||||
if (action.payload) {
|
||||
state.clientId = action.payload;
|
||||
localStorage.setItem("clientId", action.payload);
|
||||
} else {
|
||||
localStorage.removeItem("clientId");
|
||||
}
|
||||
});
|
||||
builder.addCase(getLocalClient, (state) => {
|
||||
const clientId: string | null = localStorage.getItem("clientId");
|
||||
@ -95,7 +99,10 @@ export const store = configureStore({
|
||||
if (language) {
|
||||
state.language = language;
|
||||
} else {
|
||||
state.language = "en";
|
||||
const clientLanguage = navigator.language.startsWith("en-")
|
||||
? "en"
|
||||
: "ru";
|
||||
state.language = clientLanguage;
|
||||
}
|
||||
});
|
||||
builder.addCase(setTheme, (state, action) => {
|
||||
|
||||
@ -22,6 +22,10 @@ export const QueueApi = createApi({
|
||||
if (token) {
|
||||
headers.set("authorization", `Bearer ${token}`);
|
||||
}
|
||||
const clientID = (getState() as RootState).auth.clientId;
|
||||
if (clientID) {
|
||||
headers.set("X-Client-Id", clientID);
|
||||
}
|
||||
return headers;
|
||||
},
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user