svrjs-nextjs-website/app/(root)/vulnerabilities/page.tsx

160 lines
4.6 KiB
TypeScript
Raw Normal View History

2024-07-30 21:34:39 +02:00
"use client";
2024-07-07 20:11:32 +02:00
import ReactMarkdown from "react-markdown";
2024-07-31 20:43:04 +02:00
import { VULNERABILITY } from "@/constants/guidelines";
2024-07-30 21:34:39 +02:00
import { useEffect, useState } from "react";
import { Skeleton } from "@/components/ui/skeleton";
2024-07-07 20:11:32 +02:00
2024-07-30 21:34:39 +02:00
interface Bullet {
point: string;
}
interface Vulnerabilities {
_id: string;
version: string;
bullets?: Bullet[]; // Make bullets optional
}
2024-07-07 20:11:32 +02:00
2024-07-31 20:43:04 +02:00
interface ModsVulnerability {
_id: string;
title: string;
slug: string;
content: string;
vulnerabilities: string;
}
2024-07-07 20:11:32 +02:00
const Vulnerabilities = () => {
2024-07-30 21:34:39 +02:00
const [loading, setLoading] = useState(true);
const [downloads, setDownloads] = useState<Vulnerabilities[]>([]);
2024-07-31 20:43:04 +02:00
const [mods, setMods] = useState<ModsVulnerability[]>([]);
2024-07-30 21:34:39 +02:00
const [error, setError] = useState("");
const fetchData = async () => {
try {
const response = await fetch("/api/vulnerabilities", {
method: "GET",
});
if (response.ok) {
const data: Vulnerabilities[] = await response.json();
setDownloads(data);
2024-07-31 20:43:04 +02:00
document.title = "Vulnerabilities | SVRJS";
2024-07-30 21:34:39 +02:00
} else {
throw new Error(`HTTP error! status: ${response.status}`);
}
} catch (error: any) {
setError(error.message || "Failed to fetch downloads");
} finally {
setLoading(false);
}
};
2024-07-31 20:43:04 +02:00
const fetchMods = async () => {
try {
const response = await fetch(`/api/mdx/pages`, {
method: "GET",
});
if (response.ok) {
const data: ModsVulnerability[] = await response.json();
// Filter out entries where vulnerabilities is undefined or an empty string
const filteredMods = data.filter(
(mod) => mod.vulnerabilities && mod.vulnerabilities.trim() !== ""
);
setMods(filteredMods);
document.title = "Vulnerabilities | SVRJS";
} else {
throw new Error(`HTTP error! status: ${response.status}`);
}
} catch (error: any) {
setError(error.message || "Failed to fetch vulnerabilities");
} finally {
setLoading(false);
}
};
2024-07-30 21:34:39 +02:00
useEffect(() => {
fetchData();
2024-07-31 20:43:04 +02:00
fetchMods();
2024-07-30 21:34:39 +02:00
const interval = setInterval(() => {
fetchData();
2024-07-31 20:43:04 +02:00
fetchMods();
2024-07-30 21:34:39 +02:00
}, 10000);
return () => clearInterval(interval);
}, []);
2024-07-31 20:43:04 +02:00
2024-07-30 21:34:39 +02:00
const reversedDownloads = [...downloads].reverse();
2024-07-31 20:43:04 +02:00
const reversedMods = [...mods].reverse();
2024-07-30 21:34:39 +02:00
if (loading) {
return (
<section className="wrapper container py-24 md:py-28 gap-4 flex flex-col">
<div className="mb-3">
<Skeleton className="w-[400px] h-[50px] rounded-md" />
</div>
<div className="flex flex-col gap-4">
<Skeleton className="w-[300px] h-[30px] rounded-md" />
<Skeleton className="w-[200px] h-[20px] rounded-md" />
<Skeleton className="w-[200px] h-[20px] rounded-md" />
<Skeleton className="w-[200px] h-[20px] rounded-md" />
</div>
</section>
);
}
2024-07-07 20:11:32 +02:00
return (
<section
2024-07-30 21:34:39 +02:00
id="vulnerabilities"
className="wrapper container py-24 md:py-28 gap-2 flex flex-col"
2024-07-07 20:11:32 +02:00
>
<h1 className="text-3xl md:text-5xl pb-1 md:pb-2 font-bold text-black dark:bg-clip-text dark:text-transparent dark:bg-gradient-to-b dark:from-white dark:to-neutral-400">
SVR.JS Vulnerabilities
</h1>
<p className="md:text-lg text-muted-foreground text-start mb-6">
2024-07-10 08:10:55 +02:00
Some older versions of SVR.JS are vulnerable to cyberattacks. It&apos;s
recommended to update your SVR.JS version to the newest one. If you find
a security issue with SVR.JS, report it as soon as possible to
vulnerability-reports[at]svrjs[dot]org. We&apos;ll mitigate that
vulnerability if it is possible.
</p>
2024-07-30 21:34:39 +02:00
{error && <p className="text-red-500">{error}</p>}
{reversedDownloads.map((download) => (
<div
key={download._id}
className="flex-start flex-col prose dark:prose-invert mb-4 gap-4"
>
<h2 className="font-semibold text-3xl -mb-2">{download.version}</h2>
<ul className="list-disc pl-5">
{(download.bullets ?? []).map((bullet, index) => (
<li key={index}>{bullet.point}</li>
))}
</ul>
</div>
))}
2024-07-31 20:43:04 +02:00
<div className="prose max-w-full md:prose-lg dark:prose-invert">
2024-07-31 20:43:04 +02:00
<ReactMarkdown>{VULNERABILITY}</ReactMarkdown>
2024-07-07 20:11:32 +02:00
</div>
2024-07-31 20:43:04 +02:00
{/* Section with MODS content */}
{reversedMods.map((mod) => (
<div
key={mod._id}
className="flex-start flex-col prose dark:prose-invert mb-4 gap-4"
>
<h2 className="text-3xl md:text-5xl py-1 md:py-2 font-bold text-black dark:bg-clip-text dark:text-transparent dark:bg-gradient-to-b dark:from-white dark:to-neutral-400 -mb-1">
{mod.title}
</h2>
{mod.vulnerabilities && (
<div className="prose max-w-full md:prose-lg dark:prose-invert">
<ReactMarkdown>{mod.vulnerabilities}</ReactMarkdown>
</div>
)}
</div>
))}
2024-07-07 20:11:32 +02:00
</section>
);
};
export default Vulnerabilities;