diff --git a/AP4/onfinfra/rest/rest.sh b/AP4/onfinfra/rest/rest.sh new file mode 100755 index 0000000..77a947d --- /dev/null +++ b/AP4/onfinfra/rest/rest.sh @@ -0,0 +1,53 @@ +#!/bin/bash +HOST=sio@onfarbo41 + +usage() { +echo -e "Usage: $0 [-f] \n\t-f: force mode\n\t-h: this help\n" 1>&2; exit 1; } + +restore() { + zcat "${filename}" | ssh "${HOST}" "mysql -u slam -pAzerty1+ bdarbre" +} + +confirm() { + read -r -n 1 -p "${1:-Confirmer?} [o/n]: " REPLY + case "${REPLY}" in + [oO]) echo ; restore ;; + [nN]) echo ; exit 1 ;; + *) printf " \033[31m %s \n\033[0m" "Entrée non valide" + esac +} + +while getopts "fh" OPT +do + case "${OPT}" in + f) + forcemode=1 + ;; + + h) + usage + exit 0 + ;; + esac +done +shift $((OPTIND-1)) + +filename="${1}" + +if [[ -z "${filename}" ]] ; then + usage +fi + +if [[ ! -r "${filename}" ]] ; then + echo "erreur ouverture fichier" + exit 1 +fi + +if [[ "${forcemode}" == 1 ]]; then + restore + exit 0 +else + confirm + exit 0 +fi +exit 0 diff --git a/AP4/onfinfra/sv/hebdomadaires/bdarbre-2.sql.gz b/AP4/onfinfra/sv/hebdomadaires/bdarbre-2.sql.gz new file mode 100644 index 0000000..1ac19fd Binary files /dev/null and b/AP4/onfinfra/sv/hebdomadaires/bdarbre-2.sql.gz differ diff --git a/AP4/onfinfra/sv/journalieres/bdarbre-5.sql.gz b/AP4/onfinfra/sv/journalieres/bdarbre-5.sql.gz new file mode 100644 index 0000000..e225aa8 Binary files /dev/null and b/AP4/onfinfra/sv/journalieres/bdarbre-5.sql.gz differ diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/affectation.php b/AP4/onfinfra/sv/sauvegardephp/Bucheron/affectation.php new file mode 100644 index 0000000..8aee3cf --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/affectation.php @@ -0,0 +1,38 @@ + + + + + + + + + +

Affectation

