From 3a4053e079bbea6ccb8e989821ddd75d18aecc86 Mon Sep 17 00:00:00 2001 From: "clementine.desrucques" Date: Mon, 18 Oct 2021 15:29:09 +0200 Subject: [PATCH] --- .gitignore | 1 + src/java/com/test/beans/Pompier.java | 232 +++++++++++++++++++ src/java/com/test/forms/NouveauPompForm.java | 71 ++++++ web/META-INF/context.xml | 2 +- web/WEB-INF/accueilJSP.jsp | 4 +- 5 files changed, 307 insertions(+), 3 deletions(-) create mode 100644 src/java/com/test/beans/Pompier.java create mode 100644 src/java/com/test/forms/NouveauPompForm.java diff --git a/.gitignore b/.gitignore index 84c048a..e2cae22 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /build/ +/dist/ diff --git a/src/java/com/test/beans/Pompier.java b/src/java/com/test/beans/Pompier.java new file mode 100644 index 0000000..61ed702 --- /dev/null +++ b/src/java/com/test/beans/Pompier.java @@ -0,0 +1,232 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package com.test.beans; + +import java.util.Objects; + +/** + * + * @author clementine.desrucques + */ +public class Pompier { + private int id; + private int idCaserne; + private String nom; + private String prenom; + private int statut; + private String mail; + private String login; + private String mdp; + private int adrNo; + private String adrRue; + private String adrCP; + private String adrVille; + private int grade; + + public Pompier(int idCaserne, String nom, String prenom, int statut, String mail, String login, String mdp, int adrNo, String adrRue, String adrCP, String adrVille, int grade) { + this.idCaserne = idCaserne; + this.nom = nom; + this.prenom = prenom; + this.statut = statut; + this.mail = mail; + this.login = login; + this.mdp = mdp; + this.adrNo = adrNo; + this.adrRue = adrRue; + this.adrCP = adrCP; + this.adrVille = adrVille; + this.grade = grade; + } + + public Pompier(int id, int idCaserne, String nom, String prenom, int statut, String mail, String login, String mdp, int adrNo, String adrRue, String adrCP, String adrVille, int grade) { + this(idCaserne, nom, prenom, statut, mail, login, mdp, adrNo, adrRue, adrCP, adrVille, grade); + this.id = id; + } + + public int getId() { + return id; + } + + public void setId(int id) { + this.id = id; + } + + public int getIdCaserne() { + return idCaserne; + } + + public void setIdCaserne(int idCaserne) { + this.idCaserne = idCaserne; + } + + public String getNom() { + return nom; + } + + public void setNom(String nom) { + this.nom = nom; + } + + public String getPrenom() { + return prenom; + } + + public void setPrenom(String prenom) { + this.prenom = prenom; + } + + public int getStatut() { + return statut; + } + + public void setStatut(int statut) { + this.statut = statut; + } + + public String getMail() { + return mail; + } + + public void setMail(String mail) { + this.mail = mail; + } + + public String getLogin() { + return login; + } + + public void setLogin(String login) { + this.login = login; + } + + public String getMdp() { + return mdp; + } + + public void setMdp(String mdp) { + this.mdp = mdp; + } + + public int getAdrNo() { + return adrNo; + } + + public void setAdrNo(int adrNo) { + this.adrNo = adrNo; + } + + public String getAdrRue() { + return adrRue; + } + + public void setAdrRue(String adrRue) { + this.adrRue = adrRue; + } + + public String getAdrCP() { + return adrCP; + } + + public void setAdrCP(String adrCP) { + this.adrCP = adrCP; + } + + public String getAdrVille() { + return adrVille; + } + + public void setAdrVille(String adrVille) { + this.adrVille = adrVille; + } + + public int getGrade() { + return grade; + } + + public void setGrade(int grade) { + this.grade = grade; + } + + @Override + public int hashCode() { + int hash = 7; + hash = 29 * hash + this.id; + hash = 29 * hash + this.idCaserne; + hash = 29 * hash + Objects.hashCode(this.nom); + hash = 29 * hash + Objects.hashCode(this.prenom); + hash = 29 * hash + this.statut; + hash = 29 * hash + Objects.hashCode(this.mail); + hash = 29 * hash + Objects.hashCode(this.login); + hash = 29 * hash + Objects.hashCode(this.mdp); + hash = 29 * hash + this.adrNo; + hash = 29 * hash + Objects.hashCode(this.adrRue); + hash = 29 * hash + Objects.hashCode(this.adrCP); + hash = 29 * hash + Objects.hashCode(this.adrVille); + hash = 29 * hash + this.grade; + return hash; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) { + return true; + } + if (obj == null) { + return false; + } + if (getClass() != obj.getClass()) { + return false; + } + final Pompier other = (Pompier) obj; + if (this.id != other.id) { + return false; + } + if (this.idCaserne != other.idCaserne) { + return false; + } + if (this.statut != other.statut) { + return false; + } + if (this.adrNo != other.adrNo) { + return false; + } + if (this.grade != other.grade) { + return false; + } + if (!Objects.equals(this.nom, other.nom)) { + return false; + } + if (!Objects.equals(this.prenom, other.prenom)) { + return false; + } + if (!Objects.equals(this.mail, other.mail)) { + return false; + } + if (!Objects.equals(this.login, other.login)) { + return false; + } + if (!Objects.equals(this.mdp, other.mdp)) { + return false; + } + if (!Objects.equals(this.adrRue, other.adrRue)) { + return false; + } + if (!Objects.equals(this.adrCP, other.adrCP)) { + return false; + } + if (!Objects.equals(this.adrVille, other.adrVille)) { + return false; + } + return true; + } + + @Override + public String toString() { + return "Pompier{" + "id=" + id + ", idCaserne=" + idCaserne + ", nom=" + nom + ", prenom=" + prenom + ", statut=" + statut + ", mail=" + mail + ", login=" + login + ", mdp=" + mdp + ", adrNo=" + adrNo + ", adrRue=" + adrRue + ", adrCP=" + adrCP + ", adrVille=" + adrVille + ", grade=" + grade + '}'; + } + + +} diff --git a/src/java/com/test/forms/NouveauPompForm.java b/src/java/com/test/forms/NouveauPompForm.java new file mode 100644 index 0000000..1f14178 --- /dev/null +++ b/src/java/com/test/forms/NouveauPompForm.java @@ -0,0 +1,71 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package com.test.forms; + +import com.mysql.cj.util.StringUtils; +import com.test.beans.Pompier; +import jakarta.servlet.http.HttpServletRequest; +import java.util.Enumeration; + +/** + * + * @author clementine.desrucques + */ +public class NouveauPompForm { + String message=""; + + public int verifNouveauClient(HttpServletRequest request) { + + // Contrôle du no de rue qui doit être numérique + String noRueString = request.getParameter("ztNoRue"); + boolean isNumeric = StringUtils.isStrictlyNumeric(noRueString); + if (!isNumeric) { + message = "Le no de rue doit être numérique"; + return -1; + } + int noRue = Integer.parseInt(noRueString); + + // Contrôle car "<" dans les zones de texte + //String [] lesSaisies = request.getParameterValues(noRueString); // Valeurs saisies + Enumeration lesNoms = request.getParameterNames(); + int erreur = 0; + while (erreur ==0 && lesNoms.hasMoreElements()) { + Object paramObjet=lesNoms.nextElement(); + String param=(String)paramObjet; + String value=request.getParameter(param); + if (value.contains("<")) { + message = "Veullez recommencer votre saisie, une anomalie sur une zone de saisie a été détectée "; + erreur=1; + } + } + if (erreur > 0) return -1; + +// Creation d'un objet de type Client avec les données transmises + Pompier unPompier = new Pompier(request.getParameter("idCaserne"), + request.getParameter("ztNom"), + request.getParameter("ztPrenom"), + request.getParameter("statut"), + request.getParameter("mail"), + request.getParameter("login"), + request.getParameter("ztMDP"), + noRue, + request.getParameter("ztRue"), + request.getParameter("ztCP"), + request.getParameter("ztVille"), + request.getParameter("grade")); + ClientMysql cm = new ClientMysql(); + int idClient = cm.createRP(unPompier); // Requête préparée + if (idClient == -1) { + message = "Erreur lors de la création du client"; + } + return idClient; + + } + + public String getMessage() { + return message; + } +} diff --git a/web/META-INF/context.xml b/web/META-INF/context.xml index f4d40e4..0e31b9c 100644 --- a/web/META-INF/context.xml +++ b/web/META-INF/context.xml @@ -1,2 +1,2 @@ - + diff --git a/web/WEB-INF/accueilJSP.jsp b/web/WEB-INF/accueilJSP.jsp index 4dac2ef..96f8760 100644 --- a/web/WEB-INF/accueilJSP.jsp +++ b/web/WEB-INF/accueilJSP.jsp @@ -8,14 +8,14 @@ <%@page contentType="text/html" pageEncoding="UTF-8"%> -

Bienvenue sur la nouvelle application de gestion des clients

+

Bienvenue

${empty param.ztPseudo ? "Veuillez vous authentifier" : "Authentification réussie"}
Authentification -
+