mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-02-24 09:52:00 +00:00
* refactor: rework frontend use effect calls * fix: rabbit comments * fix: handle empty oauth url in login page
266 lines
8.0 KiB
TypeScript
266 lines
8.0 KiB
TypeScript
import { LoginForm } from "@/components/auth/login-form";
|
|
import { GithubIcon } from "@/components/icons/github";
|
|
import { GoogleIcon } from "@/components/icons/google";
|
|
import { MicrosoftIcon } from "@/components/icons/microsoft";
|
|
import { OAuthIcon } from "@/components/icons/oauth";
|
|
import { PocketIDIcon } from "@/components/icons/pocket-id";
|
|
import { TailscaleIcon } from "@/components/icons/tailscale";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardHeader,
|
|
CardTitle,
|
|
CardDescription,
|
|
CardContent,
|
|
CardFooter,
|
|
} from "@/components/ui/card";
|
|
import { OAuthButton } from "@/components/ui/oauth-button";
|
|
import { SeperatorWithChildren } from "@/components/ui/separator";
|
|
import { useAppContext } from "@/context/app-context";
|
|
import { useUserContext } from "@/context/user-context";
|
|
import { useOIDCParams } from "@/lib/hooks/oidc";
|
|
import { LoginSchema } from "@/schemas/login-schema";
|
|
import { useMutation } from "@tanstack/react-query";
|
|
import axios, { AxiosError } from "axios";
|
|
import { useEffect, useRef, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Navigate, useLocation } from "react-router";
|
|
import { toast } from "sonner";
|
|
|
|
const iconMap: Record<string, React.ReactNode> = {
|
|
google: <GoogleIcon />,
|
|
github: <GithubIcon />,
|
|
tailscale: <TailscaleIcon />,
|
|
microsoft: <MicrosoftIcon />,
|
|
pocketid: <PocketIDIcon />,
|
|
};
|
|
|
|
export const LoginPage = () => {
|
|
const { isLoggedIn } = useUserContext();
|
|
const { providers, title, oauthAutoRedirect } = useAppContext();
|
|
const { search } = useLocation();
|
|
const { t } = useTranslation();
|
|
|
|
const [showRedirectButton, setShowRedirectButton] = useState(false);
|
|
|
|
const hasAutoRedirectedRef = useRef(false);
|
|
|
|
const redirectTimer = useRef<number | null>(null);
|
|
const redirectButtonTimer = useRef<number | null>(null);
|
|
|
|
const searchParams = new URLSearchParams(search);
|
|
const {
|
|
values: props,
|
|
isOidc,
|
|
compiled: compiledOIDCParams,
|
|
} = useOIDCParams(searchParams);
|
|
|
|
const [isOauthAutoRedirect, setIsOauthAutoRedirect] = useState(
|
|
providers.find((provider) => provider.id === oauthAutoRedirect) !==
|
|
undefined && props.redirect_uri,
|
|
);
|
|
|
|
const oauthProviders = providers.filter(
|
|
(provider) => provider.id !== "local" && provider.id !== "ldap",
|
|
);
|
|
const userAuthConfigured =
|
|
providers.find(
|
|
(provider) => provider.id === "local" || provider.id === "ldap",
|
|
) !== undefined;
|
|
|
|
const {
|
|
mutate: oauthMutate,
|
|
data: oauthData,
|
|
isPending: oauthIsPending,
|
|
variables: oauthVariables,
|
|
} = useMutation({
|
|
mutationFn: (provider: string) =>
|
|
axios.get(
|
|
`/api/oauth/url/${provider}${props.redirect_uri ? `?redirect_uri=${encodeURIComponent(props.redirect_uri)}` : ""}`,
|
|
),
|
|
mutationKey: ["oauth"],
|
|
onSuccess: (data) => {
|
|
toast.info(t("loginOauthSuccessTitle"), {
|
|
description: t("loginOauthSuccessSubtitle"),
|
|
});
|
|
|
|
redirectTimer.current = window.setTimeout(() => {
|
|
window.location.replace(data.data.url);
|
|
}, 500);
|
|
|
|
if (isOauthAutoRedirect) {
|
|
redirectButtonTimer.current = window.setTimeout(() => {
|
|
setShowRedirectButton(true);
|
|
}, 5000);
|
|
}
|
|
},
|
|
onError: () => {
|
|
setIsOauthAutoRedirect(false);
|
|
toast.error(t("loginOauthFailTitle"), {
|
|
description: t("loginOauthFailSubtitle"),
|
|
});
|
|
},
|
|
});
|
|
|
|
const { mutate: loginMutate, isPending: loginIsPending } = useMutation({
|
|
mutationFn: (values: LoginSchema) => axios.post("/api/user/login", values),
|
|
mutationKey: ["login"],
|
|
onSuccess: (data) => {
|
|
if (data.data.totpPending) {
|
|
window.location.replace(
|
|
`/totp${props.redirect_uri ? `?redirect_uri=${encodeURIComponent(props.redirect_uri)}` : ""}`,
|
|
);
|
|
return;
|
|
}
|
|
|
|
toast.success(t("loginSuccessTitle"), {
|
|
description: t("loginSuccessSubtitle"),
|
|
});
|
|
|
|
redirectTimer.current = window.setTimeout(() => {
|
|
if (isOidc) {
|
|
window.location.replace(`/authorize?${compiledOIDCParams}`);
|
|
return;
|
|
}
|
|
window.location.replace(
|
|
`/continue${props.redirect_uri ? `?redirect_uri=${encodeURIComponent(props.redirect_uri)}` : ""}`,
|
|
);
|
|
}, 500);
|
|
},
|
|
onError: (error: AxiosError) => {
|
|
toast.error(t("loginFailTitle"), {
|
|
description:
|
|
error.response?.status === 429
|
|
? t("loginFailRateLimit")
|
|
: t("loginFailSubtitle"),
|
|
});
|
|
},
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (
|
|
!isLoggedIn &&
|
|
isOauthAutoRedirect &&
|
|
!hasAutoRedirectedRef.current &&
|
|
props.redirect_uri
|
|
) {
|
|
hasAutoRedirectedRef.current = true;
|
|
oauthMutate(oauthAutoRedirect);
|
|
}
|
|
}, [
|
|
isLoggedIn,
|
|
oauthMutate,
|
|
hasAutoRedirectedRef,
|
|
oauthAutoRedirect,
|
|
isOauthAutoRedirect,
|
|
props.redirect_uri,
|
|
]);
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
if (redirectTimer.current) {
|
|
clearTimeout(redirectTimer.current);
|
|
}
|
|
|
|
if (redirectButtonTimer.current) {
|
|
clearTimeout(redirectButtonTimer.current);
|
|
}
|
|
};
|
|
}, [redirectTimer, redirectButtonTimer]);
|
|
|
|
if (isLoggedIn && isOidc) {
|
|
return <Navigate to={`/authorize?${compiledOIDCParams}`} replace />;
|
|
}
|
|
|
|
if (isLoggedIn && props.redirect_uri !== "") {
|
|
return (
|
|
<Navigate
|
|
to={`/continue${props.redirect_uri ? `?redirect_uri=${encodeURIComponent(props.redirect_uri)}` : ""}`}
|
|
replace
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (isLoggedIn) {
|
|
return <Navigate to="/logout" replace />;
|
|
}
|
|
|
|
if (isOauthAutoRedirect) {
|
|
return (
|
|
<Card className="min-w-xs sm:min-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-3xl">
|
|
{t("loginOauthAutoRedirectTitle")}
|
|
</CardTitle>
|
|
<CardDescription>
|
|
{t("loginOauthAutoRedirectSubtitle")}
|
|
</CardDescription>
|
|
</CardHeader>
|
|
{showRedirectButton && (
|
|
<CardFooter className="flex flex-col items-stretch">
|
|
<Button
|
|
onClick={() => {
|
|
if (oauthData?.data.url) {
|
|
window.location.replace(oauthData.data.url);
|
|
} else {
|
|
setIsOauthAutoRedirect(false);
|
|
toast.error(t("loginOauthFailTitle"), {
|
|
description: t("loginOauthFailSubtitle"),
|
|
});
|
|
}
|
|
}}
|
|
>
|
|
{t("loginOauthAutoRedirectButton")}
|
|
</Button>
|
|
</CardFooter>
|
|
)}
|
|
</Card>
|
|
);
|
|
}
|
|
return (
|
|
<Card className="min-w-xs sm:min-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-center text-3xl">{title}</CardTitle>
|
|
{providers.length > 0 && (
|
|
<CardDescription className="text-center">
|
|
{oauthProviders.length !== 0
|
|
? t("loginTitle")
|
|
: t("loginTitleSimple")}
|
|
</CardDescription>
|
|
)}
|
|
</CardHeader>
|
|
<CardContent className="flex flex-col gap-4">
|
|
{oauthProviders.length !== 0 && (
|
|
<div className="flex flex-col gap-2 items-center justify-center">
|
|
{oauthProviders.map((provider) => (
|
|
<OAuthButton
|
|
key={provider.id}
|
|
title={provider.name}
|
|
icon={iconMap[provider.id] ?? <OAuthIcon />}
|
|
className="w-full"
|
|
onClick={() => oauthMutate(provider.id)}
|
|
loading={oauthIsPending && oauthVariables === provider.id}
|
|
disabled={oauthIsPending || loginIsPending}
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
{userAuthConfigured && oauthProviders.length !== 0 && (
|
|
<SeperatorWithChildren>{t("loginDivider")}</SeperatorWithChildren>
|
|
)}
|
|
{userAuthConfigured && (
|
|
<LoginForm
|
|
onSubmit={(values) => loginMutate(values)}
|
|
loading={loginIsPending || oauthIsPending}
|
|
/>
|
|
)}
|
|
{providers.length == 0 && (
|
|
<p className="text-center text-red-600 max-w-sm">
|
|
{t("failedToFetchProvidersTitle")}
|
|
</p>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
};
|