852171cc59
- Ajout d'un conteneur Tailscale côté serveur pour joindre les agents via IPs Tailscale - Configuration Headscale exposé en HTTPS via Caddy (headscale.alfrednobel.edudeploy.com) - Caddy configuré pour les sous-domaines avec TLS on-demand - Middleware et route proxy Next.js pour router les sous-domaines vers les agents - Ajout du champ domain sur Establishment et affichage de l'URL publique dans le dashboard - Agent Windows v0.2.3 avec proxy Tailscale par instance pour contourner Docker Desktop - Templates WordPress/PrestaShop bindés sur 0.0.0.0 pour être accessibles via Tailscale
90 lines
3.7 KiB
TypeScript
90 lines
3.7 KiB
TypeScript
import { prisma } from "@/lib/prisma";
|
|
import { getServerSession } from "next-auth/next";
|
|
import { authOptions } from "@/lib/auth-config";
|
|
import { redirect } from "next/navigation";
|
|
import { Table, TableHeader, TableBody, TableRow, TableHead, TableCell } from "@/components/ui/table";
|
|
import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import InstanceActions from "./InstanceActions";
|
|
import Link from "next/link";
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export default async function InstancesPage() {
|
|
const session = await getServerSession(authOptions);
|
|
if (!session?.user) redirect("/login");
|
|
if (!session.user.establishmentId && session.user.role !== "superadmin") redirect("/dashboard");
|
|
|
|
const establishmentId = session.user.establishmentId;
|
|
const instances = await prisma.instance.findMany({
|
|
where: establishmentId
|
|
? { node: { student: { class: { establishmentId } } } }
|
|
: {},
|
|
include: { node: { include: { student: { include: { class: { include: { establishment: true } } } } } }, template: true },
|
|
orderBy: { createdAt: "desc" },
|
|
});
|
|
|
|
const enrichedInstances = instances.map((inst) => {
|
|
const domain = inst.node.student?.class.establishment?.domain;
|
|
return {
|
|
...inst,
|
|
publicUrl: domain ? `https://${inst.id}.${domain}` : null,
|
|
};
|
|
});
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
<div className="flex items-center justify-between">
|
|
<h1 className="text-3xl font-bold">Instances</h1>
|
|
<Link href="/dashboard/instances/assign">
|
|
<Button>Attribuer une instance</Button>
|
|
</Link>
|
|
</div>
|
|
<Card>
|
|
<CardContent className="pt-6">
|
|
<Table>
|
|
<TableHeader>
|
|
<TableRow>
|
|
<TableHead>ID</TableHead>
|
|
<TableHead>Template</TableHead>
|
|
<TableHead>Nœud</TableHead>
|
|
<TableHead>Étudiant</TableHead>
|
|
<TableHead>Port</TableHead>
|
|
<TableHead>Statut</TableHead>
|
|
<TableHead>URL publique</TableHead>
|
|
<TableHead>Actions</TableHead>
|
|
</TableRow>
|
|
</TableHeader>
|
|
<TableBody>
|
|
{enrichedInstances.map((inst: any) => (
|
|
<TableRow key={inst.id}>
|
|
<TableCell className="font-medium">{inst.id.slice(0, 8)}...</TableCell>
|
|
<TableCell>{inst.template.name}</TableCell>
|
|
<TableCell>{inst.node.id.slice(0, 8)}...</TableCell>
|
|
<TableCell>{inst.node.student ? `${inst.node.student.firstName} ${inst.node.student.lastName}` : "-"}</TableCell>
|
|
<TableCell>{inst.port}</TableCell>
|
|
<TableCell>
|
|
<Badge variant={inst.status === "running" ? "success" : inst.status === "error" ? "destructive" : "secondary"}>{inst.status}</Badge>
|
|
</TableCell>
|
|
<TableCell>
|
|
{inst.publicUrl ? <a href={inst.publicUrl} target="_blank" rel="noopener" className="text-blue-600 hover:underline">{inst.publicUrl}</a> : "-"}
|
|
</TableCell>
|
|
<TableCell>
|
|
<InstanceActions instanceId={inst.id} status={inst.status} />
|
|
</TableCell>
|
|
</TableRow>
|
|
))}
|
|
{instances.length === 0 && (
|
|
<TableRow>
|
|
<TableCell colSpan={8} className="text-center text-muted-foreground">Aucune instance</TableCell>
|
|
</TableRow>
|
|
)}
|
|
</TableBody>
|
|
</Table>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|