Checkpoint: Ajout de l'authentification formateur et upload logo/signature pour attestations
## Authentification formateur - Ajout du rôle "formateur" dans l'enum de la table users - Ajout du champ formateurId pour lier un compte à un formateur - Mise à jour de l'interface AdminUsers avec sélection du formateur - Redirection automatique selon le rôle (admin → /admin, formateur → /formateur) - Badges et filtres mis à jour pour inclure le rôle formateur ## Upload logo et signature - Création du composant ImageUpload.tsx avec prévisualisation - Création de l'endpoint /api/upload-image avec multer pour l'upload vers S3 - Intégration dans AdminAttestations.tsx - Modification du service PDF pour inclure le logo (en haut à droite) et la signature (en bas) - Mise à jour des procédures tRPC pour accepter logoUrl, logoS3Key, signatureUrl, signatureS3Key
This commit is contained in:
9
.manus/db/db-query-1767799415071.json
Normal file
9
.manus/db/db-query-1767799415071.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"query": "ALTER TABLE users \nADD COLUMN formateurId INT NULL AFTER isActive,\nMODIFY COLUMN role ENUM('user', 'admin', 'formateur') NOT NULL DEFAULT 'user';",
|
||||||
|
"command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway02.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 4CrrYuB5tme73Qo.root --database 7PAT67UmWoxv8vwp8Bbcv6 --execute ALTER TABLE users \nADD COLUMN formateurId INT NULL AFTER isActive,\nMODIFY COLUMN role ENUM('user', 'admin', 'formateur') NOT NULL DEFAULT 'user';",
|
||||||
|
"rows": [],
|
||||||
|
"messages": [],
|
||||||
|
"stdout": "",
|
||||||
|
"stderr": "",
|
||||||
|
"execution_time_ms": 526
|
||||||
|
}
|
||||||
160
client/src/components/ImageUpload.tsx
Normal file
160
client/src/components/ImageUpload.tsx
Normal file
@@ -0,0 +1,160 @@
|
|||||||
|
import { useState, useRef } from "react";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import { Label } from "@/components/ui/label";
|
||||||
|
import { Upload, X, Loader2, Image as ImageIcon } from "lucide-react";
|
||||||
|
import { toast } from "sonner";
|
||||||
|
|
||||||
|
interface ImageUploadProps {
|
||||||
|
label: string;
|
||||||
|
currentImageUrl?: string | null;
|
||||||
|
onUploadComplete: (url: string, s3Key: string) => void;
|
||||||
|
accept?: string;
|
||||||
|
maxSizeMB?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function ImageUpload({
|
||||||
|
label,
|
||||||
|
currentImageUrl,
|
||||||
|
onUploadComplete,
|
||||||
|
accept = "image/png,image/jpeg,image/jpg",
|
||||||
|
maxSizeMB = 5,
|
||||||
|
}: ImageUploadProps) {
|
||||||
|
const [uploading, setUploading] = useState(false);
|
||||||
|
const [previewUrl, setPreviewUrl] = useState<string | null>(currentImageUrl || null);
|
||||||
|
const fileInputRef = useRef<HTMLInputElement>(null);
|
||||||
|
|
||||||
|
const handleFileSelect = async (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
|
const file = e.target.files?.[0];
|
||||||
|
if (!file) return;
|
||||||
|
|
||||||
|
// Vérifier la taille du fichier
|
||||||
|
const fileSizeMB = file.size / (1024 * 1024);
|
||||||
|
if (fileSizeMB > maxSizeMB) {
|
||||||
|
toast.error(`Le fichier est trop volumineux (max ${maxSizeMB}MB)`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Vérifier le type de fichier
|
||||||
|
if (!file.type.startsWith("image/")) {
|
||||||
|
toast.error("Veuillez sélectionner une image");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setUploading(true);
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Créer un aperçu local
|
||||||
|
const localPreview = URL.createObjectURL(file);
|
||||||
|
setPreviewUrl(localPreview);
|
||||||
|
|
||||||
|
// Préparer les données pour l'upload
|
||||||
|
const formData = new FormData();
|
||||||
|
formData.append("file", file);
|
||||||
|
|
||||||
|
// Envoyer le fichier au serveur
|
||||||
|
const response = await fetch("/api/upload-image", {
|
||||||
|
method: "POST",
|
||||||
|
body: formData,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error("Erreur lors de l'upload");
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
|
||||||
|
if (data.success && data.url && data.s3Key) {
|
||||||
|
toast.success("Image uploadée avec succès");
|
||||||
|
setPreviewUrl(data.url);
|
||||||
|
onUploadComplete(data.url, data.s3Key);
|
||||||
|
} else {
|
||||||
|
throw new Error(data.message || "Erreur lors de l'upload");
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Erreur upload:", error);
|
||||||
|
toast.error("Erreur lors de l'upload de l'image");
|
||||||
|
setPreviewUrl(currentImageUrl || null);
|
||||||
|
} finally {
|
||||||
|
setUploading(false);
|
||||||
|
if (fileInputRef.current) {
|
||||||
|
fileInputRef.current.value = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleRemove = () => {
|
||||||
|
setPreviewUrl(null);
|
||||||
|
onUploadComplete("", "");
|
||||||
|
if (fileInputRef.current) {
|
||||||
|
fileInputRef.current.value = "";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>{label}</Label>
|
||||||
|
|
||||||
|
<div className="flex items-start gap-4">
|
||||||
|
{/* Aperçu de l'image */}
|
||||||
|
<div className="flex-shrink-0">
|
||||||
|
{previewUrl ? (
|
||||||
|
<div className="relative group">
|
||||||
|
<img
|
||||||
|
src={previewUrl}
|
||||||
|
alt="Aperçu"
|
||||||
|
className="w-32 h-32 object-contain border rounded-lg bg-gray-50"
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
type="button"
|
||||||
|
variant="destructive"
|
||||||
|
size="icon"
|
||||||
|
className="absolute -top-2 -right-2 h-6 w-6 opacity-0 group-hover:opacity-100 transition-opacity"
|
||||||
|
onClick={handleRemove}
|
||||||
|
disabled={uploading}
|
||||||
|
>
|
||||||
|
<X className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="w-32 h-32 border-2 border-dashed rounded-lg flex items-center justify-center bg-gray-50">
|
||||||
|
<ImageIcon className="h-8 w-8 text-gray-400" />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Bouton d'upload */}
|
||||||
|
<div className="flex-1 space-y-2">
|
||||||
|
<input
|
||||||
|
ref={fileInputRef}
|
||||||
|
type="file"
|
||||||
|
accept={accept}
|
||||||
|
onChange={handleFileSelect}
|
||||||
|
className="hidden"
|
||||||
|
disabled={uploading}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
type="button"
|
||||||
|
variant="outline"
|
||||||
|
onClick={() => fileInputRef.current?.click()}
|
||||||
|
disabled={uploading}
|
||||||
|
>
|
||||||
|
{uploading ? (
|
||||||
|
<>
|
||||||
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
||||||
|
Upload en cours...
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<Upload className="mr-2 h-4 w-4" />
|
||||||
|
{previewUrl ? "Changer l'image" : "Sélectionner une image"}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</Button>
|
||||||
|
<p className="text-xs text-muted-foreground">
|
||||||
|
Formats acceptés: PNG, JPG, JPEG (max {maxSizeMB}MB)
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -46,17 +46,20 @@ export default function AdminUsers() {
|
|||||||
email: "",
|
email: "",
|
||||||
username: "",
|
username: "",
|
||||||
password: "",
|
password: "",
|
||||||
role: "user" as "user" | "admin",
|
role: "user" as "user" | "admin" | "formateur",
|
||||||
|
formateurId: undefined as number | undefined,
|
||||||
});
|
});
|
||||||
const [editForm, setEditForm] = useState({
|
const [editForm, setEditForm] = useState({
|
||||||
name: "",
|
name: "",
|
||||||
email: "",
|
email: "",
|
||||||
username: "",
|
username: "",
|
||||||
password: "",
|
password: "",
|
||||||
role: "user" as "user" | "admin",
|
role: "user" as "user" | "admin" | "formateur",
|
||||||
|
formateurId: undefined as number | undefined,
|
||||||
});
|
});
|
||||||
|
|
||||||
const { data: users = [], refetch } = trpc.users.list.useQuery();
|
const { data: users = [], refetch } = trpc.users.list.useQuery();
|
||||||
|
const { data: formateurs = [] } = trpc.formateurs.list.useQuery();
|
||||||
|
|
||||||
const createMutation = trpc.users.create.useMutation({
|
const createMutation = trpc.users.create.useMutation({
|
||||||
onSuccess: () => {
|
onSuccess: () => {
|
||||||
@@ -70,6 +73,7 @@ export default function AdminUsers() {
|
|||||||
username: "",
|
username: "",
|
||||||
password: "",
|
password: "",
|
||||||
role: "user",
|
role: "user",
|
||||||
|
formateurId: undefined,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onError: (error) => {
|
onError: (error) => {
|
||||||
@@ -137,6 +141,7 @@ export default function AdminUsers() {
|
|||||||
password: createForm.password || undefined,
|
password: createForm.password || undefined,
|
||||||
role: createForm.role,
|
role: createForm.role,
|
||||||
isActive: true,
|
isActive: true,
|
||||||
|
formateurId: createForm.formateurId,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -148,6 +153,7 @@ export default function AdminUsers() {
|
|||||||
username: user.username || "",
|
username: user.username || "",
|
||||||
password: "", // Toujours vide pour la sécurité
|
password: "", // Toujours vide pour la sécurité
|
||||||
role: user.role,
|
role: user.role,
|
||||||
|
formateurId: user.formateurId,
|
||||||
});
|
});
|
||||||
setEditDialogOpen(true);
|
setEditDialogOpen(true);
|
||||||
};
|
};
|
||||||
@@ -161,6 +167,7 @@ export default function AdminUsers() {
|
|||||||
name: editForm.name || undefined,
|
name: editForm.name || undefined,
|
||||||
email: editForm.email || undefined,
|
email: editForm.email || undefined,
|
||||||
role: editForm.role,
|
role: editForm.role,
|
||||||
|
formateurId: editForm.formateurId,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (editForm.username) {
|
if (editForm.username) {
|
||||||
@@ -268,6 +275,7 @@ export default function AdminUsers() {
|
|||||||
<SelectItem value="all">Tous les rôles</SelectItem>
|
<SelectItem value="all">Tous les rôles</SelectItem>
|
||||||
<SelectItem value="admin">Administrateur</SelectItem>
|
<SelectItem value="admin">Administrateur</SelectItem>
|
||||||
<SelectItem value="user">Utilisateur</SelectItem>
|
<SelectItem value="user">Utilisateur</SelectItem>
|
||||||
|
<SelectItem value="formateur">Formateur</SelectItem>
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
</div>
|
</div>
|
||||||
@@ -325,8 +333,8 @@ export default function AdminUsers() {
|
|||||||
<TableCell>{user.email || "N/A"}</TableCell>
|
<TableCell>{user.email || "N/A"}</TableCell>
|
||||||
<TableCell>{user.username || "N/A"}</TableCell>
|
<TableCell>{user.username || "N/A"}</TableCell>
|
||||||
<TableCell>
|
<TableCell>
|
||||||
<Badge variant={user.role === "admin" ? "default" : "secondary"}>
|
<Badge variant={user.role === "admin" ? "default" : user.role === "formateur" ? "outline" : "secondary"}>
|
||||||
{user.role === "admin" ? "Administrateur" : "Utilisateur"}
|
{user.role === "admin" ? "Administrateur" : user.role === "formateur" ? "Formateur" : "Utilisateur"}
|
||||||
</Badge>
|
</Badge>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell>
|
<TableCell>
|
||||||
@@ -452,7 +460,7 @@ export default function AdminUsers() {
|
|||||||
<Label htmlFor="createRole">Rôle</Label>
|
<Label htmlFor="createRole">Rôle</Label>
|
||||||
<Select
|
<Select
|
||||||
value={createForm.role}
|
value={createForm.role}
|
||||||
onValueChange={(value: "user" | "admin") =>
|
onValueChange={(value: "user" | "admin" | "formateur") =>
|
||||||
setCreateForm({ ...createForm, role: value })
|
setCreateForm({ ...createForm, role: value })
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
@@ -462,9 +470,33 @@ export default function AdminUsers() {
|
|||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="user">Utilisateur</SelectItem>
|
<SelectItem value="user">Utilisateur</SelectItem>
|
||||||
<SelectItem value="admin">Administrateur</SelectItem>
|
<SelectItem value="admin">Administrateur</SelectItem>
|
||||||
|
<SelectItem value="formateur">Formateur</SelectItem>
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{createForm.role === "formateur" && (
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="createFormateur">Formateur associé</Label>
|
||||||
|
<Select
|
||||||
|
value={createForm.formateurId?.toString() || ""}
|
||||||
|
onValueChange={(value) =>
|
||||||
|
setCreateForm({ ...createForm, formateurId: value ? parseInt(value) : undefined })
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<SelectTrigger id="createFormateur">
|
||||||
|
<SelectValue placeholder="Sélectionner un formateur" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{formateurs.map((formateur: any) => (
|
||||||
|
<SelectItem key={formateur.id} value={formateur.id.toString()}>
|
||||||
|
{formateur.nom}
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<DialogFooter>
|
<DialogFooter>
|
||||||
@@ -545,7 +577,7 @@ export default function AdminUsers() {
|
|||||||
<Label htmlFor="editRole">Rôle</Label>
|
<Label htmlFor="editRole">Rôle</Label>
|
||||||
<Select
|
<Select
|
||||||
value={editForm.role}
|
value={editForm.role}
|
||||||
onValueChange={(value: "user" | "admin") =>
|
onValueChange={(value: "user" | "admin" | "formateur") =>
|
||||||
setEditForm({ ...editForm, role: value })
|
setEditForm({ ...editForm, role: value })
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
@@ -555,9 +587,33 @@ export default function AdminUsers() {
|
|||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="user">Utilisateur</SelectItem>
|
<SelectItem value="user">Utilisateur</SelectItem>
|
||||||
<SelectItem value="admin">Administrateur</SelectItem>
|
<SelectItem value="admin">Administrateur</SelectItem>
|
||||||
|
<SelectItem value="formateur">Formateur</SelectItem>
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{editForm.role === "formateur" && (
|
||||||
|
<div>
|
||||||
|
<Label htmlFor="editFormateur">Formateur associé</Label>
|
||||||
|
<Select
|
||||||
|
value={editForm.formateurId?.toString() || ""}
|
||||||
|
onValueChange={(value) =>
|
||||||
|
setEditForm({ ...editForm, formateurId: value ? parseInt(value) : undefined })
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<SelectTrigger id="editFormateur">
|
||||||
|
<SelectValue placeholder="Sélectionner un formateur" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
{formateurs.map((formateur: any) => (
|
||||||
|
<SelectItem key={formateur.id} value={formateur.id.toString()}>
|
||||||
|
{formateur.nom}
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<DialogFooter>
|
<DialogFooter>
|
||||||
|
|||||||
@@ -37,8 +37,12 @@ export default function Login() {
|
|||||||
|
|
||||||
if (response.ok && data.success) {
|
if (response.ok && data.success) {
|
||||||
toast.success("Connexion réussie !");
|
toast.success("Connexion réussie !");
|
||||||
// Rediriger vers le tableau de bord
|
// Rediriger selon le rôle de l'utilisateur
|
||||||
setLocation("/admin");
|
if (data.user.role === "formateur") {
|
||||||
|
setLocation("/formateur");
|
||||||
|
} else {
|
||||||
|
setLocation("/admin");
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
toast.error(data.message || "Identifiant ou mot de passe incorrect");
|
toast.error(data.message || "Identifiant ou mot de passe incorrect");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import { Label } from "@/components/ui/label";
|
|||||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { FileText, Save } from "lucide-react";
|
import { FileText, Save } from "lucide-react";
|
||||||
|
import ImageUpload from "@/components/ImageUpload";
|
||||||
|
|
||||||
export default function AdminAttestations() {
|
export default function AdminAttestations() {
|
||||||
const { data: config, isLoading, refetch } = trpc.attestations.getConfig.useQuery();
|
const { data: config, isLoading, refetch } = trpc.attestations.getConfig.useQuery();
|
||||||
@@ -17,6 +18,10 @@ export default function AdminAttestations() {
|
|||||||
nomSignataire: "",
|
nomSignataire: "",
|
||||||
fonctionSignataire: "",
|
fonctionSignataire: "",
|
||||||
texteAttestation: "",
|
texteAttestation: "",
|
||||||
|
logoUrl: "",
|
||||||
|
logoS3Key: "",
|
||||||
|
signatureUrl: "",
|
||||||
|
signatureS3Key: "",
|
||||||
});
|
});
|
||||||
|
|
||||||
// Mettre à jour le formulaire quand les données sont chargées
|
// Mettre à jour le formulaire quand les données sont chargées
|
||||||
@@ -26,6 +31,10 @@ export default function AdminAttestations() {
|
|||||||
nomSignataire: config.nomSignataire || "",
|
nomSignataire: config.nomSignataire || "",
|
||||||
fonctionSignataire: config.fonctionSignataire || "",
|
fonctionSignataire: config.fonctionSignataire || "",
|
||||||
texteAttestation: config.texteAttestation || "",
|
texteAttestation: config.texteAttestation || "",
|
||||||
|
logoUrl: config.logoUrl || "",
|
||||||
|
logoS3Key: config.logoS3Key || "",
|
||||||
|
signatureUrl: config.signatureUrl || "",
|
||||||
|
signatureS3Key: config.signatureS3Key || "",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}, [config]);
|
}, [config]);
|
||||||
@@ -101,6 +110,32 @@ export default function AdminAttestations() {
|
|||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle>Logo et signature</CardTitle>
|
||||||
|
<CardDescription>
|
||||||
|
Ajoutez un logo et une signature pour personnaliser vos attestations
|
||||||
|
</CardDescription>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent className="space-y-6">
|
||||||
|
<ImageUpload
|
||||||
|
label="Logo de l'organisation"
|
||||||
|
currentImageUrl={formData.logoUrl}
|
||||||
|
onUploadComplete={(url, s3Key) =>
|
||||||
|
setFormData({ ...formData, logoUrl: url, logoS3Key: s3Key })
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<ImageUpload
|
||||||
|
label="Signature du signataire"
|
||||||
|
currentImageUrl={formData.signatureUrl}
|
||||||
|
onUploadComplete={(url, s3Key) =>
|
||||||
|
setFormData({ ...formData, signatureUrl: url, signatureS3Key: s3Key })
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
<Card>
|
<Card>
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle>Texte de l'attestation</CardTitle>
|
<CardTitle>Texte de l'attestation</CardTitle>
|
||||||
@@ -137,6 +172,10 @@ export default function AdminAttestations() {
|
|||||||
nomSignataire: config.nomSignataire || "",
|
nomSignataire: config.nomSignataire || "",
|
||||||
fonctionSignataire: config.fonctionSignataire || "",
|
fonctionSignataire: config.fonctionSignataire || "",
|
||||||
texteAttestation: config.texteAttestation || "",
|
texteAttestation: config.texteAttestation || "",
|
||||||
|
logoUrl: config.logoUrl || "",
|
||||||
|
logoS3Key: config.logoS3Key || "",
|
||||||
|
signatureUrl: config.signatureUrl || "",
|
||||||
|
signatureS3Key: config.signatureS3Key || "",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|||||||
2035
drizzle/meta/0027_snapshot.json
Normal file
2035
drizzle/meta/0027_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -190,6 +190,13 @@
|
|||||||
"when": 1767798385842,
|
"when": 1767798385842,
|
||||||
"tag": "0026_panoramic_king_bedlam",
|
"tag": "0026_panoramic_king_bedlam",
|
||||||
"breakpoints": true
|
"breakpoints": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idx": 27,
|
||||||
|
"version": "5",
|
||||||
|
"when": 1767799408213,
|
||||||
|
"tag": "0027_naive_jackal",
|
||||||
|
"breakpoints": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -20,9 +20,11 @@ export const users = mysqlTable("users", {
|
|||||||
/** Mot de passe hashé (bcrypt) */
|
/** Mot de passe hashé (bcrypt) */
|
||||||
password: varchar("password", { length: 255 }),
|
password: varchar("password", { length: 255 }),
|
||||||
loginMethod: varchar("loginMethod", { length: 64 }),
|
loginMethod: varchar("loginMethod", { length: 64 }),
|
||||||
role: mysqlEnum("role", ["user", "admin"]).default("user").notNull(),
|
role: mysqlEnum("role", ["user", "admin", "formateur"]).default("user").notNull(),
|
||||||
/** Statut du compte (actif/inactif) */
|
/** Statut du compte (actif/inactif) */
|
||||||
isActive: boolean("isActive").default(true).notNull(),
|
isActive: boolean("isActive").default(true).notNull(),
|
||||||
|
/** ID du formateur associé (si role = formateur) */
|
||||||
|
formateurId: int("formateurId"),
|
||||||
createdAt: timestamp("createdAt").defaultNow().notNull(),
|
createdAt: timestamp("createdAt").defaultNow().notNull(),
|
||||||
updatedAt: timestamp("updatedAt").defaultNow().onUpdateNow().notNull(),
|
updatedAt: timestamp("updatedAt").defaultNow().onUpdateNow().notNull(),
|
||||||
lastSignedIn: timestamp("lastSignedIn").defaultNow().notNull(),
|
lastSignedIn: timestamp("lastSignedIn").defaultNow().notNull(),
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
"@trpc/client": "^11.6.0",
|
"@trpc/client": "^11.6.0",
|
||||||
"@trpc/react-query": "^11.6.0",
|
"@trpc/react-query": "^11.6.0",
|
||||||
"@trpc/server": "^11.6.0",
|
"@trpc/server": "^11.6.0",
|
||||||
|
"@types/multer": "^2.0.0",
|
||||||
"@types/pdfkit": "^0.17.4",
|
"@types/pdfkit": "^0.17.4",
|
||||||
"axios": "^1.12.0",
|
"axios": "^1.12.0",
|
||||||
"bcryptjs": "^3.0.3",
|
"bcryptjs": "^3.0.3",
|
||||||
@@ -70,6 +71,7 @@
|
|||||||
"jspdf": "^3.0.3",
|
"jspdf": "^3.0.3",
|
||||||
"jspdf-autotable": "^5.0.2",
|
"jspdf-autotable": "^5.0.2",
|
||||||
"lucide-react": "^0.453.0",
|
"lucide-react": "^0.453.0",
|
||||||
|
"multer": "^2.0.2",
|
||||||
"mysql2": "^3.15.0",
|
"mysql2": "^3.15.0",
|
||||||
"nanoid": "^5.1.5",
|
"nanoid": "^5.1.5",
|
||||||
"next-themes": "^0.4.6",
|
"next-themes": "^0.4.6",
|
||||||
|
|||||||
68
pnpm-lock.yaml
generated
68
pnpm-lock.yaml
generated
@@ -127,6 +127,9 @@ importers:
|
|||||||
'@trpc/server':
|
'@trpc/server':
|
||||||
specifier: ^11.6.0
|
specifier: ^11.6.0
|
||||||
version: 11.6.0(typescript@5.9.3)
|
version: 11.6.0(typescript@5.9.3)
|
||||||
|
'@types/multer':
|
||||||
|
specifier: ^2.0.0
|
||||||
|
version: 2.0.0
|
||||||
'@types/pdfkit':
|
'@types/pdfkit':
|
||||||
specifier: ^0.17.4
|
specifier: ^0.17.4
|
||||||
version: 0.17.4
|
version: 0.17.4
|
||||||
@@ -187,6 +190,9 @@ importers:
|
|||||||
lucide-react:
|
lucide-react:
|
||||||
specifier: ^0.453.0
|
specifier: ^0.453.0
|
||||||
version: 0.453.0(react@19.2.0)
|
version: 0.453.0(react@19.2.0)
|
||||||
|
multer:
|
||||||
|
specifier: ^2.0.2
|
||||||
|
version: 2.0.2
|
||||||
mysql2:
|
mysql2:
|
||||||
specifier: ^3.15.0
|
specifier: ^3.15.0
|
||||||
version: 3.15.1
|
version: 3.15.1
|
||||||
@@ -2752,6 +2758,9 @@ packages:
|
|||||||
'@types/ms@2.1.0':
|
'@types/ms@2.1.0':
|
||||||
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
|
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
|
||||||
|
|
||||||
|
'@types/multer@2.0.0':
|
||||||
|
resolution: {integrity: sha512-C3Z9v9Evij2yST3RSBktxP9STm6OdMc5uR1xF1SGr98uv8dUlAL2hqwrZ3GVB3uyMyiegnscEK6PGtYvNrjTjw==}
|
||||||
|
|
||||||
'@types/node-fetch@2.6.13':
|
'@types/node-fetch@2.6.13':
|
||||||
resolution: {integrity: sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw==}
|
resolution: {integrity: sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw==}
|
||||||
|
|
||||||
@@ -2873,6 +2882,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==}
|
resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==}
|
||||||
engines: {node: '>= 8.0.0'}
|
engines: {node: '>= 8.0.0'}
|
||||||
|
|
||||||
|
append-field@1.0.0:
|
||||||
|
resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==}
|
||||||
|
|
||||||
archiver-utils@2.1.0:
|
archiver-utils@2.1.0:
|
||||||
resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==}
|
resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==}
|
||||||
engines: {node: '>= 6'}
|
engines: {node: '>= 6'}
|
||||||
@@ -2998,6 +3010,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
|
resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
|
||||||
engines: {node: '>=0.2.0'}
|
engines: {node: '>=0.2.0'}
|
||||||
|
|
||||||
|
busboy@1.6.0:
|
||||||
|
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
|
||||||
|
engines: {node: '>=10.16.0'}
|
||||||
|
|
||||||
bytes@3.1.2:
|
bytes@3.1.2:
|
||||||
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
|
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
|
||||||
engines: {node: '>= 0.8'}
|
engines: {node: '>= 0.8'}
|
||||||
@@ -3106,6 +3122,10 @@ packages:
|
|||||||
concat-map@0.0.1:
|
concat-map@0.0.1:
|
||||||
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
||||||
|
|
||||||
|
concat-stream@2.0.0:
|
||||||
|
resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
|
||||||
|
engines: {'0': node >= 6.0}
|
||||||
|
|
||||||
confbox@0.1.8:
|
confbox@0.1.8:
|
||||||
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
|
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
|
||||||
|
|
||||||
@@ -4414,6 +4434,10 @@ packages:
|
|||||||
ms@2.1.3:
|
ms@2.1.3:
|
||||||
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
||||||
|
|
||||||
|
multer@2.0.2:
|
||||||
|
resolution: {integrity: sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==}
|
||||||
|
engines: {node: '>= 10.16.0'}
|
||||||
|
|
||||||
mysql2@3.15.1:
|
mysql2@3.15.1:
|
||||||
resolution: {integrity: sha512-WZMIRZstT2MFfouEaDz/AGFnGi1A2GwaDe7XvKTdRJEYiAHbOrh4S3d8KFmQeh11U85G+BFjIvS1Di5alusZsw==}
|
resolution: {integrity: sha512-WZMIRZstT2MFfouEaDz/AGFnGi1A2GwaDe7XvKTdRJEYiAHbOrh4S3d8KFmQeh11U85G+BFjIvS1Di5alusZsw==}
|
||||||
engines: {node: '>= 8.0'}
|
engines: {node: '>= 8.0'}
|
||||||
@@ -4985,6 +5009,10 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
react: ^18.0.0 || ^19.0.0
|
react: ^18.0.0 || ^19.0.0
|
||||||
|
|
||||||
|
streamsearch@1.1.0:
|
||||||
|
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
|
||||||
|
engines: {node: '>=10.0.0'}
|
||||||
|
|
||||||
string_decoder@1.1.1:
|
string_decoder@1.1.1:
|
||||||
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
|
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
|
||||||
|
|
||||||
@@ -5110,6 +5138,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
|
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
|
||||||
engines: {node: '>= 0.6'}
|
engines: {node: '>= 0.6'}
|
||||||
|
|
||||||
|
typedarray@0.0.6:
|
||||||
|
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
|
||||||
|
|
||||||
typescript@5.9.3:
|
typescript@5.9.3:
|
||||||
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
||||||
engines: {node: '>=14.17'}
|
engines: {node: '>=14.17'}
|
||||||
@@ -5404,6 +5435,10 @@ packages:
|
|||||||
xmlchars@2.2.0:
|
xmlchars@2.2.0:
|
||||||
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
|
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
|
||||||
|
|
||||||
|
xtend@4.0.2:
|
||||||
|
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
|
||||||
|
engines: {node: '>=0.4'}
|
||||||
|
|
||||||
yallist@3.1.1:
|
yallist@3.1.1:
|
||||||
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
||||||
|
|
||||||
@@ -8539,6 +8574,10 @@ snapshots:
|
|||||||
|
|
||||||
'@types/ms@2.1.0': {}
|
'@types/ms@2.1.0': {}
|
||||||
|
|
||||||
|
'@types/multer@2.0.0':
|
||||||
|
dependencies:
|
||||||
|
'@types/express': 4.17.21
|
||||||
|
|
||||||
'@types/node-fetch@2.6.13':
|
'@types/node-fetch@2.6.13':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 24.7.0
|
'@types/node': 24.7.0
|
||||||
@@ -8679,6 +8718,8 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
humanize-ms: 1.2.1
|
humanize-ms: 1.2.1
|
||||||
|
|
||||||
|
append-field@1.0.0: {}
|
||||||
|
|
||||||
archiver-utils@2.1.0:
|
archiver-utils@2.1.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
glob: 7.2.3
|
glob: 7.2.3
|
||||||
@@ -8834,6 +8875,10 @@ snapshots:
|
|||||||
|
|
||||||
buffers@0.1.1: {}
|
buffers@0.1.1: {}
|
||||||
|
|
||||||
|
busboy@1.6.0:
|
||||||
|
dependencies:
|
||||||
|
streamsearch: 1.1.0
|
||||||
|
|
||||||
bytes@3.1.2: {}
|
bytes@3.1.2: {}
|
||||||
|
|
||||||
cac@6.7.14: {}
|
cac@6.7.14: {}
|
||||||
@@ -8948,6 +8993,13 @@ snapshots:
|
|||||||
|
|
||||||
concat-map@0.0.1: {}
|
concat-map@0.0.1: {}
|
||||||
|
|
||||||
|
concat-stream@2.0.0:
|
||||||
|
dependencies:
|
||||||
|
buffer-from: 1.1.2
|
||||||
|
inherits: 2.0.4
|
||||||
|
readable-stream: 3.6.2
|
||||||
|
typedarray: 0.0.6
|
||||||
|
|
||||||
confbox@0.1.8: {}
|
confbox@0.1.8: {}
|
||||||
|
|
||||||
confbox@0.2.2: {}
|
confbox@0.2.2: {}
|
||||||
@@ -10522,6 +10574,16 @@ snapshots:
|
|||||||
|
|
||||||
ms@2.1.3: {}
|
ms@2.1.3: {}
|
||||||
|
|
||||||
|
multer@2.0.2:
|
||||||
|
dependencies:
|
||||||
|
append-field: 1.0.0
|
||||||
|
busboy: 1.6.0
|
||||||
|
concat-stream: 2.0.0
|
||||||
|
mkdirp: 0.5.6
|
||||||
|
object-assign: 4.1.1
|
||||||
|
type-is: 1.6.18
|
||||||
|
xtend: 4.0.2
|
||||||
|
|
||||||
mysql2@3.15.1:
|
mysql2@3.15.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
aws-ssl-profiles: 1.1.2
|
aws-ssl-profiles: 1.1.2
|
||||||
@@ -11229,6 +11291,8 @@ snapshots:
|
|||||||
- '@types/react'
|
- '@types/react'
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
|
streamsearch@1.1.0: {}
|
||||||
|
|
||||||
string_decoder@1.1.1:
|
string_decoder@1.1.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
safe-buffer: 5.1.2
|
safe-buffer: 5.1.2
|
||||||
@@ -11343,6 +11407,8 @@ snapshots:
|
|||||||
media-typer: 0.3.0
|
media-typer: 0.3.0
|
||||||
mime-types: 2.1.35
|
mime-types: 2.1.35
|
||||||
|
|
||||||
|
typedarray@0.0.6: {}
|
||||||
|
|
||||||
typescript@5.9.3: {}
|
typescript@5.9.3: {}
|
||||||
|
|
||||||
uc.micro@2.1.0: {}
|
uc.micro@2.1.0: {}
|
||||||
@@ -11650,6 +11716,8 @@ snapshots:
|
|||||||
|
|
||||||
xmlchars@2.2.0: {}
|
xmlchars@2.2.0: {}
|
||||||
|
|
||||||
|
xtend@4.0.2: {}
|
||||||
|
|
||||||
yallist@3.1.1: {}
|
yallist@3.1.1: {}
|
||||||
|
|
||||||
yallist@5.0.0: {}
|
yallist@5.0.0: {}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import { registerOAuthRoutes } from "./oauth";
|
|||||||
import { appRouter } from "../routers";
|
import { appRouter } from "../routers";
|
||||||
import { createContext } from "./context";
|
import { createContext } from "./context";
|
||||||
import localAuthRouter from "./localAuth";
|
import localAuthRouter from "./localAuth";
|
||||||
|
import uploadImageRouter from "./uploadImage";
|
||||||
import { serveStatic, setupVite } from "./vite";
|
import { serveStatic, setupVite } from "./vite";
|
||||||
import { initRappelScheduler } from "../rappelScheduler";
|
import { initRappelScheduler } from "../rappelScheduler";
|
||||||
import { initRappelRetryScheduler } from "../rappelRetry";
|
import { initRappelRetryScheduler } from "../rappelRetry";
|
||||||
@@ -40,6 +41,8 @@ async function startServer() {
|
|||||||
registerOAuthRoutes(app);
|
registerOAuthRoutes(app);
|
||||||
// Local authentication under /api/auth/local
|
// Local authentication under /api/auth/local
|
||||||
app.use("/api/auth/local", localAuthRouter);
|
app.use("/api/auth/local", localAuthRouter);
|
||||||
|
// Image upload under /api/upload-image
|
||||||
|
app.use("/api/upload-image", uploadImageRouter);
|
||||||
// tRPC API
|
// tRPC API
|
||||||
app.use(
|
app.use(
|
||||||
"/api/trpc",
|
"/api/trpc",
|
||||||
|
|||||||
67
server/_core/uploadImage.ts
Normal file
67
server/_core/uploadImage.ts
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
import { Router } from "express";
|
||||||
|
import multer from "multer";
|
||||||
|
import { storagePut } from "../storage";
|
||||||
|
import { randomBytes } from "crypto";
|
||||||
|
|
||||||
|
const router = Router();
|
||||||
|
|
||||||
|
// Configuration de multer pour gérer les uploads en mémoire
|
||||||
|
const upload = multer({
|
||||||
|
storage: multer.memoryStorage(),
|
||||||
|
limits: {
|
||||||
|
fileSize: 5 * 1024 * 1024, // 5MB max
|
||||||
|
},
|
||||||
|
fileFilter: (req, file, cb) => {
|
||||||
|
// Vérifier que c'est bien une image
|
||||||
|
if (file.mimetype.startsWith("image/")) {
|
||||||
|
cb(null, true);
|
||||||
|
} else {
|
||||||
|
cb(new Error("Le fichier doit être une image"));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Route d'upload d'images vers S3
|
||||||
|
* POST /api/upload-image
|
||||||
|
* Body: multipart/form-data avec un champ "file"
|
||||||
|
*/
|
||||||
|
router.post("/", upload.single("file"), async (req, res) => {
|
||||||
|
try {
|
||||||
|
if (!req.file) {
|
||||||
|
return res.status(400).json({
|
||||||
|
success: false,
|
||||||
|
message: "Aucun fichier fourni",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const file = req.file;
|
||||||
|
|
||||||
|
// Générer un nom de fichier unique
|
||||||
|
const randomSuffix = randomBytes(8).toString("hex");
|
||||||
|
const extension = file.originalname.split(".").pop() || "jpg";
|
||||||
|
const fileName = `attestations/${Date.now()}-${randomSuffix}.${extension}`;
|
||||||
|
|
||||||
|
// Upload vers S3
|
||||||
|
const result = await storagePut(
|
||||||
|
fileName,
|
||||||
|
file.buffer,
|
||||||
|
file.mimetype
|
||||||
|
);
|
||||||
|
|
||||||
|
return res.json({
|
||||||
|
success: true,
|
||||||
|
url: result.url,
|
||||||
|
s3Key: fileName,
|
||||||
|
message: "Image uploadée avec succès",
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
console.error("[UploadImage] Error:", error);
|
||||||
|
return res.status(500).json({
|
||||||
|
success: false,
|
||||||
|
message: "Erreur lors de l'upload de l'image",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
export default router;
|
||||||
@@ -79,7 +79,19 @@ export async function genererAttestationPDF(inscriptionId: number): Promise<{ s3
|
|||||||
doc.on("error", reject);
|
doc.on("error", reject);
|
||||||
|
|
||||||
// Construction du PDF
|
// Construction du PDF
|
||||||
try {
|
(async () => {
|
||||||
|
try {
|
||||||
|
// Logo en haut à droite si disponible
|
||||||
|
if (config?.logoUrl) {
|
||||||
|
try {
|
||||||
|
const logoResponse = await fetch(config.logoUrl);
|
||||||
|
const logoBuffer = Buffer.from(await logoResponse.arrayBuffer());
|
||||||
|
doc.image(logoBuffer, doc.page.width - 150, 50, { width: 100 });
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Erreur lors du chargement du logo:", error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Titre
|
// Titre
|
||||||
doc.fontSize(24).font("Helvetica-Bold").text("ATTESTATION DE FORMATION", { align: "center" });
|
doc.fontSize(24).font("Helvetica-Bold").text("ATTESTATION DE FORMATION", { align: "center" });
|
||||||
doc.moveDown(2);
|
doc.moveDown(2);
|
||||||
@@ -125,18 +137,33 @@ export async function genererAttestationPDF(inscriptionId: number): Promise<{ s3
|
|||||||
doc.text(`Fait le ${format(new Date(), "dd MMMM yyyy", { locale: fr })}`, { align: "right" });
|
doc.text(`Fait le ${format(new Date(), "dd MMMM yyyy", { locale: fr })}`, { align: "right" });
|
||||||
doc.moveDown(3);
|
doc.moveDown(3);
|
||||||
|
|
||||||
if (config?.nomSignataire) {
|
// Signature si disponible
|
||||||
doc.text(config.nomSignataire, { align: "right" });
|
if (config?.signatureUrl) {
|
||||||
}
|
try {
|
||||||
if (config?.fonctionSignataire) {
|
const signatureResponse = await fetch(config.signatureUrl);
|
||||||
doc.text(config.fonctionSignataire, { align: "right" });
|
const signatureBuffer = Buffer.from(await signatureResponse.arrayBuffer());
|
||||||
}
|
const signatureX = doc.page.width - 200;
|
||||||
|
const signatureY = doc.y;
|
||||||
|
doc.image(signatureBuffer, signatureX, signatureY, { width: 150, height: 50 });
|
||||||
|
doc.moveDown(3);
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Erreur lors du chargement de la signature:", error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
doc.end();
|
if (config?.nomSignataire) {
|
||||||
} catch (error) {
|
doc.text(config.nomSignataire, { align: "right" });
|
||||||
doc.end();
|
}
|
||||||
reject(error);
|
if (config?.fonctionSignataire) {
|
||||||
}
|
doc.text(config.fonctionSignataire, { align: "right" });
|
||||||
|
}
|
||||||
|
|
||||||
|
doc.end();
|
||||||
|
} catch (error) {
|
||||||
|
doc.end();
|
||||||
|
reject(error);
|
||||||
|
}
|
||||||
|
})();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -904,8 +904,9 @@ export const appRouter = router({
|
|||||||
email: z.string().email().optional(),
|
email: z.string().email().optional(),
|
||||||
username: z.string().min(3).optional(),
|
username: z.string().min(3).optional(),
|
||||||
password: z.string().min(6).optional(),
|
password: z.string().min(6).optional(),
|
||||||
role: z.enum(["user", "admin"]).default("user"),
|
role: z.enum(["user", "admin", "formateur"]).default("user"),
|
||||||
isActive: z.boolean().default(true),
|
isActive: z.boolean().default(true),
|
||||||
|
formateurId: z.number().optional(),
|
||||||
})).mutation(async ({ input }) => {
|
})).mutation(async ({ input }) => {
|
||||||
await db.createUser(input);
|
await db.createUser(input);
|
||||||
return { success: true };
|
return { success: true };
|
||||||
@@ -917,8 +918,9 @@ export const appRouter = router({
|
|||||||
email: z.string().email().optional(),
|
email: z.string().email().optional(),
|
||||||
username: z.string().min(3).optional(),
|
username: z.string().min(3).optional(),
|
||||||
password: z.string().min(6).optional(),
|
password: z.string().min(6).optional(),
|
||||||
role: z.enum(["user", "admin"]).optional(),
|
role: z.enum(["user", "admin", "formateur"]).optional(),
|
||||||
isActive: z.boolean().optional(),
|
isActive: z.boolean().optional(),
|
||||||
|
formateurId: z.number().optional(),
|
||||||
})).mutation(async ({ input }) => {
|
})).mutation(async ({ input }) => {
|
||||||
const { id, ...data } = input;
|
const { id, ...data } = input;
|
||||||
await db.updateUser(id, data);
|
await db.updateUser(id, data);
|
||||||
@@ -1821,6 +1823,10 @@ export const appRouter = router({
|
|||||||
nomSignataire: z.string().optional(),
|
nomSignataire: z.string().optional(),
|
||||||
fonctionSignataire: z.string().optional(),
|
fonctionSignataire: z.string().optional(),
|
||||||
texteAttestation: z.string().optional(),
|
texteAttestation: z.string().optional(),
|
||||||
|
logoUrl: z.string().optional(),
|
||||||
|
logoS3Key: z.string().optional(),
|
||||||
|
signatureUrl: z.string().optional(),
|
||||||
|
signatureS3Key: z.string().optional(),
|
||||||
}))
|
}))
|
||||||
.mutation(async ({ input }) => {
|
.mutation(async ({ input }) => {
|
||||||
const { updateConfigAttestation } = await import("./attestationService");
|
const { updateConfigAttestation } = await import("./attestationService");
|
||||||
|
|||||||
16
todo.md
16
todo.md
@@ -450,3 +450,19 @@
|
|||||||
- [x] Créer la page de configuration
|
- [x] Créer la page de configuration
|
||||||
- [x] Intégrer le bouton dans la page de validation des présences
|
- [x] Intégrer le bouton dans la page de validation des présences
|
||||||
- [x] Tester la génération complète
|
- [x] Tester la génération complète
|
||||||
|
|
||||||
|
## Authentification et accès formateurs
|
||||||
|
- [x] Analyser le système d'authentification actuel (users, roles)
|
||||||
|
- [x] Créer le rôle "formateur" dans la base de données
|
||||||
|
- [x] Lier les comptes utilisateurs aux formateurs existants (champ formateurId)
|
||||||
|
- [x] Utiliser la page de connexion locale existante
|
||||||
|
- [x] Implémenter la redirection selon le rôle (admin → /admin, formateur → /formateur)
|
||||||
|
- [ ] Tester la connexion et l'accès aux fonctionnalités formateur
|
||||||
|
|
||||||
|
## Upload logo et signature pour attestations
|
||||||
|
- [x] Ajouter les champs logoUrl et signatureUrl dans configAttestation (déjà existants)
|
||||||
|
- [x] Créer le composant d'upload d'images vers S3 (ImageUpload.tsx)
|
||||||
|
- [x] Créer l'endpoint d'upload serveur (/api/upload-image)
|
||||||
|
- [x] Intégrer l'upload dans la page de configuration des attestations
|
||||||
|
- [x] Modifier le service PDF pour inclure le logo et la signature
|
||||||
|
- [ ] Tester la génération d'attestations avec logo et signature personnalisés
|
||||||
|
|||||||
Reference in New Issue
Block a user