Front + gestion des utilisateurs
This commit is contained in:
+403
-53
@@ -1,16 +1,29 @@
|
||||
// =========================================================
|
||||
// Tableaux globaux
|
||||
// =========================================================
|
||||
|
||||
let configIndices = []; // Données issues de la table "indice"
|
||||
let coursActionsData = []; // Données issues de la table "cours_actions"
|
||||
|
||||
// =========================================================
|
||||
// CHARGEMENT DES DONNÉES
|
||||
// =========================================================
|
||||
|
||||
function chargerDonnees() {
|
||||
// Chargement en parallèle des deux API
|
||||
Promise.all([
|
||||
fetch("./php/api_lecture_tableindice.php").then((res) => res.json()),
|
||||
fetch("./php/api_indices.php").then((res) => res.json()),
|
||||
])
|
||||
|
||||
.then(([configResult, coursResult]) => {
|
||||
// -----------------------------------------------------
|
||||
// Configuration des indices
|
||||
// -----------------------------------------------------
|
||||
|
||||
if (configResult.status === "success") {
|
||||
configIndices = configResult.data;
|
||||
|
||||
console.log(
|
||||
"Configuration indices chargée :",
|
||||
configIndices.length,
|
||||
@@ -20,8 +33,13 @@ function chargerDonnees() {
|
||||
console.error("Erreur API config indices :", configResult.message);
|
||||
}
|
||||
|
||||
// -----------------------------------------------------
|
||||
// Cours des actions
|
||||
// -----------------------------------------------------
|
||||
|
||||
if (coursResult.status === "success") {
|
||||
coursActionsData = coursResult.data;
|
||||
|
||||
console.log(
|
||||
"Cours actions chargés :",
|
||||
coursActionsData.length,
|
||||
@@ -31,184 +49,516 @@ function chargerDonnees() {
|
||||
console.error("Erreur API cours_actions :", coursResult.message);
|
||||
}
|
||||
|
||||
// -----------------------------------------------------
|
||||
// Mise à jour des vues
|
||||
// -----------------------------------------------------
|
||||
|
||||
afficherSyntheseCartes();
|
||||
|
||||
alimenterBandeauxTicker();
|
||||
|
||||
// -----------------------------------------------------
|
||||
// Statut de rafraîchissement
|
||||
// -----------------------------------------------------
|
||||
|
||||
const statut = document.getElementById("statut");
|
||||
|
||||
if (statut) {
|
||||
statut.innerText = `Dernière mise à jour : ${new Date().toLocaleTimeString()}`;
|
||||
}
|
||||
})
|
||||
.catch((error) =>
|
||||
console.error("Erreur réseau lors du chargement des API :", error),
|
||||
);
|
||||
|
||||
.catch((error) => {
|
||||
console.error("Erreur réseau lors du chargement des API :", error);
|
||||
});
|
||||
}
|
||||
|
||||
// =========================================================
|
||||
// AFFICHAGE DES CARTES
|
||||
// =========================================================
|
||||
|
||||
function afficherSyntheseCartes() {
|
||||
const container = document.getElementById("cards-container");
|
||||
|
||||
if (!container) return;
|
||||
|
||||
container.innerHTML = "";
|
||||
|
||||
// CARTES : On se base STRICTEMENT sur le champ afficher == 1
|
||||
// -------------------------------------------------------
|
||||
// On se base STRICTEMENT sur afficher == 1
|
||||
// -------------------------------------------------------
|
||||
|
||||
const actionsAffichees = configIndices.filter(
|
||||
(item) => String(item.afficher) === "1" || item.afficher == 1,
|
||||
);
|
||||
|
||||
if (actionsAffichees.length > 0) {
|
||||
actionsAffichees.forEach((conf) => {
|
||||
// ---------------------------------------------------
|
||||
// Croisement avec les cours en direct
|
||||
// ---------------------------------------------------
|
||||
|
||||
const d =
|
||||
coursActionsData.find(
|
||||
(item) => item.symbole === conf.symbole || item.isin === conf.isin,
|
||||
) || {};
|
||||
|
||||
const ecartValeur = parseFloat(d.variation || 0);
|
||||
|
||||
const isPositive = ecartValeur >= 0;
|
||||
|
||||
const badgeColor = isPositive ? "text-emerald-400" : "text-rose-400";
|
||||
|
||||
const sign = isPositive ? "+" : "";
|
||||
|
||||
// ---------------------------------------------------
|
||||
// Volume
|
||||
// ---------------------------------------------------
|
||||
|
||||
const volumeFormate = d.volume
|
||||
? parseInt(d.volume).toLocaleString("fr-FR")
|
||||
: "--";
|
||||
|
||||
// ---------------------------------------------------
|
||||
// Carte
|
||||
// ---------------------------------------------------
|
||||
|
||||
container.innerHTML += `
|
||||
<div class="bg-slate-800 p-4 rounded-2xl shadow-xl border border-slate-700 flex flex-col justify-between hover:border-slate-500 transition-all">
|
||||
<!-- En-tête : Nom / Ticker / ISIN / Indice à gauche ET Cours / Variation / Date à droite -->
|
||||
<div class="flex justify-between items-start mb-2">
|
||||
<div class="max-w-[150px]">
|
||||
<h3 class="text-xs font-bold text-white leading-tight truncate" title="${conf.nom || conf.indice}">
|
||||
${conf.nom || conf.indice} <span class="text-[11px] font-normal text-slate-400">(${conf.symbole || "N/A"})</span>
|
||||
</h3>
|
||||
<span class="text-[10px] text-slate-500 font-mono italic block mt-0.5">${conf.isin || "Aucun ISIN"}</span>
|
||||
<span class="text-[10px] font-semibold text-slate-400 uppercase tracking-wide block mt-0.5">${conf.indice || ""}</span>
|
||||
</div>
|
||||
|
||||
<div class="text-right">
|
||||
<div class="text-base font-extrabold text-white leading-tight">
|
||||
${d.cours ? parseFloat(d.cours).toLocaleString("fr-FR", { minimumFractionDigits: 2 }) : "--"}
|
||||
</div>
|
||||
<div class="text-xs font-bold ${badgeColor} leading-tight mt-0.5">
|
||||
${sign}${ecartValeur.toLocaleString("fr-FR", { minimumFractionDigits: 2, maximumFractionDigits: 4 })}
|
||||
<span class="font-semibold">(${sign}${parseFloat(d.variation_pct || 0).toFixed(2)}%)</span>
|
||||
</div>
|
||||
<div class="text-[8px] text-slate-500 font-mono mt-0.5">
|
||||
${d.date_cours || "--/--"}
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="bg-slate-800 p-4 rounded-2xl shadow-xl
|
||||
border border-slate-700 flex flex-col
|
||||
justify-between hover:border-slate-500
|
||||
transition-all"
|
||||
>
|
||||
|
||||
<!-- En-tête -->
|
||||
|
||||
<div
|
||||
class="flex justify-between
|
||||
items-start mb-2"
|
||||
>
|
||||
|
||||
<div class="max-w-[150px]">
|
||||
|
||||
<h3
|
||||
class="text-xs font-bold text-white
|
||||
leading-tight truncate"
|
||||
title="${conf.nom || conf.indice}"
|
||||
>
|
||||
|
||||
${conf.nom || conf.indice}
|
||||
|
||||
<span
|
||||
class="text-[11px]
|
||||
font-normal text-slate-400"
|
||||
>
|
||||
(${conf.symbole || "N/A"})
|
||||
</span>
|
||||
|
||||
</h3>
|
||||
|
||||
|
||||
<span
|
||||
class="text-[10px]
|
||||
text-slate-500
|
||||
font-mono italic
|
||||
block mt-0.5"
|
||||
>
|
||||
${conf.isin || "Aucun ISIN"}
|
||||
</span>
|
||||
|
||||
|
||||
<span
|
||||
class="text-[10px]
|
||||
font-semibold
|
||||
text-slate-400
|
||||
uppercase
|
||||
tracking-wide
|
||||
block mt-0.5"
|
||||
>
|
||||
${conf.indice || ""}
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Bloc Infos : Haut / Bas / Volume -->
|
||||
<div class="grid grid-cols-3 gap-1.5 bg-slate-900/50 p-1.5 rounded-xl border border-slate-700/50 text-center">
|
||||
<div>
|
||||
<span class="text-[8px] text-slate-400 block uppercase">Haut</span>
|
||||
<span class="text-[10px] font-semibold text-slate-200">${d.plus_haut ? parseFloat(d.plus_haut).toLocaleString("fr-FR", { minimumFractionDigits: 2 }) : "--"}</span>
|
||||
</div>
|
||||
<div>
|
||||
<span class="text-[8px] text-slate-400 block uppercase">Bas</span>
|
||||
<span class="text-[10px] font-semibold text-slate-200">${d.plus_bas ? parseFloat(d.plus_bas).toLocaleString("fr-FR", { minimumFractionDigits: 2 }) : "--"}</span>
|
||||
</div>
|
||||
<div>
|
||||
<span class="text-[8px] text-slate-400 block uppercase">Volume</span>
|
||||
<span class="text-[10px] font-semibold text-slate-200">${volumeFormate}</span>
|
||||
</div>
|
||||
|
||||
<!-- Cours -->
|
||||
|
||||
<div class="text-right">
|
||||
|
||||
<div
|
||||
class="text-base
|
||||
font-extrabold
|
||||
text-white
|
||||
leading-tight"
|
||||
>
|
||||
|
||||
${
|
||||
d.cours
|
||||
? parseFloat(d.cours).toLocaleString("fr-FR", {
|
||||
minimumFractionDigits: 2,
|
||||
})
|
||||
: "--"
|
||||
}
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Variation -->
|
||||
|
||||
<div
|
||||
class="text-xs
|
||||
font-bold
|
||||
${badgeColor}
|
||||
leading-tight
|
||||
mt-0.5"
|
||||
>
|
||||
|
||||
${sign}
|
||||
|
||||
${ecartValeur.toLocaleString("fr-FR", {
|
||||
minimumFractionDigits: 2,
|
||||
maximumFractionDigits: 4,
|
||||
})}
|
||||
|
||||
<span class="font-semibold">
|
||||
|
||||
(
|
||||
${sign}${parseFloat(d.variation_pct || 0).toFixed(2)}%
|
||||
)
|
||||
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Date -->
|
||||
|
||||
<div
|
||||
class="text-[8px]
|
||||
text-slate-500
|
||||
font-mono
|
||||
mt-0.5"
|
||||
>
|
||||
|
||||
${d.date_cours || "--/--"}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Haut / Bas / Volume -->
|
||||
|
||||
<div
|
||||
class="grid grid-cols-3 gap-1.5
|
||||
bg-slate-900/50
|
||||
p-1.5 rounded-xl
|
||||
border border-slate-700/50
|
||||
text-center"
|
||||
>
|
||||
|
||||
<div>
|
||||
|
||||
<span
|
||||
class="text-[8px]
|
||||
text-slate-400
|
||||
block uppercase"
|
||||
>
|
||||
Haut
|
||||
</span>
|
||||
|
||||
<span
|
||||
class="text-[10px]
|
||||
font-semibold
|
||||
text-slate-200"
|
||||
>
|
||||
|
||||
${
|
||||
d.plus_haut
|
||||
? parseFloat(d.plus_haut).toLocaleString("fr-FR", {
|
||||
minimumFractionDigits: 2,
|
||||
})
|
||||
: "--"
|
||||
}
|
||||
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div>
|
||||
|
||||
<span
|
||||
class="text-[8px]
|
||||
text-slate-400
|
||||
block uppercase"
|
||||
>
|
||||
Bas
|
||||
</span>
|
||||
|
||||
<span
|
||||
class="text-[10px]
|
||||
font-semibold
|
||||
text-slate-200"
|
||||
>
|
||||
|
||||
${
|
||||
d.plus_bas
|
||||
? parseFloat(d.plus_bas).toLocaleString("fr-FR", {
|
||||
minimumFractionDigits: 2,
|
||||
})
|
||||
: "--"
|
||||
}
|
||||
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div>
|
||||
|
||||
<span
|
||||
class="text-[8px]
|
||||
text-slate-400
|
||||
block uppercase"
|
||||
>
|
||||
Volume
|
||||
</span>
|
||||
|
||||
<span
|
||||
class="text-[10px]
|
||||
font-semibold
|
||||
text-slate-200"
|
||||
>
|
||||
${volumeFormate}
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
`;
|
||||
});
|
||||
} else {
|
||||
container.innerHTML = `
|
||||
<div class="col-span-3 text-center py-10 bg-slate-800/30 rounded-2xl border border-slate-800">
|
||||
<span class="text-slate-400 text-sm">Aucune action configurée à 'afficher = 1'.</span>
|
||||
|
||||
<div
|
||||
class="col-span-3
|
||||
text-center
|
||||
py-10
|
||||
bg-slate-800/30
|
||||
rounded-2xl
|
||||
border border-slate-800"
|
||||
>
|
||||
|
||||
<span
|
||||
class="text-slate-400
|
||||
text-sm"
|
||||
>
|
||||
Aucune action configurée à 'afficher = 1'.
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
`;
|
||||
}
|
||||
}
|
||||
|
||||
// =========================================================
|
||||
// PRÉPARATION DES BANDEAUX
|
||||
// =========================================================
|
||||
|
||||
function alimenterBandeauxTicker() {
|
||||
const preparerDonneesTicker = (nomIndiceRecherche) => {
|
||||
const cleanSearch = nomIndiceRecherche
|
||||
.replace(/[^a-z0-9]/gi, "")
|
||||
.toLowerCase();
|
||||
|
||||
// BANDEAUX : On prend l'intégralité des actions disponibles pour l'indice (via coursActionsData ou configIndices)
|
||||
// ---------------------------------------------------
|
||||
// Recherche dans coursActionsData
|
||||
// ---------------------------------------------------
|
||||
|
||||
let liste = coursActionsData.filter((item) => {
|
||||
if (!item.indice) return false;
|
||||
if (!item.indice) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const cleanItemIndice = item.indice
|
||||
.replace(/[^a-z0-9]/gi, "")
|
||||
.toLowerCase();
|
||||
|
||||
return cleanItemIndice === cleanSearch;
|
||||
});
|
||||
|
||||
// ---------------------------------------------------
|
||||
// Si aucune donnée, utiliser configIndices
|
||||
// ---------------------------------------------------
|
||||
|
||||
if (liste.length === 0) {
|
||||
liste = configIndices.filter((item) => {
|
||||
if (!item.indice) return false;
|
||||
if (!item.indice) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const cleanItemIndice = item.indice
|
||||
.replace(/[^a-z0-9]/gi, "")
|
||||
.toLowerCase();
|
||||
|
||||
return cleanItemIndice === cleanSearch;
|
||||
});
|
||||
}
|
||||
|
||||
// ---------------------------------------------------
|
||||
// Fusion et formatage
|
||||
// ---------------------------------------------------
|
||||
|
||||
let listeFinale = liste.map((conf) => {
|
||||
let coursMatch =
|
||||
const coursMatch =
|
||||
coursActionsData.find(
|
||||
(item) => item.symbole === conf.symbole || item.isin === conf.isin,
|
||||
) || conf;
|
||||
|
||||
return {
|
||||
nom: conf.nom || coursMatch.nom || conf.symbole,
|
||||
|
||||
cours: coursMatch.cours || 0,
|
||||
|
||||
variation_pct: coursMatch.variation_pct || 0,
|
||||
};
|
||||
});
|
||||
|
||||
// ---------------------------------------------------
|
||||
// Tri alphabétique
|
||||
// ---------------------------------------------------
|
||||
|
||||
listeFinale.sort((a, b) => a.nom.localeCompare(b.nom));
|
||||
|
||||
return listeFinale;
|
||||
};
|
||||
|
||||
// -------------------------------------------------------
|
||||
// Remplissage des trois bandeaux
|
||||
// -------------------------------------------------------
|
||||
|
||||
remplirUnBandeau("ticker-cac40", preparerDonneesTicker("CAC40"));
|
||||
|
||||
remplirUnBandeau("ticker-ibex35", preparerDonneesTicker("IBEX35"));
|
||||
|
||||
remplirUnBandeau("ticker-dowjones", preparerDonneesTicker("DOWJONES"));
|
||||
}
|
||||
|
||||
// =========================================================
|
||||
// REMPLIR UN BANDEAU
|
||||
// =========================================================
|
||||
|
||||
function remplirUnBandeau(elementId, donneesTriees) {
|
||||
const container = document.getElementById(elementId);
|
||||
|
||||
if (!container) return;
|
||||
|
||||
if (donneesTriees.length === 0) {
|
||||
container.innerHTML = `<span class="px-4 text-slate-500 text-xs">Aucune donnée disponible</span>`;
|
||||
container.innerHTML = `<span class="px-4 text-slate-500 text-xs">
|
||||
Aucune donnée disponible
|
||||
</span>`;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
let blocs = "";
|
||||
|
||||
donneesTriees.forEach((item) => {
|
||||
const isPositive = parseFloat(item.variation_pct || 0) >= 0;
|
||||
|
||||
const colorClass = isPositive ? "text-emerald-400" : "text-rose-400";
|
||||
|
||||
const sign = isPositive ? "+" : "";
|
||||
|
||||
const coursFormate = parseFloat(item.cours || 0).toLocaleString("fr-FR", {
|
||||
minimumFractionDigits: 2,
|
||||
});
|
||||
|
||||
const variationFormatee = parseFloat(item.variation_pct || 0).toFixed(2);
|
||||
|
||||
blocs += `
|
||||
<div class="inline-flex items-center px-6 space-x-3 border-r border-slate-800/80 whitespace-nowrap">
|
||||
<span class="font-bold text-white">${item.nom}</span>
|
||||
<span class="text-slate-300">${coursFormate}</span>
|
||||
<span class="${colorClass} font-semibold">${sign}${variationFormatee}%</span>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="inline-flex
|
||||
items-center
|
||||
px-6
|
||||
space-x-3
|
||||
border-r
|
||||
border-slate-800/80
|
||||
whitespace-nowrap"
|
||||
>
|
||||
|
||||
<span
|
||||
class="font-bold text-white"
|
||||
>
|
||||
${item.nom}
|
||||
</span>
|
||||
|
||||
<span
|
||||
class="text-slate-300"
|
||||
>
|
||||
${coursFormate}
|
||||
</span>
|
||||
|
||||
<span
|
||||
class="${colorClass}
|
||||
font-semibold"
|
||||
>
|
||||
${sign}${variationFormatee}%
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
`;
|
||||
});
|
||||
|
||||
// Triple répétition pour assurer
|
||||
// le défilement continu
|
||||
|
||||
container.innerHTML = blocs + blocs + blocs;
|
||||
|
||||
const dureeTotale = Math.max(20, donneesTriees.length * 4);
|
||||
|
||||
container.style.animationDuration = `${dureeTotale}s`;
|
||||
}
|
||||
|
||||
// Démarrage
|
||||
// =========================================================
|
||||
// DÉMARRAGE
|
||||
// =========================================================
|
||||
|
||||
// Chargement initial
|
||||
chargerDonnees();
|
||||
|
||||
// Rafraîchissement toutes les 60 secondes
|
||||
setInterval(chargerDonnees, 60000);
|
||||
|
||||
// =========================================================
|
||||
// RACCOURCIS CLAVIER
|
||||
// =========================================================
|
||||
|
||||
document.addEventListener("keydown", (event) => {
|
||||
// F1 → Administration
|
||||
|
||||
if (event.key === "F1") {
|
||||
event.preventDefault();
|
||||
|
||||
window.location.href = "https://www.giraud-finance.com/html/admin.html";
|
||||
}
|
||||
|
||||
// F2 → Site principal
|
||||
|
||||
if (event.key === "F2") {
|
||||
event.preventDefault();
|
||||
|
||||
window.location.href = "https://giraud-finance.com";
|
||||
}
|
||||
});
|
||||
|
||||
+916
@@ -0,0 +1,916 @@
|
||||
"use strict";
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* CONFIGURATION
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
const API_LOGIN = "../php/api_login.php";
|
||||
const API = "../php/securite/";
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* ELEMENTS HTML
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
const listeUtilisateurs = document.getElementById("listeUtilisateurs");
|
||||
|
||||
const message = document.getElementById("message");
|
||||
|
||||
const btnNouvelUtilisateur = document.getElementById("btnNouvelUtilisateur");
|
||||
|
||||
/* Modal création */
|
||||
|
||||
const modalCreation = document.getElementById("modalCreation");
|
||||
|
||||
const formCreation = document.getElementById("formCreation");
|
||||
|
||||
const btnAnnulerCreation = document.getElementById("btnAnnulerCreation");
|
||||
|
||||
const creationNom = document.getElementById("creationNom");
|
||||
|
||||
const creationPass = document.getElementById("creationPass");
|
||||
|
||||
const creationPass2 = document.getElementById("creationPass2");
|
||||
|
||||
/* Modal mot de passe */
|
||||
|
||||
const modalPassword = document.getElementById("modalPassword");
|
||||
|
||||
const formPassword = document.getElementById("formPassword");
|
||||
|
||||
const btnAnnulerPassword = document.getElementById("btnAnnulerPassword");
|
||||
|
||||
const passwordId = document.getElementById("passwordId");
|
||||
|
||||
const passwordUtilisateur = document.getElementById("passwordUtilisateur");
|
||||
|
||||
const nouveauPass = document.getElementById("nouveauPass");
|
||||
|
||||
const nouveauPass2 = document.getElementById("nouveauPass2");
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* MESSAGE
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
function afficherMessage(texte, type = "success") {
|
||||
if (!message) {
|
||||
return;
|
||||
}
|
||||
|
||||
message.textContent = texte;
|
||||
|
||||
message.className = "mb-4 px-4 py-3 rounded-lg";
|
||||
|
||||
if (type === "success") {
|
||||
message.classList.add(
|
||||
"bg-emerald-900",
|
||||
"text-emerald-300",
|
||||
"border",
|
||||
"border-emerald-700",
|
||||
);
|
||||
} else if (type === "error") {
|
||||
message.classList.add(
|
||||
"bg-rose-900",
|
||||
"text-rose-300",
|
||||
"border",
|
||||
"border-rose-700",
|
||||
);
|
||||
} else {
|
||||
message.classList.add(
|
||||
"bg-yellow-900",
|
||||
"text-yellow-300",
|
||||
"border",
|
||||
"border-yellow-700",
|
||||
);
|
||||
}
|
||||
|
||||
setTimeout(() => {
|
||||
message.classList.add("hidden");
|
||||
}, 5000);
|
||||
}
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* VERIFICATION SESSION
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
async function verifierSession() {
|
||||
try {
|
||||
const response = await fetch(API_LOGIN, {
|
||||
method: "POST",
|
||||
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
|
||||
credentials: "same-origin",
|
||||
|
||||
cache: "no-store",
|
||||
|
||||
body: JSON.stringify({
|
||||
action: "check",
|
||||
}),
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
window.location.href = "/html/admin.html";
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
const data = await response.json();
|
||||
|
||||
console.log("Vérification session :", data);
|
||||
|
||||
if (data.status !== "success" || data.authenticated !== true) {
|
||||
window.location.href = "/html/admin.html";
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
} catch (error) {
|
||||
console.error("Erreur vérification session :", error);
|
||||
|
||||
window.location.href = "/html/admin.html";
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* ECHAPPER HTML
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
function escapeHtml(value) {
|
||||
if (value === null || value === undefined) {
|
||||
return "";
|
||||
}
|
||||
|
||||
return String(value)
|
||||
.replace(/&/g, "&")
|
||||
|
||||
.replace(/</g, "<")
|
||||
|
||||
.replace(/>/g, ">")
|
||||
|
||||
.replace(/"/g, """)
|
||||
|
||||
.replace(/'/g, "'");
|
||||
}
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* FORMAT DATE
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
function formaterDate(date) {
|
||||
if (!date || date === "0000-00-00 00:00:00") {
|
||||
return "Jamais";
|
||||
}
|
||||
|
||||
const d = new Date(String(date).replace(" ", "T"));
|
||||
|
||||
if (Number.isNaN(d.getTime())) {
|
||||
return date;
|
||||
}
|
||||
|
||||
return d.toLocaleString("fr-FR", {
|
||||
dateStyle: "short",
|
||||
timeStyle: "short",
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* CHARGER UTILISATEURS
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
async function chargerUtilisateurs() {
|
||||
if (!listeUtilisateurs) {
|
||||
console.error("ERREUR : #listeUtilisateurs introuvable dans securite.html");
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
listeUtilisateurs.innerHTML = `
|
||||
|
||||
<tr>
|
||||
|
||||
<td
|
||||
colspan="5"
|
||||
class="text-center px-6 py-8 text-slate-400"
|
||||
>
|
||||
|
||||
Chargement...
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
`;
|
||||
|
||||
try {
|
||||
const response = await fetch(API + "users.php", {
|
||||
method: "GET",
|
||||
|
||||
credentials: "same-origin",
|
||||
|
||||
cache: "no-store",
|
||||
});
|
||||
|
||||
console.log("users.php HTTP :", response.status);
|
||||
|
||||
if (response.status === 401) {
|
||||
window.location.href = "/html/admin.html";
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const data = await response.json();
|
||||
|
||||
console.log("Réponse users.php :", data);
|
||||
|
||||
if (data.success !== true) {
|
||||
throw new Error(
|
||||
data.message || "Impossible de charger les utilisateurs.",
|
||||
);
|
||||
}
|
||||
|
||||
const utilisateurs = Array.isArray(data.users) ? data.users : [];
|
||||
|
||||
console.log("Utilisateurs reçus :", utilisateurs.length);
|
||||
|
||||
console.table(utilisateurs);
|
||||
|
||||
afficherUtilisateurs(utilisateurs);
|
||||
} catch (error) {
|
||||
console.error("Erreur chargement utilisateurs :", error);
|
||||
|
||||
listeUtilisateurs.innerHTML = `
|
||||
|
||||
<tr>
|
||||
|
||||
<td
|
||||
colspan="5"
|
||||
class="text-center px-6 py-8 text-rose-400"
|
||||
>
|
||||
|
||||
Erreur lors du chargement des utilisateurs.
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
`;
|
||||
|
||||
afficherMessage(error.message || "Erreur lors du chargement.", "error");
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* AFFICHER UTILISATEURS
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
function afficherUtilisateurs(utilisateurs) {
|
||||
if (!utilisateurs || utilisateurs.length === 0) {
|
||||
listeUtilisateurs.innerHTML = `
|
||||
|
||||
<tr>
|
||||
|
||||
<td
|
||||
colspan="5"
|
||||
class="text-center px-6 py-8 text-slate-400"
|
||||
>
|
||||
|
||||
Aucun utilisateur.
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
`;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
listeUtilisateurs.innerHTML = utilisateurs
|
||||
.map((utilisateur) => {
|
||||
const id = Number(utilisateur.id);
|
||||
|
||||
const nom = escapeHtml(utilisateur.nom);
|
||||
|
||||
const actif = Number(utilisateur.actif) === 1;
|
||||
|
||||
const created = formaterDate(utilisateur.created_at);
|
||||
|
||||
const dernierLogin = formaterDate(utilisateur.dernier_login);
|
||||
|
||||
return `
|
||||
|
||||
<tr
|
||||
class="hover:bg-slate-700/50 transition"
|
||||
>
|
||||
|
||||
<!-- UTILISATEUR -->
|
||||
|
||||
<td class="px-6 py-4">
|
||||
|
||||
<div
|
||||
class="font-semibold text-white"
|
||||
>
|
||||
|
||||
${nom}
|
||||
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="text-xs text-slate-500"
|
||||
>
|
||||
|
||||
ID : ${id}
|
||||
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<!-- CREATION -->
|
||||
|
||||
<td
|
||||
class="px-6 py-4
|
||||
text-sm
|
||||
text-slate-300"
|
||||
>
|
||||
|
||||
${created}
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<!-- DERNIERE CONNEXION -->
|
||||
|
||||
<td
|
||||
class="px-6 py-4
|
||||
text-sm
|
||||
text-slate-300"
|
||||
>
|
||||
|
||||
${dernierLogin}
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<!-- STATUT -->
|
||||
|
||||
<td
|
||||
class="px-6 py-4
|
||||
text-center"
|
||||
>
|
||||
|
||||
${
|
||||
actif
|
||||
? `
|
||||
|
||||
<span
|
||||
class="
|
||||
inline-flex
|
||||
px-3
|
||||
py-1
|
||||
rounded-full
|
||||
text-xs
|
||||
font-semibold
|
||||
bg-emerald-900
|
||||
text-emerald-300
|
||||
"
|
||||
>
|
||||
|
||||
Actif
|
||||
|
||||
</span>
|
||||
|
||||
`
|
||||
: `
|
||||
|
||||
<span
|
||||
class="
|
||||
inline-flex
|
||||
px-3
|
||||
py-1
|
||||
rounded-full
|
||||
text-xs
|
||||
font-semibold
|
||||
bg-rose-900
|
||||
text-rose-300
|
||||
"
|
||||
>
|
||||
|
||||
Inactif
|
||||
|
||||
</span>
|
||||
|
||||
`
|
||||
}
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
<!-- ACTIONS -->
|
||||
|
||||
<td
|
||||
class="px-6 py-4"
|
||||
>
|
||||
|
||||
<div
|
||||
class="
|
||||
flex
|
||||
justify-end
|
||||
gap-2
|
||||
"
|
||||
>
|
||||
|
||||
<button
|
||||
|
||||
type="button"
|
||||
|
||||
class="
|
||||
btn-password
|
||||
bg-orange-600
|
||||
hover:bg-orange-500
|
||||
text-white
|
||||
text-xs
|
||||
font-semibold
|
||||
px-3
|
||||
py-2
|
||||
rounded-lg
|
||||
transition
|
||||
"
|
||||
|
||||
data-id="${id}"
|
||||
|
||||
data-nom="${escapeHtml(utilisateur.nom)}"
|
||||
|
||||
>
|
||||
|
||||
Mot de passe
|
||||
|
||||
</button>
|
||||
|
||||
|
||||
<button
|
||||
|
||||
type="button"
|
||||
|
||||
class="
|
||||
btn-status
|
||||
${
|
||||
actif
|
||||
? "bg-rose-600 hover:bg-rose-500"
|
||||
: "bg-emerald-600 hover:bg-emerald-500"
|
||||
}
|
||||
text-white
|
||||
text-xs
|
||||
font-semibold
|
||||
px-3
|
||||
py-2
|
||||
rounded-lg
|
||||
transition
|
||||
"
|
||||
|
||||
data-id="${id}"
|
||||
|
||||
data-actif="${actif ? 1 : 0}"
|
||||
|
||||
>
|
||||
|
||||
${actif ? "Désactiver" : "Activer"}
|
||||
|
||||
</button>
|
||||
|
||||
</div>
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
`;
|
||||
})
|
||||
.join("");
|
||||
|
||||
/*
|
||||
* Boutons mot de passe
|
||||
*/
|
||||
|
||||
document.querySelectorAll(".btn-password").forEach((button) => {
|
||||
button.addEventListener("click", () => {
|
||||
ouvrirModalPassword(button.dataset.id, button.dataset.nom);
|
||||
});
|
||||
});
|
||||
|
||||
/*
|
||||
* Boutons statut
|
||||
*/
|
||||
|
||||
document.querySelectorAll(".btn-status").forEach((button) => {
|
||||
button.addEventListener("click", () => {
|
||||
changerStatut(button.dataset.id, Number(button.dataset.actif));
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* MODALE CREATION
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
function ouvrirModalCreation() {
|
||||
if (!modalCreation) {
|
||||
return;
|
||||
}
|
||||
|
||||
modalCreation.classList.remove("hidden");
|
||||
|
||||
modalCreation.classList.add("flex");
|
||||
|
||||
setTimeout(() => creationNom?.focus(), 100);
|
||||
}
|
||||
|
||||
function fermerModalCreation() {
|
||||
if (!modalCreation) {
|
||||
return;
|
||||
}
|
||||
|
||||
modalCreation.classList.add("hidden");
|
||||
|
||||
modalCreation.classList.remove("flex");
|
||||
|
||||
formCreation?.reset();
|
||||
}
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* CREER UTILISATEUR
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
async function creerUtilisateur() {
|
||||
const nom = creationNom.value.trim();
|
||||
|
||||
const pass = creationPass.value;
|
||||
|
||||
const pass2 = creationPass2.value;
|
||||
|
||||
if (!nom) {
|
||||
afficherMessage("Veuillez saisir un nom utilisateur.", "error");
|
||||
|
||||
creationNom.focus();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (pass.length < 4) {
|
||||
afficherMessage(
|
||||
"Le mot de passe doit contenir au moins 4 caractères.",
|
||||
"error",
|
||||
);
|
||||
|
||||
creationPass.focus();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (pass !== pass2) {
|
||||
afficherMessage("Les deux mots de passe ne correspondent pas.", "error");
|
||||
|
||||
creationPass2.focus();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const bouton = formCreation.querySelector('button[type="submit"]');
|
||||
|
||||
bouton.disabled = true;
|
||||
|
||||
bouton.textContent = "Création...";
|
||||
|
||||
try {
|
||||
const response = await fetch(API + "create.php", {
|
||||
method: "POST",
|
||||
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
|
||||
credentials: "same-origin",
|
||||
|
||||
body: JSON.stringify({
|
||||
nom: nom,
|
||||
pass: pass,
|
||||
}),
|
||||
});
|
||||
|
||||
if (response.status === 401) {
|
||||
window.location.href = "/html/admin.html";
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const data = await response.json();
|
||||
|
||||
if (data.success !== true) {
|
||||
throw new Error(data.message || "Impossible de créer l'utilisateur.");
|
||||
}
|
||||
|
||||
fermerModalCreation();
|
||||
|
||||
afficherMessage("Utilisateur créé avec succès.", "success");
|
||||
|
||||
await chargerUtilisateurs();
|
||||
} catch (error) {
|
||||
console.error("Erreur création utilisateur :", error);
|
||||
|
||||
afficherMessage(error.message || "Erreur lors de la création.", "error");
|
||||
} finally {
|
||||
bouton.disabled = false;
|
||||
|
||||
bouton.textContent = "Créer";
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* MODALE PASSWORD
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
function ouvrirModalPassword(id, nom) {
|
||||
passwordId.value = id;
|
||||
|
||||
passwordUtilisateur.textContent = "Utilisateur : " + nom;
|
||||
|
||||
nouveauPass.value = "";
|
||||
|
||||
nouveauPass2.value = "";
|
||||
|
||||
modalPassword.classList.remove("hidden");
|
||||
|
||||
modalPassword.classList.add("flex");
|
||||
|
||||
setTimeout(() => nouveauPass?.focus(), 100);
|
||||
}
|
||||
|
||||
function fermerModalPassword() {
|
||||
modalPassword.classList.add("hidden");
|
||||
|
||||
modalPassword.classList.remove("flex");
|
||||
|
||||
formPassword?.reset();
|
||||
|
||||
passwordId.value = "";
|
||||
|
||||
passwordUtilisateur.textContent = "";
|
||||
}
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* MODIFIER PASSWORD
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
async function modifierPassword() {
|
||||
const id = Number(passwordId.value);
|
||||
|
||||
const pass = nouveauPass.value;
|
||||
|
||||
const pass2 = nouveauPass2.value;
|
||||
|
||||
if (!id) {
|
||||
afficherMessage("Utilisateur invalide.", "error");
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (pass.length < 4) {
|
||||
afficherMessage(
|
||||
"Le mot de passe doit contenir au moins 4 caractères.",
|
||||
"error",
|
||||
);
|
||||
|
||||
nouveauPass.focus();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (pass !== pass2) {
|
||||
afficherMessage("Les deux mots de passe ne correspondent pas.", "error");
|
||||
|
||||
nouveauPass2.focus();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const bouton = formPassword.querySelector('button[type="submit"]');
|
||||
|
||||
bouton.disabled = true;
|
||||
|
||||
bouton.textContent = "Modification...";
|
||||
|
||||
try {
|
||||
const response = await fetch(API + "password.php", {
|
||||
method: "POST",
|
||||
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
|
||||
credentials: "same-origin",
|
||||
|
||||
body: JSON.stringify({
|
||||
id: id,
|
||||
pass: pass,
|
||||
}),
|
||||
});
|
||||
|
||||
if (response.status === 401) {
|
||||
window.location.href = "/html/admin.html";
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const data = await response.json();
|
||||
|
||||
if (data.success !== true) {
|
||||
throw new Error(
|
||||
data.message || "Impossible de modifier le mot de passe.",
|
||||
);
|
||||
}
|
||||
|
||||
fermerModalPassword();
|
||||
|
||||
afficherMessage("Mot de passe modifié avec succès.", "success");
|
||||
} catch (error) {
|
||||
console.error("Erreur modification mot de passe :", error);
|
||||
|
||||
afficherMessage(
|
||||
error.message || "Erreur lors de la modification.",
|
||||
"error",
|
||||
);
|
||||
} finally {
|
||||
bouton.disabled = false;
|
||||
|
||||
bouton.textContent = "Modifier";
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* CHANGER STATUT
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
async function changerStatut(id, actifActuel) {
|
||||
const nouveauStatut = actifActuel === 1 ? 0 : 1;
|
||||
|
||||
const confirmation =
|
||||
nouveauStatut === 1
|
||||
? "Voulez-vous activer cet utilisateur ?"
|
||||
: "Voulez-vous désactiver cet utilisateur ?";
|
||||
|
||||
if (!window.confirm(confirmation)) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
const response = await fetch(API + "status.php", {
|
||||
method: "POST",
|
||||
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
|
||||
credentials: "same-origin",
|
||||
|
||||
body: JSON.stringify({
|
||||
id: Number(id),
|
||||
actif: nouveauStatut,
|
||||
}),
|
||||
});
|
||||
|
||||
if (response.status === 401) {
|
||||
window.location.href = "/html/admin.html";
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const data = await response.json();
|
||||
|
||||
if (data.success !== true) {
|
||||
throw new Error(data.message || "Impossible de modifier le statut.");
|
||||
}
|
||||
|
||||
afficherMessage(
|
||||
nouveauStatut === 1 ? "Utilisateur activé." : "Utilisateur désactivé.",
|
||||
"success",
|
||||
);
|
||||
|
||||
await chargerUtilisateurs();
|
||||
} catch (error) {
|
||||
console.error("Erreur changement statut :", error);
|
||||
|
||||
afficherMessage(
|
||||
error.message || "Erreur lors de la modification.",
|
||||
"error",
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* EVENEMENTS
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
btnNouvelUtilisateur?.addEventListener("click", ouvrirModalCreation);
|
||||
|
||||
btnAnnulerCreation?.addEventListener("click", fermerModalCreation);
|
||||
|
||||
btnAnnulerPassword?.addEventListener("click", fermerModalPassword);
|
||||
|
||||
formCreation?.addEventListener("submit", (event) => {
|
||||
event.preventDefault();
|
||||
|
||||
creerUtilisateur();
|
||||
});
|
||||
|
||||
formPassword?.addEventListener("submit", (event) => {
|
||||
event.preventDefault();
|
||||
|
||||
modifierPassword();
|
||||
});
|
||||
|
||||
/*
|
||||
* Fermeture modales
|
||||
*/
|
||||
|
||||
modalCreation?.addEventListener("click", (event) => {
|
||||
if (event.target === modalCreation) {
|
||||
fermerModalCreation();
|
||||
}
|
||||
});
|
||||
|
||||
modalPassword?.addEventListener("click", (event) => {
|
||||
if (event.target === modalPassword) {
|
||||
fermerModalPassword();
|
||||
}
|
||||
});
|
||||
|
||||
/*
|
||||
* ESC
|
||||
*/
|
||||
|
||||
document.addEventListener("keydown", (event) => {
|
||||
if (event.key !== "Escape") {
|
||||
return;
|
||||
}
|
||||
|
||||
if (modalCreation && !modalCreation.classList.contains("hidden")) {
|
||||
fermerModalCreation();
|
||||
}
|
||||
|
||||
if (modalPassword && !modalPassword.classList.contains("hidden")) {
|
||||
fermerModalPassword();
|
||||
}
|
||||
});
|
||||
|
||||
/*
|
||||
* =========================================================
|
||||
* INITIALISATION
|
||||
* =========================================================
|
||||
*/
|
||||
|
||||
document.addEventListener("DOMContentLoaded", async () => {
|
||||
console.log("securite.js chargé");
|
||||
|
||||
console.log("listeUtilisateurs =", listeUtilisateurs);
|
||||
|
||||
const authentifie = await verifierSession();
|
||||
|
||||
if (!authentifie) {
|
||||
return;
|
||||
}
|
||||
|
||||
await chargerUtilisateurs();
|
||||
});
|
||||
Reference in New Issue
Block a user