diff --git a/cms2/code/TODO b/cms2/code/TODO index f24c98a..90bad70 100644 --- a/cms2/code/TODO +++ b/cms2/code/TODO @@ -1,3 +1,11 @@ +- get() renvoie la valeur par défaut quand null dans la BDD (mais comment faire les tris ?). + Donc, quand on crée une page, on met les valeurs par défaut. Et s'il y a besoin de pouvoir modifier les valeurs par défaut et que ça + suive dans la BDD, on fait pour chaque table une table nom_table__defaut (ou pour chaque colonne une colonne nom_colonne__defaut), qui + indique pour chaque cellule si elle est à la valeur par défaut (et en cas de changement de la valeur par défaut, on update les cellules + correspondantes dans la table avec la nouvelle valeur par défaut). +- reset : set avec la valeur par défaut. + +- Debug : grouper les erreurs, améliorer l'affichage. - Valeur de retour des res_t_xxx ? Lorsqu'on appelle GalerieIndex::res_i_icône_nouvelle_page(), ça fait un sendfile alors que GalerieIndex::res_h_page() renvoie un objet diff --git a/cms2/code/bdd.php b/cms2/code/bdd.php index 0ce7100..7119172 100644 --- a/cms2/code/bdd.php +++ b/cms2/code/bdd.php @@ -17,6 +17,7 @@ class BDD { if (!is_resource(self::$handle)) { Debug::error("Échec à la connexion à la base de données"); } + // TODO : begin transaction à la 1ere écriture. self::begin_transaction(); self::init(); } @@ -59,8 +60,10 @@ class BDD { . 'nom_module varchar(50) primary key' . ')'); - $table = "create table if not exists " . self::table("pages") . " (uid_page integer auto_increment primary key"; - foreach (Page::$attributs_globaux as $nom) { + $table = "create table if not exists " . self::table("pages") . " (" + . "uid_page integer auto_increment primary key" + . ", type varchar(50)"; + foreach (Page::$attributs_globaux as $nom => $attr) { $table .= ", $nom varchar(50)"; } $table .= ")"; @@ -68,7 +71,7 @@ class BDD { foreach (Page::$modules as $nom_module => $m) { $table = "create table if not exists " . self::table($nom_module) . " (uid_page integer"; - foreach ($m['attributs'] as $nom => &$attr) { + foreach ($m['attributs'] as $nom => $attr) { if (!$attr['global']) { $table .= ", $nom varchar(50)"; } @@ -84,14 +87,22 @@ class BDD { public static function test() { // TODO : dans les modules qui proposent un nom_systeme, faire une fonction init_ // Cette fonction sera appellée lors de l'initialisation de la BDD. - self::modify("replace into " . self::table("pages") . " values(1, '0', '4', 'true', 'racine', '', 'mGalerieIndex', 'true')"); - self::modify("replace into " . self::table("pages") . " values(2, '1', '3', 'true', '', 'periode-1', 'mGaleriePeriode', 'true')"); - self::modify("replace into " . self::table("pages") . " set uid_page = 3, date_creation = '0', date_modification = '0', publier = 'true', nom_systeme = '', composant_url = 'periode-2', type = 'mGaleriePeriode', dans_nouveautes = 'false'"); - self::modify("replace into " . self::table("liens") . " values(1, 2, 'enfants')"); - self::modify("replace into " . self::table("liens") . " values(1, 3, 'enfants')"); - self::modify("replace into " . self::table("mGalerieIndex") . " values(1, 'Galerie', 'une galerie')"); - self::modify("replace into " . self::table("mGaleriePeriode") . " values(2, 'Periode 1', 'été')"); - self::modify("replace into " . self::table("mGaleriePeriode") . " values(3, 'Periode 2', 'hiver')"); + $r = Page::créer_page("mGalerieIndex"); + $r->nom_systeme = 'racine'; + $r->composant_url = ''; + $r->titre = 'Galerie'; + $r->description = 'Une galerie.'; + + $e1 = $r->créer_enfant(); + $e1->composant_url = 'periode-1'; + $e1->titre = 'Période 1'; + $e1->description = 'Été.'; + + $e2 = $r->créer_enfant(); + $e2->composant_url = 'periode-2'; + $e2->titre = 'Période 2'; + $e2->description = 'Hiver.'; + $e2->dans_nouveautes = 'false'; } public static function begin_transaction() { @@ -133,6 +144,8 @@ class BDD { public static function modify($q) { debug::info("sql : $q;"); mysql_unbuffered_query($q . ";", self::get()) or Debug::sqlerror(); + // http://stackoverflow.com/questions/621369/sql-insert-and-catch-the-id-auto-increment-value + return mysql_insert_id(self::get()); } public static function table($nom) { diff --git a/cms2/code/main.php b/cms2/code/main.php index 20a8d96..8ee0db9 100644 --- a/cms2/code/main.php +++ b/cms2/code/main.php @@ -9,12 +9,11 @@ verifications(); function main() { echo "
";
 	initModules();
-	//var_dump(Page::$modules);
 	
-	$bdd = BDD::get();
 	BDD::reset();
-
+	
 	$r = Page::page_uid(1);
+	$r->créer_enfant();
 	
 	$p = $r->rendu();
 	echo "
";
diff --git a/cms2/code/page.php b/cms2/code/page.php
index 1ddcf67..32518c4 100644
--- a/cms2/code/page.php
+++ b/cms2/code/page.php
@@ -21,7 +21,7 @@ function ressources_statiques($res) {
 	if (is_inherit($res)) {
 		$i = $res["inherit"];
 		Page::$limitation_infos_module = "ressources_statiques";
-		call_user_func(array($i, "info"));
+		call_user_func(array($i, "info"), $i);
 		Page::$limitation_infos_module = $lim;
 	} else {
 		// TODO : ... jusqu'ici (Page::$modules[$m]['ressources_statiques'] peut être factorisé aussi. (pas pour attribut))
@@ -39,7 +39,7 @@ function ressources_dynamiques($res) {
 	if (is_inherit($res)) {
 		$i = $res["inherit"];
 		Page::$limitation_infos_module = "ressources_dynamiques";
-		call_user_func(array($i, "info"));
+		call_user_func(array($i, "info"), $i);
 		Page::$limitation_infos_module = $lim;
 	} else {
 		// TODO : ... jusqu'ici (Page::$modules[$m]['ressources_dynamiques'] peut être factorisé aussi. (pas pour attribut))
@@ -57,11 +57,11 @@ function type_liens($groupe, $type = null) {
 	if (is_inherit($groupe)) {
 		$i = $res["inherit"];
 		Page::$limitation_infos_module = "type_liens";
-		call_user_func(array($i, "info"));
+		call_user_func(array($i, "info"), $i);
 		Page::$limitation_infos_module = $lim;
 	} else {
 		if ($type === null) {
-			Debug::error('fonction attribut() : les paramètres $type et $defaut doivent être définis');
+			Debug::error('fonction type_liens() : le paramètres $type est obligatoire.');
 		}
 		// TODO : ... jusqu'ici (Page::$modules[$m]['types_enfants'] peut être factorisé aussi (pas pour attribut)).
 		Page::$modules[$m]['type_liens'][$groupe] = $type;
@@ -77,11 +77,11 @@ function attribut($nom, $type = null, $defaut = null) {
 	if (is_inherit($nom)) {
 		$i = $nom["inherit"];
 		Page::$limitation_infos_module = "attribut";
-		call_user_func(array($i, "info"));
+		call_user_func(array($i, "info"), $i);
 		Page::$limitation_infos_module = $lim;
 	} else {
 		if ($type === null || $defaut === null) {
-			Debug::error('fonction attribut() : les paramètres $type et $defaut doivent être définis');
+			Debug::error('fonction attribut() : les paramètres $type et $defaut est obligatoire.');
 		}
 		if (!Document::has_widget("w_" . $type)) {
 			Debug::error("L'attribut $nom a le type $type, mais aucun widget w_$type n'existe.");
@@ -90,8 +90,8 @@ function attribut($nom, $type = null, $defaut = null) {
 	}
 }
 
-function attributs_globaux($attributs) {
-	Page::$attributs_globaux = qw(Page::$attributs_globaux, $attributs);
+function attribut_global($nom, $type, $defaut) {
+	Page::$attributs_globaux[$nom] = array('type' => $type, 'defaut' => $defaut);
 }
 
 function module($m) {
@@ -106,13 +106,13 @@ function module($m) {
 function initModules() {
 	foreach (Page::$modules as $nom_module => $m) {
 		Page::$module_en_cours = $nom_module;
-		call_user_func(array($nom_module, "info"));
+		call_user_func(array($nom_module, "info"), $nom_module);
 	}
 	Page::$module_en_cours = null;
-	foreach (Page::$attributs_globaux as $ag) {
+	foreach (Page::$attributs_globaux as $nom_ag => $ag) {
 		foreach (Page::$modules as &$m) {
-			if (array_key_exists($ag, $m['attributs'])) {
-				$m['attributs'][$ag]['global'] = true;
+			if (array_key_exists($nom_ag, $m['attributs'])) {
+				$m['attributs'][$nom_ag]['global'] = true;
 			}
 		}
 	}
@@ -124,20 +124,18 @@ class Page {
 	public static $module_en_cours = null;
 	public static $limitation_infos_module = true;
 
-	public static function info() {
+	public static function info($module) {
 		// Convention de nommage pour les ressources statiques :
 		// res_h_xxx = html, res_i_xxx = image, res_c_xxx = css, res_j_xxx = javascript
-		attributs_globaux("date_creation date_modification publier nom_systeme composant_url type");
-		attribut("date_creation", "date", "0");
-		attribut("date_modification", "date", "0");
-		attribut("publier", "bool", "false");
-		attribut("nom_systeme", "text_no_space", "");
-		attribut("composant_url", "text_no_space", "page");
-		attribut("type", "text_no_space", "mSiteIndex");
+		attribut_global("date_creation", "date", "0");
+		attribut_global("date_modification", "date", "0");
+		attribut_global("publier", "bool", "false");
+		attribut_global("nom_systeme", "text_no_space", "");
+		attribut_global("composant_url", "text_no_space", "page");
 	}
 	
 	public static function est_propriete_globale($prop) {
-		return in_array($prop, self::$attributs_globaux);
+		return array_key_exists($prop, self::$attributs_globaux);
 	}
 	
 	public function nom_module() {
@@ -249,16 +247,57 @@ class Page {
 		return $res;
 	}
 	
-	public function ajouter_enfant($type, $groupe = "main") {
-		// ajouter l'enfant
-		// renvoyer une instance de la sous-classe de Page correspondant à $type.
-		niy("ajouter_enfant");
+	public static function créer_page($nom_module) {
+		$module = self::$modules[$nom_module];
+		
+		// Insert dans la table pages.
+		$insert = "insert into " . BDD::table("pages") . " set ";
+		$insert .= "uid_page = null";
+		$insert .= ", type = '" . $nom_module . "'";
+		foreach (self::$attributs_globaux as $nom => $attr) {
+			if (array_key_exists($nom, $module['attributs'])) {
+				$insert .= ", $nom = '" . mysql_real_escape_string($module['attributs'][$nom]['defaut']) . "'";
+			} else {
+				$insert .= ", $nom = '" . mysql_real_escape_string($attr['defaut']) . "'";
+			}
+		}
+		
+		// Récupération du champ auto_increment uid_page.
+		$uid_nouvelle_page = BDD::modify($insert);
+		
+		// Insert dans la table du module
+		$insert = "insert into " . BDD::table($nom_module) . " set ";
+		$insert .= "uid_page = " . $uid_nouvelle_page;
+		foreach ($module['attributs'] as $nom => $attr) {
+			if (!$attr['global']) {
+				$insert .= ", $nom = '" . mysql_real_escape_string($attr['defaut']) . "'";
+			}
+		}
+		
+		BDD::modify($insert);
+
+		$page = self::page_uid($uid_nouvelle_page);
+		// Vu qu'on modifie une propriété, ça set automatiquement la date de dernière modification :
+		$page->date_creation = time();
+		return $page;
 	}
 	
-	public function lier_page($page_source, $groupe = "main") {
-		$l = ajouter_enfant("Lien", "$groupe");
-		$l->lien = $page_source;
-		niy("lier_page");
+	public function créer_enfant($groupe = "enfants") {
+		$nouvelle_page = self::créer_page($this->module['type_liens'][$groupe]);
+		$this->lier_page($nouvelle_page, $groupe);
+		return $nouvelle_page;
+	}
+	
+	public function lier_page($page_vers, $groupe = "enfants") {
+		if (!is_numeric($page_vers)) {
+			$page_vers = $page_vers->uid();
+		}
+		
+		$insert = "insert into " . BDD::table("liens") . " set";
+		$insert .= " uid_page_de = " . $this->uid();
+		$insert .= ", uid_page_vers = " . $page_vers;
+		$insert .= ", groupe = '" . $groupe . "'";
+		BDD::modify($insert);
 	}
 	
 	public static function page_systeme($nom) {
@@ -337,8 +376,11 @@ class Page {
 	public function set_prop_direct($nom, $val) {
 		// Modifie l'attribut "$nom" dans la BDD.
 		$update_table = (self::est_propriete_globale($nom)) ? "pages" : $this->nom_module();
-		$update = "update " . BDD::table($update_table) . " set $nom = '" . mysql_real_escape_string($val) . "' where uid_page = " . $this->uid() . ";";
+		$update = "update " . BDD::table($update_table) . " set $nom = '" . mysql_real_escape_string("".$val) . "' where uid_page = " . $this->uid();
 		BDD::unbuf_query($update);
+		if ($nom != "date_modification") {
+			$this->date_modification = time();
+		}
 	}
 	
 	public function set_composant_url() {
diff --git a/cms2/modules/admin/admin-utilisateurs.php b/cms2/modules/admin/admin-utilisateurs.php
index 607924b..5ebd1d2 100644
--- a/cms2/modules/admin/admin-utilisateurs.php
+++ b/cms2/modules/admin/admin-utilisateurs.php
@@ -1,7 +1,7 @@