mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
refactor: move login from function to middleware
This commit is contained in:
parent
19dbd69fd5
commit
0bf00b11e5
5 changed files with 96 additions and 92 deletions
|
@ -13,6 +13,7 @@ export const ENDPOINTS = {
|
||||||
licensed: `${API_PREFIX}/release/streaming/platform`,
|
licensed: `${API_PREFIX}/release/streaming/platform`,
|
||||||
},
|
},
|
||||||
user: {
|
user: {
|
||||||
|
auth: `${API_PREFIX}/auth/signIn`,
|
||||||
profile: `${API_PREFIX}/profile`,
|
profile: `${API_PREFIX}/profile`,
|
||||||
bookmark: `${API_PREFIX}/profile/list`,
|
bookmark: `${API_PREFIX}/profile/list`,
|
||||||
history: `${API_PREFIX}/history`,
|
history: `${API_PREFIX}/history`,
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
import { NextResponse, NextRequest } from "next/server";
|
|
||||||
import { authorize } from "#/api/utils";
|
|
||||||
import { API_URL } from "#/api/config";
|
|
||||||
|
|
||||||
export async function POST(request: NextRequest) {
|
|
||||||
const response = await authorize(`${API_URL}/auth/signIn`, await request.json());
|
|
||||||
if (!response) {
|
|
||||||
return NextResponse.json({ message: "Server Error" }, { status: 500 });
|
|
||||||
}
|
|
||||||
if (!response.profile) {
|
|
||||||
return NextResponse.json({ message: "Profile not found" }, { status: 404 });
|
|
||||||
}
|
|
||||||
return NextResponse.json(response);
|
|
||||||
}
|
|
|
@ -4,7 +4,6 @@ export const HEADERS = {
|
||||||
"Content-Type": "application/json; charset=UTF-8",
|
"Content-Type": "application/json; charset=UTF-8",
|
||||||
};
|
};
|
||||||
|
|
||||||
// Types for the result object with discriminated union
|
|
||||||
type Success<T> = {
|
type Success<T> = {
|
||||||
data: T;
|
data: T;
|
||||||
error: null;
|
error: null;
|
||||||
|
@ -17,7 +16,6 @@ type Failure<E> = {
|
||||||
|
|
||||||
type Result<T, E = Error> = Success<T> | Failure<E>;
|
type Result<T, E = Error> = Success<T> | Failure<E>;
|
||||||
|
|
||||||
// Main wrapper function
|
|
||||||
export async function tryCatch<T, E = Error>(
|
export async function tryCatch<T, E = Error>(
|
||||||
promise: Promise<T>
|
promise: Promise<T>
|
||||||
): Promise<Result<T, E>> {
|
): Promise<Result<T, E>> {
|
||||||
|
@ -70,7 +68,7 @@ export async function tryCatchAPI<T, E = Error>(
|
||||||
|
|
||||||
return { data, error: null };
|
return { data, error: null };
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return { data: null, error: error};
|
return { data: null, error: error };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,7 +82,8 @@ export const useSWRfetcher = async (url: string) => {
|
||||||
|
|
||||||
export const fetchDataViaGet = async (
|
export const fetchDataViaGet = async (
|
||||||
url: string,
|
url: string,
|
||||||
API_V2: string | boolean = false
|
API_V2: string | boolean = false,
|
||||||
|
addHeaders?: Record<string, any>
|
||||||
) => {
|
) => {
|
||||||
if (API_V2) {
|
if (API_V2) {
|
||||||
HEADERS["API-Version"] = "v2";
|
HEADERS["API-Version"] = "v2";
|
||||||
|
@ -92,7 +91,7 @@ export const fetchDataViaGet = async (
|
||||||
|
|
||||||
const { data, error } = await tryCatchAPI(
|
const { data, error } = await tryCatchAPI(
|
||||||
fetch(url, {
|
fetch(url, {
|
||||||
headers: HEADERS,
|
headers: { ...HEADERS, ...addHeaders },
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -103,54 +102,21 @@ export const fetchDataViaPost = async (
|
||||||
url: string,
|
url: string,
|
||||||
body: string,
|
body: string,
|
||||||
API_V2: string | boolean = false,
|
API_V2: string | boolean = false,
|
||||||
contentType: string = ""
|
addHeaders?: Record<string, any>
|
||||||
) => {
|
) => {
|
||||||
if (API_V2) {
|
if (API_V2) {
|
||||||
HEADERS["API-Version"] = "v2";
|
HEADERS["API-Version"] = "v2";
|
||||||
}
|
}
|
||||||
if (contentType != "") {
|
|
||||||
HEADERS["Content-Type"] = contentType;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
const { data, error } = await tryCatchAPI(
|
||||||
const response = await fetch(url, {
|
fetch(url, {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
headers: HEADERS,
|
|
||||||
body: body,
|
body: body,
|
||||||
});
|
headers: { ...HEADERS, ...addHeaders },
|
||||||
if (response.status !== 200) {
|
})
|
||||||
return null;
|
);
|
||||||
}
|
|
||||||
const data = await response.json();
|
|
||||||
return data;
|
|
||||||
} catch (error) {
|
|
||||||
console.log(error);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export const authorize = async (
|
return { data, error };
|
||||||
url: string,
|
|
||||||
data: { login: string; password: string }
|
|
||||||
) => {
|
|
||||||
try {
|
|
||||||
const response = await fetch(
|
|
||||||
`${url}?login=${data.login}&password=${data.password}`,
|
|
||||||
{
|
|
||||||
method: "POST",
|
|
||||||
headers: {
|
|
||||||
"User-Agent": USER_AGENT,
|
|
||||||
Sign: "9aa5c7af74e8cd70c86f7f9587bde23d",
|
|
||||||
"Content-Type": "application/x-www-form-urlencoded",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
);
|
|
||||||
if (response.status !== 200) {
|
|
||||||
throw new Error("Error authorizing user");
|
|
||||||
}
|
|
||||||
return await response.json();
|
|
||||||
} catch (error) {
|
|
||||||
return error;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export function setJWT(user_id: number | string, jwt: string) {
|
export function setJWT(user_id: number | string, jwt: string) {
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
"use client";
|
"use client";
|
||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
import { useUserStore } from "#/store/auth";
|
import { useUserStore } from "#/store/auth";
|
||||||
import { setJWT } from "#/api/utils";
|
import { setJWT, tryCatchAPI } from "#/api/utils";
|
||||||
import { useRouter, useSearchParams } from "next/navigation";
|
import { useRouter, useSearchParams } from "next/navigation";
|
||||||
|
import { useThemeMode } from "flowbite-react";
|
||||||
|
import { toast } from "react-toastify";
|
||||||
|
import { ENDPOINTS } from "#/api/config";
|
||||||
|
|
||||||
export function LoginPage() {
|
export function LoginPage() {
|
||||||
const [login, setLogin] = useState("");
|
const [login, setLogin] = useState("");
|
||||||
|
@ -12,37 +15,78 @@ export function LoginPage() {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const searchParams = useSearchParams();
|
const searchParams = useSearchParams();
|
||||||
const redirect = searchParams.get("redirect") || null;
|
const redirect = searchParams.get("redirect") || null;
|
||||||
|
const theme = useThemeMode();
|
||||||
|
const [isSending, setIsSending] = useState(false);
|
||||||
|
|
||||||
function submit(e) {
|
async function submit(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
fetch("/api/profile/login", {
|
setIsSending(true);
|
||||||
method: "POST",
|
|
||||||
headers: {
|
const tid = toast.loading("Выполняем вход...", {
|
||||||
"Content-Type": "application/json",
|
position: "bottom-center",
|
||||||
},
|
hideProgressBar: true,
|
||||||
body: JSON.stringify({
|
closeOnClick: false,
|
||||||
login: login,
|
pauseOnHover: false,
|
||||||
password: password,
|
draggable: false,
|
||||||
}),
|
theme: theme.mode == "light" ? "light" : "dark",
|
||||||
})
|
});
|
||||||
.then((response) => {
|
|
||||||
if (response.ok) {
|
const { data, error } = await tryCatchAPI(
|
||||||
return response.json();
|
fetch(`${ENDPOINTS.user.auth}?login=${login}&password=${password}`, {
|
||||||
} else {
|
method: "POST",
|
||||||
alert("Ошибка получения пользователя.");
|
headers: {
|
||||||
}
|
Sign: "9aa5c7af74e8cd70c86f7f9587bde23d",
|
||||||
|
"Content-Type": "application/x-www-form-urlencoded",
|
||||||
|
},
|
||||||
})
|
})
|
||||||
.then((data) => {
|
);
|
||||||
if (data.profileToken) {
|
|
||||||
userStore.login(data.profile, data.profileToken.token);
|
if (error) {
|
||||||
if (remember) {
|
let message = `Ошибка получения пользователя, code: ${error.code}`
|
||||||
setJWT(data.profile.id, data.profileToken.token);
|
if (error.code == 2) {
|
||||||
}
|
message = "Такого пользователя не существует"
|
||||||
router.push("/");
|
}
|
||||||
} else {
|
if (error.code == 3) {
|
||||||
alert("Неверные данные.");
|
message = "Неправильно указан логин и/или пароль"
|
||||||
}
|
}
|
||||||
|
toast.update(tid, {
|
||||||
|
render: message,
|
||||||
|
type: "error",
|
||||||
|
autoClose: 2500,
|
||||||
|
isLoading: false,
|
||||||
|
closeOnClick: true,
|
||||||
|
draggable: true,
|
||||||
});
|
});
|
||||||
|
setIsSending(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!data.profileToken) {
|
||||||
|
toast.update(tid, {
|
||||||
|
render: "Не удалось войти в аккаунт",
|
||||||
|
type: "error",
|
||||||
|
autoClose: 2500,
|
||||||
|
isLoading: false,
|
||||||
|
closeOnClick: true,
|
||||||
|
draggable: true,
|
||||||
|
});
|
||||||
|
setIsSending(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
userStore.login(data.profile, data.profileToken.token);
|
||||||
|
if (remember) {
|
||||||
|
setJWT(data.profile.id, data.profileToken.token);
|
||||||
|
}
|
||||||
|
|
||||||
|
toast.update(tid, {
|
||||||
|
render: "Вход успешен!",
|
||||||
|
type: "success",
|
||||||
|
autoClose: 2500,
|
||||||
|
isLoading: false,
|
||||||
|
closeOnClick: true,
|
||||||
|
draggable: true,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
@ -53,7 +97,7 @@ export function LoginPage() {
|
||||||
}, [userStore.user]);
|
}, [userStore.user]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section className="bg-gray-50 dark:bg-gray-900">
|
<section>
|
||||||
<div className="flex flex-col items-center justify-center px-6 py-8 mx-auto md:h-screen lg:py-0">
|
<div className="flex flex-col items-center justify-center px-6 py-8 mx-auto md:h-screen lg:py-0">
|
||||||
<div className="w-full bg-white rounded-lg shadow dark:border md:mt-0 sm:max-w-md xl:p-0 dark:bg-gray-800 dark:border-gray-700">
|
<div className="w-full bg-white rounded-lg shadow dark:border md:mt-0 sm:max-w-md xl:p-0 dark:bg-gray-800 dark:border-gray-700">
|
||||||
<div className="p-6 space-y-4 md:space-y-6 sm:p-8">
|
<div className="p-6 space-y-4 md:space-y-6 sm:p-8">
|
||||||
|
|
|
@ -49,26 +49,33 @@ export default async function middleware(
|
||||||
const path = url.pathname.match(/\/api\/proxy\/(.*)/)?.[1] + url.search;
|
const path = url.pathname.match(/\/api\/proxy\/(.*)/)?.[1] + url.search;
|
||||||
|
|
||||||
const ReqContentTypeHeader = request.headers.get("Content-Type") || "";
|
const ReqContentTypeHeader = request.headers.get("Content-Type") || "";
|
||||||
|
const ReqSignHeader = request.headers.get("Sign") || null;
|
||||||
let ResContentTypeHeader = "";
|
let ResContentTypeHeader = "";
|
||||||
let body = null;
|
let body = null;
|
||||||
|
|
||||||
if (ReqContentTypeHeader.split(";")[0] == "multipart/form-data") {
|
if (ReqContentTypeHeader.split(";")[0] == "multipart/form-data") {
|
||||||
ResContentTypeHeader = ReqContentTypeHeader;
|
ResContentTypeHeader = ReqContentTypeHeader;
|
||||||
body = await request.arrayBuffer();
|
body = await request.arrayBuffer();
|
||||||
|
} else if (ReqContentTypeHeader == "application/x-www-form-urlencoded") {
|
||||||
|
ResContentTypeHeader = ReqContentTypeHeader;
|
||||||
} else {
|
} else {
|
||||||
ResContentTypeHeader = "application/json; charset=UTF-8";
|
ResContentTypeHeader = "application/json; charset=UTF-8";
|
||||||
body = JSON.stringify(await request.json());
|
body = JSON.stringify(await request.json());
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = await fetchDataViaPost(
|
let resHeaders = {};
|
||||||
|
resHeaders["Content-Type"] = ResContentTypeHeader;
|
||||||
|
ReqSignHeader && (resHeaders["Sign"] = ReqSignHeader);
|
||||||
|
|
||||||
|
const { data, error } = await fetchDataViaPost(
|
||||||
`${API_URL}/${path}`,
|
`${API_URL}/${path}`,
|
||||||
body,
|
body,
|
||||||
isApiV2,
|
isApiV2,
|
||||||
ResContentTypeHeader
|
resHeaders
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!data) {
|
if (error) {
|
||||||
return new Response(JSON.stringify({ message: "Error Fetching Data" }), {
|
return new Response(JSON.stringify(error), {
|
||||||
status: 500,
|
status: 500,
|
||||||
headers: {
|
headers: {
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
|
|
Loading…
Add table
Reference in a new issue