+
+
+ +
+
+ +
+ +
+ +
+ +
+ + +
+
+ + + + diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/BucheronSQL.php b/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/BucheronSQL.php new file mode 100644 index 0000000..640a4e1 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/BucheronSQL.php @@ -0,0 +1,23 @@ +_laConnexion = new Connexion(); + } + + function readAllBucheron() { + $stmt = $this->_laConnexion->dbh()->prepare("SELECT id, nom, prenom FROM bucheron"); + $valid = $stmt->execute(); + if (!$valid) { + $this->_laConnexion->afficherErreurSQL("Erreur recherche bucherons"); + } +// Parcours du jeu d'enregistrement +//Retourne dans un array + $tabBuchron = array("lesBucherons" => $stmt->fetchAll(PDO::FETCH_ASSOC)); + return $tabBuchron; + } + +} \ No newline at end of file diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/Connexion.php b/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/Connexion.php new file mode 100644 index 0000000..94a8cea --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/Connexion.php @@ -0,0 +1,42 @@ +_dbh = new PDO($dsn, $user, $pass, array(PDO::ATTR_PERSISTENT=>true, + PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\'')); // Connexion persistante + } + catch (PDOException $e) { + die("Erreur : " . $e->getMessage()); + } + } + /** afficherErreurSQL : + * Affichage de messages lors l'accès à la bdd avec une requete SQL + * @param $message : message a afficher + */ + function afficherErreurSQL($message, $sql="") { + echo $message . "
" . $sql . "
"; + $info = $this->_dbh->errorInfo(); + echo "Code erreur : " . $info[0] . ", Message : " . $info[2]; + die(); + } + function dbh() { + return $this->_dbh; + } +} diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/EspeceSQL.php b/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/EspeceSQL.php new file mode 100644 index 0000000..507a3f1 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/EspeceSQL.php @@ -0,0 +1,34 @@ +_laConnexion = new Connexion(); + } + + function readEspeceAddr($adresse) { + $stmt = $this->_laConnexion->dbh()->prepare("SELECT DISTINCT libelle FROM espece INNER JOIN arbre ON espece.id = arbre.idEspece WHERE arbre.idAdresse=:adr"); + $stmt->bindValue(':adr', $adresse); + $valid = $stmt->execute(); + if (!$valid) { + $this->_laConnexion->afficherErreurSQL("Erreur recherche espece"); + } + //Retourne dans un array + $tabEspece = array("lesEspeces" => $stmt->fetchAll(PDO::FETCH_ASSOC)); + return $tabEspece; + } + +} diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/SecteurSQL.php b/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/SecteurSQL.php new file mode 100644 index 0000000..5b44b97 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/bdd/SecteurSQL.php @@ -0,0 +1,34 @@ +_laConnexion = new Connexion(); + } + + function readAllSecteur() { + $stmt = $this->_laConnexion->dbh()->prepare("SELECT * FROM adresse"); + $valid = $stmt->execute(); + if (!$valid) { + $this->_laConnexion->afficherErreurSQL("Erreur recherche bucherons"); + } +// Parcours du jeu d'enregistrement +//Retourne dans un array + $tabSecteur = array("lesSecteurs" => $stmt->fetchAll(PDO::FETCH_ASSOC)); + return $tabSecteur; + } + +} diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/css/style.css b/AP4/onfinfra/sv/sauvegardephp/Bucheron/css/style.css new file mode 100644 index 0000000..ca6f145 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/css/style.css @@ -0,0 +1,13 @@ +#divBucheron { + padding-top: 5vh; +} + +#divSecteur{ + float: left; + padding-top: 5vh; +} + +#dataListEspeces { + float: right; + margin-left: 80vw; +} \ No newline at end of file diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/chargementClasses.php b/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/chargementClasses.php new file mode 100644 index 0000000..d81f296 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/chargementClasses.php @@ -0,0 +1,22 @@ +' . date('d-m-Y', strtotime("next".$day[$i])) . ""; + } +} //Si c'est le début de la semaine +else{ + for ($i = 0; $i < count($day); $i++) { + echo '"; + } +}; + +/*On peux comaprer les dates pour savoir si la date d'ajourd'hui est plus grande que celle d'hier +if (strtotime("now") > strtotime($day[0])) { + echo 'coucou'; +}; +echo date("d-m-y", strtotime("this week monday"));*/ diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/getBucheron.php b/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/getBucheron.php new file mode 100644 index 0000000..dc6fa4c --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/getBucheron.php @@ -0,0 +1,14 @@ +readAllBucheron(); + //Mise en format JSON + echo(json_encode($lesBucherons)); +?> \ No newline at end of file diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/getEspece.php b/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/getEspece.php new file mode 100644 index 0000000..466a233 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/getEspece.php @@ -0,0 +1,19 @@ +readEspeceAddr($idAddr); + echo(json_encode($lesEspeces)); +} + +?> \ No newline at end of file diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/getSecteur.php b/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/getSecteur.php new file mode 100644 index 0000000..3834893 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/include/getSecteur.php @@ -0,0 +1,10 @@ +readAllSecteur(); +//Mise en format JSON +echo(json_encode($lesSecteurs)); +?> \ No newline at end of file diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/index.php b/AP4/onfinfra/sv/sauvegardephp/Bucheron/index.php new file mode 100644 index 0000000..1684268 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/index.php @@ -0,0 +1,93 @@ + + + + + + + + +

Accueil

