mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-28 12:45:47 +00:00
137 lines
3.7 KiB
TypeScript
137 lines
3.7 KiB
TypeScript
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import { useAppContext } from "@/context/app-context";
|
|
import { useUserContext } from "@/context/user-context";
|
|
import { isValidUrl } from "@/lib/utils";
|
|
import { Trans, useTranslation } from "react-i18next";
|
|
import { Navigate, useLocation, useNavigate } from "react-router";
|
|
import DOMPurify from "dompurify";
|
|
import { useState } from "react";
|
|
|
|
export const ContinuePage = () => {
|
|
const { isLoggedIn } = useUserContext();
|
|
|
|
if (!isLoggedIn) {
|
|
return <Navigate to="/login" />;
|
|
}
|
|
|
|
const { domain, disableContinue } = useAppContext();
|
|
const { search } = useLocation();
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const searchParams = new URLSearchParams(search);
|
|
const redirectURI = searchParams.get("redirect_uri");
|
|
|
|
if (!redirectURI) {
|
|
return <Navigate to="/logout" />;
|
|
}
|
|
|
|
if (!isValidUrl(DOMPurify.sanitize(redirectURI))) {
|
|
return <Navigate to="/logout" />;
|
|
}
|
|
|
|
const handleRedirect = () => {
|
|
setLoading(true);
|
|
window.location.href = DOMPurify.sanitize(redirectURI);
|
|
}
|
|
|
|
if (disableContinue) {
|
|
handleRedirect();
|
|
}
|
|
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
|
|
const url = new URL(redirectURI);
|
|
|
|
if (!(url.hostname == domain) && !url.hostname.endsWith(`.${domain}`)) {
|
|
return (
|
|
<Card className="min-w-xs sm:min-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-3xl">
|
|
{t("untrustedRedirectTitle")}
|
|
</CardTitle>
|
|
<CardDescription>
|
|
<Trans
|
|
i18nKey="untrustedRedirectSubtitle"
|
|
t={t}
|
|
components={{
|
|
code: <code />,
|
|
}}
|
|
values={{ domain }}
|
|
/>
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardFooter className="flex flex-col items-stretch gap-2">
|
|
<Button
|
|
onClick={handleRedirect}
|
|
loading={loading}
|
|
variant="destructive"
|
|
>
|
|
{t("continueTitle")}
|
|
</Button>
|
|
<Button onClick={() => navigate("/logout")} variant="outline" disabled={loading}>
|
|
{t("cancelTitle")}
|
|
</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
if (url.protocol === "http:" && window.location.protocol === "https:") {
|
|
return (
|
|
<Card className="min-w-xs sm:min-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-3xl">
|
|
{t("continueInsecureRedirectTitle")}
|
|
</CardTitle>
|
|
<CardDescription>
|
|
<Trans
|
|
i18nKey="continueInsecureRedirectSubtitle"
|
|
t={t}
|
|
components={{
|
|
code: <code />,
|
|
}}
|
|
/>
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardFooter className="flex flex-col items-stretch gap-2">
|
|
<Button
|
|
onClick={handleRedirect}
|
|
loading={loading}
|
|
variant="warning"
|
|
>
|
|
{t("continueTitle")}
|
|
</Button>
|
|
<Button onClick={() => navigate("/logout")} variant="outline" disabled={loading}>
|
|
{t("cancelTitle")}
|
|
</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Card className="min-w-xs sm:min-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-3xl">{t("continueTitle")}</CardTitle>
|
|
<CardDescription>{t("continueSubtitle")}</CardDescription>
|
|
</CardHeader>
|
|
<CardFooter className="flex flex-col items-stretch">
|
|
<Button
|
|
onClick={handleRedirect}
|
|
loading={loading}
|
|
>
|
|
{t("continueTitle")}
|
|
</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
};
|