3 class mw_env_run extends mw_env{
9 return $data->get_session_user();
12 function set_etat($etat, $valid_status = true){
13 if(($this->etat = $this->valid_etat($etat)) !== false){
14 if(!$valid_status || $this->status_ok($this->etat, false)){
17 else $this->erreur("Vous n'avez pas le statut requis pour effectuer cette action");
19 else $this->erreur("etat invalide");
23 function valid_etat($etat){
26 $_etat["controller"] = "";
27 $_etat["action"] = "";
29 $_etat["mod"] = isset($etat["mod"]) ? $etat["mod"] : "";
30 $_etat["controller"] = isset($etat["controller"]) ? $etat["controller"] : "";
31 $_etat["action"] = isset($etat["action"]) ? $etat["action"] : "";
34 $etat = explode("/", $etat);
35 foreach($etat as $etat_item){
37 if(!$_etat["mod"]) $_etat["mod"] = $etat_item;
39 if(!$_etat["controller"]) $_etat["controller"] = $etat_item;
41 if(!$_etat["action"]) $_etat["action"] = $etat_item;
49 $_etat["mod"] = "index";
50 $_etat["controller"] = "index";
51 $_etat["action"] = "index";
54 if(!$_etat["controller"]){
55 $_etat["controller"] = "index";
56 $_etat["action"] = "index";
59 if(!$_etat["action"]) $_etat["action"] = "index";
65 && isset($_etat["mod"]) && preg_match("/^[a-zA-Z0-9_]+$/", $_etat["mod"])
66 && isset($_etat["controller"]) && preg_match("/^[a-zA-Z0-9_]+$/", $_etat["controller"])
67 && isset($_etat["action"]) && preg_match("/^[a-zA-Z0-9_]+$/", $_etat["action"])
74 function etat_is_valid(){
75 return $this->valid_etat($this->etat);
78 function status_ok($etat, $CHECK_FORMAT = true){
79 $OK = $this->config("default_allow");
80 $data = $this->data();
81 if($CHECK_FORMAT) $etat = $this->valid_etat($etat);
83 if(($user_status = $data->get_user_status()) !== false){
86 $action_status = $data->get_action_status(
93 $action = $etat["mod"]."/".$etat["controller"]."/".$etat["action"];
94 if(isset($action_status[$action])){
95 $OK = $action_status[$action][0] || (isset($action_status[$action][$user_status]) && $action_status[$action][$user_status]);
98 $action = $etat["mod"]."/".$etat["controller"];
99 if(isset($action_status[$action])){
100 $OK = $action_status[$action][0] || (isset($action_status[$action][$user_status]) && $action_status[$action][$user_status]);
103 $action = $etat["mod"];
104 if(isset($action_status[$action])){
105 $OK = $action_status[$action][0] || (isset($action_status[$action][$user_status]) && $action_status[$action][$user_status]);
110 else $this->erreur("Impossible de lire les status des actions en base");
112 else $this->erreur("Impossible de lire le statut de l'utilisateur courant");
114 else $this->erreur("etat invalide");
118 function run($etat, $valid_status = true, $params = array(), $method = "GET"){
119 if($this->set_etat($etat, $valid_status)){
120 $controller_file = "mods/".$this->etat("mod")."/".$this->etat("controller").".php";
121 if($this->app_file_exists($controller_file = "mods/".$this->etat("mod")."/".$this->etat("controller").".php", "DESC")){
122 if(!class_exists("mw_mod")) require $this->app_file("mods/mw_mod.php");
123 if(!class_exists($controller_class = "mw_".$this->etat("mod")."_".$this->etat("controller"))){
124 require $this->app_file($controller_file, "DESC");
126 if(class_exists($controller_class)){
127 $controller = new $controller_class();
128 $action_method = $this->etat("action");
129 if(method_exists($controller, $action_method)){
130 foreach($params as $key => $value){
131 switch(strtolower($method)){
132 case "get": $_GET[$this->param($key)] = $value; break;
133 case "post": $_POST[$key] = $value; break;
137 if(($controller_validate = $controller->validate($this)) === true){
138 if(($controller_prepare_inputs = $controller->prepare_inputs($this)) === true){
139 $controller->$action_method($this);
141 else $this->erreur($controller_prepare_inputs);
143 else $this->erreur($controller_validate);
145 else $this->erreur("Impossible de trouver l'action ".$this->etat("action"));
147 else $this->erreur("Impossible d'instancier le controleur ".$this->etat("controller"));
149 else $this->erreur("Impossible de trouver le controleur ".$this->etat("controller")." pour le module ".$this->etat("mod"));
151 else $this->erreur("Impossible d'effectuer cette action");
154 function etat($name){
155 return $this->etat[$name];
158 function check_stop(){
159 return $this->etat("mod") == "reponses";
162 function get_mod($mod_name){
163 if($etat = $this->valid_etat($mod_name)){
164 if($this->app_file_exists($controller_file = "mods/".$etat["mod"]."/".$etat["controller"].".php")){
165 if(!class_exists("mw_mod")) require $this->app_file("mods/mw_mod.php");
166 if(!class_exists($controller_class = "mw_".$etat["mod"]."_".$etat["controller"])){
167 require $this->app_file($controller_file);
169 if(class_exists($controller_class)){
170 return new $controller_class();