+ + +
+
+ Affiche que class 1 + Affiche que class 2 + Affiche que class 3 +
+
+
+ Choix class 1
+ Choix class 1
+ Choix class 2
+ Choix class 2
+ Choix class 2
+ Choix class 3
+
+ + +
+ + + diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/js/main.js b/AP4/onfinfra/sv/sauvegardephp/Bucheron/js/main.js new file mode 100644 index 0000000..aeaf981 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/js/main.js @@ -0,0 +1,210 @@ +//Cache et Iniitilise les différents element graphique de selection +var zSelBuch = document.getElementById("selectBuch"); +var zSelSect = document.getElementById("selectSecteur"); +var searchEspece = document.getElementById("choixEspece"); +var zAffichEspece = document.getElementById("selectEspece"); +zSelBuch.hidden = true; +zSelSect.hidden = true; +searchEspece.hidden = true; +zAffichEspece.hidden = true; + + +//Script pour le calendrier +var verrif = 0; +var alertActive = 0; +document.getElementById('selectD').onchange = function () { + var dateSelect = document.getElementById('selectD').value; + var date = Date.now(); + if (Date.parse(dateSelect) < date) { + alert("Date déjà passer") + alertActive = 1; + document.getElementById("selectBuch").hidden = true; + document.getElementById("selectSecteur").hidden = true; + } + if (verrif == 0 && alertActive == 0) { + getBucheron(); + document.getElementById("selectBuch").hidden = false; + verrif = 1; + } + alertActive = 0 + console.log(alertActive + "alert"); + console.log(verrif + "verif"); +} +//Fin calendrier + +selectBuch.onclick = function () { + var bucheron = zSelBuch.options[zSelBuch.selectedIndex].value; + console.log("bucheron =" + bucheron); + getSecteur() +} + +selectSecteur.onclick = function () { + var secteur = zSelSect.options[zSelSect.selectedIndex].value; + console.log("secteur = " + secteur) + getEspece(secteur); +} + +function cherche(catalog) { + //Appel la methode qui charge tous les produits + document.getElementById("choixEspece").addEventListener("keyup", function () { + //Initialise la variable options qui contiendra tout le html a integrer + AffichEspace(catalog, filtre.value); + }) +} + +function getBucheron() { + var file = "include/getBucheron.php" + var argument, valArgument = null; + getAll(zSelBuch, file, argument, valArgument); +} + +function getSecteur() { + var file = "include/getSecteur.php"; + var argument, valArgument = null; + getAll(zSelSect, file, argument, valArgument); +} + +function getEspece(secteur) { + var file = "include/getEspece.php" + var argument = "selectSecteur=" + getAll(searchEspece, file, argument, secteur) +} + +function getAll(placeHTML, fichierPHP, argument, valArgument) { + var options = ""; + placeHTML.innerHTML = ""; + // Construction de la requ�te + httpRequest = new XMLHttpRequest(); + // Code s'ex�cutant quand la r�ponse du serveur est arriv�e + httpRequest.onreadystatechange = function () { + if (httpRequest.readyState === XMLHttpRequest.DONE) { + // tout va bien, une r�ponse a �t� re�ue + if (httpRequest.status === 200) { + // Succ�s + //Recupération des données sous forme JSON + var json = JSON.parse(httpRequest.responseText); + /* Mise de ce résultat dans une autre fonction (ce qui évite d'utiliser la fonction de base + * qui effectue une requette a chaque fois*/ + var file = json; + //Appel de la methode cherche qui met en place le système de recherche + //Appel de la methode d'affichage de tout les produits + //produitBase(file, filtre.value); + if (placeHTML == zSelBuch) { + afficheBucheron(file); + } + if (placeHTML == zSelSect) { + afficheSecteur(file); + } + if (placeHTML == searchEspece) { + console.log("search") + cherche(file); + zAffichEspece.hidden = false; + } + } else { + alert("Erreur, status : " + httpRequest.status); + // il y a eu un probl�me avec la requ�te, + // par exemple la r�ponse peut �tre un code 404 (Non trouv�e) + // ou 500 (Erreur interne au serveur) + } + } else { + // pas encore pr�te + } + }; + // Initialisation et envoi de la requ�te + httpRequest.open('POST', fichierPHP, true); + httpRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); + if (argument == null && valArgument == null) { + httpRequest.send(); + } else { + httpRequest.send(argument + escape(valArgument)); + } + +} + +function afficheBucheron(listB) { + verrif = 0; + //Initialisation de la variable affiche qui contiendra tout le html a intégrer + var options = ""; + //parcours la liste des bucherons + for (var i = 0; i < listB.lesBucherons.length; i++) { + //Recupération des informations. + var id = listB.lesBucherons[i].id; + var nom = listB.lesBucherons[i].nom; + var prenom = listB.lesBucherons[i].prenom; + var complet = nom + " " + prenom; + //ajout du code HTML pour afficher les bucherons dans le select + options += ";" + } + //Insertion de la variable dans le html + document.getElementById("selectBuch").innerHTML = options; +} + +function afficheSecteur(listS) { + zSelSect.hidden = false; + //Initialisation de la variable affiche qui contiendra tout le html a intégrer + var options = ""; + //parcours la liste des bucherons + for (var i = 0; i < listS.lesSecteurs.length; i++) { + //Recupération des informations. + var id = listS.lesSecteurs[i].id; + var libelle = listS.lesSecteurs[i].libelle; + //ajout du code HTML pour afficher les bucherons dans le select + options += ";" + } + //Insertion de la variable dans le html + zSelSect.innerHTML = options; +} + +/*function cherche(listE) { + searchEspece.parentNode.hidden = false; + //Initialisation de la variable affiche qui contiendra tout le html a intégrer + var options = ""; + //parcours la liste des bucherons + for (var i = 0; i < listE.lesEspeces.length; i++) { + //Recupération des informations. + var libelle = listE.lesEspeces[i].libelle; + //ajout du code HTML pour afficher les bucherons dans le select + options += ";" + /*Si l'id du produit est différent d'une des valeurs des balise option + * présent dans zlProduit alors ajoute ce dernier dans la variable qui servira pour + * integrer le html dans zlProduit*/ + if (zAffichEspece.querySelectorAll("option").value != id) + //incrémenation de la variable + options += opt; + } + } + //Insertion de la variable dans le html + zAffichEspece.innerHTML = options; + } else { + var affiche = ""; + for (var i = 0; i < catalog.lesEpeces.length; i++) { + //Recupération des informations + var id = catalog.lesEpeces[i].id; + var libelle = catalog.lesEpeces[i].libelle; + //ajout du code HTML pour afficher les produits dans la variable + affiche += ";" + //le "+=" veux dire de prendre l'ancien résultat et de l'addition avec le nouveau + } + //Insertion dans le html + zAffichEspece.innerHTML = affiche; + } +} \ No newline at end of file diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/metier/Bucheron.php b/AP4/onfinfra/sv/sauvegardephp/Bucheron/metier/Bucheron.php new file mode 100644 index 0000000..3f709b5 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/metier/Bucheron.php @@ -0,0 +1,70 @@ +_id = $_id; + $this->_nom = $_nom; + $this->_prenom = $_prenom; + $this->_login = $_login; + $this->_mdp = $_mdp; + } + + public function id() { + return $this->_id; + } + + public function nom() { + return $this->_nom; + } + + public function prenom() { + return $this->_prenom; + } + + public function login() { + return $this->_login; + } + + public function mdp() { + return $this->_mdp; + } + + public function setId($_id): void { + $this->_id = $_id; + } + + public function setNom($_nom): void { + $this->_nom = $_nom; + } + + public function setPrenom($_prenom): void { + $this->_prenom = $_prenom; + } + + public function setLogin($_login): void { + $this->_login = $_login; + } + + public function setMdp($_mdp): void { + $this->_mdp = $_mdp; + } + +} diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/private/config.properties b/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/private/config.properties new file mode 100644 index 0000000..e69de29 diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/private/private.properties b/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/private/private.properties new file mode 100644 index 0000000..8ee1269 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/private/private.properties @@ -0,0 +1,6 @@ +copy.src.files=false +copy.src.on.open=false +copy.src.target=/var/www/PhpProject3 +index.file=index.php +run.as=LOCAL +url=http://localhost/PHPProjects/Bucheron/ diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/private/private.xml b/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/private/private.xml new file mode 100644 index 0000000..84963e3 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/private/private.xml @@ -0,0 +1,21 @@ + + + + + + file:/home/pierre.perdigues/PHPProjects/Bucheron/css/style.css + file:/home/pierre.perdigues/PHPProjects/Bucheron/index.php + file:/home/pierre.perdigues/PHPProjects/Bucheron/include/getSecteur.php + file:/home/pierre.perdigues/PHPProjects/Bucheron/bdd/BucheronSQL.php + file:/home/pierre.perdigues/PHPProjects/Bucheron/affectation.php + file:/home/pierre.perdigues/PHPProjects/Bucheron/include/chargementClasses.php + file:/home/pierre.perdigues/PHPProjects/Bucheron/js/main.js + file:/home/pierre.perdigues/PHPProjects/Bucheron/include/getBucheron.php + file:/home/pierre.perdigues/PHPProjects/Bucheron/include/gestionDate.php + file:/home/pierre.perdigues/PHPProjects/Bucheron/include/getEspece.php + file:/home/pierre.perdigues/PHPProjects/Bucheron/bdd/EspeceSQL.php + file:/home/pierre.perdigues/PHPProjects/Bucheron/bdd/SecteurSQL.php + file:/home/pierre.perdigues/PHPProjects/Bucheron/bdd/Connexion.php + + + diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/project.properties b/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/project.properties new file mode 100644 index 0000000..a379fed --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/project.properties @@ -0,0 +1,10 @@ +auxiliary.org-netbeans-modules-php-editor.fluent_2e_setter_2e_project_2e_property=false +auxiliary.org-netbeans-modules-php-editor.getter_2e_setter_2e_method_2e_name_2e_generation=AS_JAVA +auxiliary.org-netbeans-modules-php-editor.public_2e_modifier_2e_project_2e_property=true +include.path=${php.global.include.path} +php.version=PHP_80 +source.encoding=UTF-8 +src.dir=. +tags.asp=false +tags.short=false +web.root=. diff --git a/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/project.xml b/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/project.xml new file mode 100644 index 0000000..ad413a9 --- /dev/null +++ b/AP4/onfinfra/sv/sauvegardephp/Bucheron/nbproject/project.xml @@ -0,0 +1,9 @@ + + + org.netbeans.modules.php.project + + + Bucheron + + + diff --git a/AP4/onfinfra/sv/svbdd-h.sh b/AP4/onfinfra/sv/svbdd-h.sh new file mode 100755 index 0000000..713448e --- /dev/null +++ b/AP4/onfinfra/sv/svbdd-h.sh @@ -0,0 +1,10 @@ +#!/bin/bash +datem=$(date +%W) +dates=$(($datem %4)) +host=sio@10.121.38.95 + +#sv hebdomadaires avec rotation sur 4 semaines +scp $host:/home/frederic.duhin/PHPProjects/ProjetBucheron/bdarbre.sql /root/sv/bdarbre-$dates.sql + +gzip bdarbre-$dates.sql;mv bdarbre-$dates.sql.gz hebdomadaires/ + diff --git a/AP4/onfinfra/sv/svbdd-j.sh b/AP4/onfinfra/sv/svbdd-j.sh new file mode 100755 index 0000000..94456f2 --- /dev/null +++ b/AP4/onfinfra/sv/svbdd-j.sh @@ -0,0 +1,9 @@ +#!/bin/bash +datej=$(date +%u) +host=sio@10.121.38.95 + +#sv journalières avec rotation sur 5 jours +scp $host:/home/frederic.duhin/PHPProjects/ProjetBucheron/bdarbre.sql /root/sv/bdarbre-$datej.sql + +gzip bdarbre-$datej.sql;mv bdarbre-$datej.sql.gz journalieres/ + diff --git a/AP4/onfinfra/sv/svphp.sh b/AP4/onfinfra/sv/svphp.sh new file mode 100755 index 0000000..b92f0a9 --- /dev/null +++ b/AP4/onfinfra/sv/svphp.sh @@ -0,0 +1,5 @@ +#!/bin/bash +host=sio@10.121.38.96 + +#sv de l'application PHP +scp -r $host:/home/pierre.perdigues/ProjetBucheron/Bucheron /root/sv/sauvegardephp/