diff --git a/__cms__/TODO b/__cms__/TODO index 737589c..9fdc8e2 100644 --- a/__cms__/TODO +++ b/__cms__/TODO @@ -1,2 +1,4 @@ Sécurité : les noms de propriétés passés à stockage ne doivent pas contenir de '/' (doivent valider "nettoyer_segment()". +Les actions ne devraient être que des POST... ça pose problème sur certains liens (connexion, ...). +Les titres devraient renomer _+_ set_prop (sachant que le renomage peut déteriorer le texte du titre (sécurité sur le chemin)). \ No newline at end of file diff --git a/__cms__/code/cms/page.php b/__cms__/code/cms/page.php index 8be6b5b..9068da3 100644 --- a/__cms__/code/cms/page.php +++ b/__cms__/code/cms/page.php @@ -3,8 +3,9 @@ class Page { public $contenu = ""; public $titre = ""; - public $sendfile_chemin = ""; - public $sendfile_prop = ""; + public $sendfile_fichier = ""; + public $sendprop_chemin = ""; + public $sendprop_prop = ""; public $redirect_destination = ""; public $type = "page"; @@ -12,7 +13,9 @@ class Page { if ($type == "page") { $this->set_page($a, $b); } else if ($type == "sendfile") { - $this->set_sendfile($a, $b); + $this->set_sendfile($a); + } else if ($type == "sendprop") { + $this->set_sendprop($a, $b); } else if ($type == "raw") { $this->set_raw($a, $b); } else if ($type == "redirect") { @@ -26,11 +29,16 @@ class Page { $this->type = "page"; } - public function set_sendfile($chemin, $prop) { - $this->sendfile_chemin = $chemin; - $this->sendfile_prop = $prop; + public function set_sendfile($fichier) { + $this->sendfile_fichier = $fichier; $this->type = "sendfile"; } + + public function set_sendprop($chemin, $prop) { + $this->sendprop_chemin = $chemin; + $this->sendprop_prop = $prop; + $this->type = "sendprop"; + } public function set_raw($données, $mime) { $this->raw_données = $données; @@ -49,7 +57,9 @@ class Page { if ($this->type == "page") { echo Squelette::enrober($this); } else if ($this->type == "sendfile") { - Stockage::get_prop_sendfile($this->sendfile_chemin, $this->sendfile_prop); + Système_fichiers::envoyer_fichier_directement($this->sendfile_fichier); + } else if ($this->type == "sendprop") { + Stockage::get_prop_sendfile($this->sendprop_chemin, $this->sendprop_prop); } else if ($this->type == "raw") { header("Content-Type: " . $this->raw_mime); echo $this->raw_données; diff --git a/__cms__/code/modules/galerie/galerie-index.php b/__cms__/code/modules/galerie/galerie-index.php index e5146f2..a3e51cc 100644 --- a/__cms__/code/modules/galerie/galerie-index.php +++ b/__cms__/code/modules/galerie/galerie-index.php @@ -27,8 +27,9 @@ class GalerieIndex { } public static function vue($chemin, $vue = "normal") { - $ret = ''; if ($vue == "normal") { + $ret = ''; + if (Permissions::vérifier_permission($chemin, "set_prop", Authentification::get_utilisateur())) { $ret .= '
'; $ret .= formulaire_édition_texte_enrichi(Stockage::get_prop($chemin, "description"), "message"); @@ -56,6 +57,7 @@ class GalerieIndex { if (Permissions::vérifier_permission($chemin, "nouvelle_page", Authentification::get_utilisateur())) { $ret .= '