Chemin de delegation ("module/methode") * @data Tableau contenant les parametres utiles au traitement * * @return status Retourne si oui ou non tout s'est bien passe * */ public function __construct($path=null, $data=null){ // Si pas parametre manquant, on quitte if( $path == null ){ $this->error = ManagerError::MissingPath; return false; } /* [0] On met a jour la configuration =========================================================*/ // Modules specifies $this->modules = json_decode( ResourceDispatcher::getResource(self::$config_path), true ); // Gestion de l'erreur de parsage if( $this->modules == null ){ $this->error = ManagerError::ParsingFailed; return false; } /* [1] Verification des types des parametres =========================================================*/ // Type de @path if( !is_string($path) ){ // Si le type est incorrect $this->error = ManagerError::WrongPathType; return false; // On retourne FALSE, si erreur } // Type de @data (optionnel) $data = (is_array($data)) ? $data : array(); /* [2] Verification du chemin (existence module+methode) =========================================================*/ if( !$this->checkPath($path) ) // Verification de la coherence du chemin + attribution return false; // Gestion d'erreur interne /* [3] Construction de l'objet =========================================================*/ $this->data = $data; $this->error = ManagerError::Success; return true; // On retourne que tout s'est bien passe } public function dispatch(){ /* [1] On verifie qu'aucune erreur n'a ete signalee =========================================================*/ if( $this->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 =========================================================*/ $returned = 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); } /* 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; } } ?>