error != ManagerError::Success ) return false; /* [2] On verifie que la methode est amorcable =========================================================*/ if( !is_callable($this->getFunctionCaller()) ){ $this->error = ManagerError::UncallableMethod; return false; } /* [3] On amorce la methode =========================================================*/ return call_user_func_array( $this->getFunctionCaller(), $this->getData() ); } /* DESERIALISATION ET CREATION D'UN OBJET * * @jsonString Json au format string contenant les donnees * * @return instance Retourne un objet de type * */ public static function fromString($jsonString){ $json = json_decode( $jsonString, true ); // Verification du parsage if( $json == null ) return new ModuleRequest(); // Verification des parametres if( !isset($json['path']) ) return new ModuleRequest(); // On definit $data au cas ou il soit vide $data = (isset($json['data'])) ? $json['data'] : array(); return new ModuleRequest($json['path'], $data); } /* DESERIALISATION A PARTIR DES DONNEES POST * * @post Tableau des donnes $_POST => @path + @data (opt) * * @return instance Retourne un objet de type * */ public static function fromURL($post){ /* [1] On verifie que le @path est renseigne =========================================================*/ if( !isset($post['path']) ) return new ModuleRequest(); /* [2] On verifie que @data est renseigne =========================================================*/ $data = (isset($post['data'])) ? $post['data'] : array(); /* [3] On retourne une instance de =========================================================*/ return new ModuleRequest($post['path'], $data); } /* VERIFICATION DU FORMAT ET DE LA COHERENCE DU CHEMIN SPECIFIE * * @path String correspondant au chemin de delegation ("module/methode") * * @return validity Retourne si oui ou non l'objet est correct * */ private function checkPath($path){ /* [1] Verification format general =========================================================*/ if( !preg_match('#^([\w_-]+)/([\w_-]+)$#i', $path, $matches) ){ // Si mauvais format $this->error = ManagerError::WrongPathType; return false; } // On recupere les donnes de la regex $module = $matches[1]; $method = $matches[2]; /* [2] Verification de l'existence du module (conf) =========================================================*/ if( !array_key_exists($module, $this->modules) ){ // Si le module n'est pas specifie dans la conf $this->error = ManagerError::UnknownModule; return false; // On retourne FALSE, si erreur } /* [3] Verification de l'existence de la methode (conf) =========================================================*/ if( array_search($method, $this->modules[$module]) === false ){ // Si la methode n'est pas specifie dans la conf $this->error = ManagerError::UnknownMethod; return false; // On retourne FALSE, si erreur } /* [4] Enregistrement du chemin et renvoi de SUCCESS =========================================================*/ $this->path = array( 'module' => $module, 'method' => $method ); return true; } /* RENVOI LE CHEMIN D'AMORCAGE DE LA METHODE * * @return path Retourne le chemin d'amorcage de la requete * */ private function getFunctionCaller(){ return '\\manager\\module\\'.$this->path['module'].'::'.$this->path['method']; } /* RENVOI LES DONNEES * * @return data Retourne les donnees de la requete * */ private function getData(){ return $this->data; } } ?>