- [x] Gestion des erreurs
- [x] Explicitation - [ ] Conception du systeme de delegation des managers - [x] Module Request - [x] Inline (en php) - [x] Serialise (en json <String>) - [x] Par url (POST)
This commit is contained in:
parent
b1b9d60d15
commit
2b9fc4c080
|
@ -99,10 +99,10 @@
|
||||||
function displayUsers(){
|
function displayUsers(){
|
||||||
|
|
||||||
// Creation de la requete
|
// Creation de la requete
|
||||||
$requete = new manager\ModuleRequest('firstModule/getUsers');
|
$requete = new \manager\ModuleRequest('firstModule/getUsers');
|
||||||
$users = $requete->dispatch();
|
$users = $requete->dispatch();
|
||||||
|
|
||||||
var_dump($users);
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
{
|
{
|
||||||
|
"userDefaultModule" :[
|
||||||
|
"getAll"
|
||||||
|
],
|
||||||
|
|
||||||
"firstModule" : [
|
"firstModule" : [
|
||||||
"getUsers",
|
"getUsers",
|
||||||
"returnvar",
|
"returnvar",
|
||||||
|
|
24
index.php
24
index.php
|
@ -1,12 +1,11 @@
|
||||||
<?php define('__ROOT__', dirname(__FILE__) );
|
<?php define('__ROOT__', dirname(__FILE__) );
|
||||||
|
|
||||||
require_once __ROOT__.'/manager/autoloader.php';
|
require_once __ROOT__.'/manager/autoloader.php';
|
||||||
|
|
||||||
/*******************************************/
|
/*******************************************/
|
||||||
/* DEBUGGER */
|
/* DEBUGGER */
|
||||||
/*******************************************/
|
/*******************************************/
|
||||||
ini_set('display_errors',1);
|
debug();
|
||||||
ini_set('display_startup_errors',1);
|
|
||||||
error_reporting(-1);
|
|
||||||
/*******************************************/
|
/*******************************************/
|
||||||
|
|
||||||
|
|
||||||
|
@ -45,14 +44,25 @@
|
||||||
// Dispatcher
|
// Dispatcher
|
||||||
$R->get('f(?:/([\w-]+))*/?', function(){ new \manager\ResourceDispatcher($_GET['url']); });
|
$R->get('f(?:/([\w-]+))*/?', function(){ new \manager\ResourceDispatcher($_GET['url']); });
|
||||||
|
|
||||||
|
// Api
|
||||||
|
$R->post('api/?', function(){
|
||||||
|
$request = \manager\ModuleRequest::fromURL($_POST);
|
||||||
|
|
||||||
|
// Si requete correcte
|
||||||
|
if( $request->error == \manager\ManagerError::Success )
|
||||||
|
var_dump( $request->dispatch() );
|
||||||
|
else
|
||||||
|
echo 'request error';
|
||||||
|
});
|
||||||
|
|
||||||
// N'importe -> page d'accueil
|
// N'importe -> page d'accueil
|
||||||
$R->get('.+', function(){ header('Location: /dashboard/'); });
|
$R->get('.+', function(){ header('Location: /dashboard/'); });
|
||||||
|
|
||||||
|
|
||||||
$R->post('.*', function(){
|
// $R->post('.*', function(){
|
||||||
var_dump( 'Acces POST : '.$_GET['url'] );
|
// var_dump( 'Acces POST : '.$_GET['url'] );
|
||||||
var_dump( $_POST );
|
// var_dump( $_POST );
|
||||||
});
|
// });
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
namespace manager;
|
namespace manager;
|
||||||
|
|
||||||
|
|
||||||
abstract class ManagerError{
|
class ManagerError{
|
||||||
|
|
||||||
/* SUCCESS */
|
/* SUCCESS */
|
||||||
const Success = 0;
|
const Success = 0;
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
const InvalidFlags = 2;
|
const InvalidFlags = 2;
|
||||||
|
|
||||||
// Fichier inexistant
|
// Fichier inexistant
|
||||||
const FileNotFound = 3;
|
const UnreachableResource = 3;
|
||||||
|
|
||||||
|
|
||||||
/* ModuleRequest */
|
/* ModuleRequest */
|
||||||
|
@ -41,6 +41,32 @@
|
||||||
// Methode inamorcable
|
// Methode inamorcable
|
||||||
const UncallableMethod = 9;
|
const UncallableMethod = 9;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* EXPLICITE UN CODE D'ERREUR
|
||||||
|
*
|
||||||
|
* @error<Integer> Code d'erreur
|
||||||
|
*
|
||||||
|
* @return explicit<String> Description explicite du code d'erreur
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public static function explicit($error){
|
||||||
|
switch($error){
|
||||||
|
case self::Success: return "Tout s'est bien deroule"; break;
|
||||||
|
case self::ParsingFailed: return "La lecture du fichier JSON a echoue"; break;
|
||||||
|
case self::InvalidFlags: return "Les specifications (drapeaux) sont incorrects"; break;
|
||||||
|
case self::UnreachableResource: return "La ressource n'existe pas (404)"; break;
|
||||||
|
case self::MissingPath: return "Le chemin de delegation n'a pas ete renseigne"; break;
|
||||||
|
case self::WrongPathType: return "Le chemin de delegation n'est pas du bon type (chaine de caractere)"; break;
|
||||||
|
case self::WrongPath: return "Le chemin de delegation est incorrect ('nomModule/nomMethode')"; break;
|
||||||
|
case self::UnknownModule: return "Le module n'existe pas"; break;
|
||||||
|
case self::UnknownMethod: return "Le methode n'existe pas"; break;
|
||||||
|
case self::UncallableMethod: return "Le methode n'est pas amorcable"; break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 'Aucune erreur trouvee';
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -0,0 +1,191 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace manager;
|
||||||
|
|
||||||
|
|
||||||
|
// FORMAT:
|
||||||
|
//
|
||||||
|
// path: "nomModule/nomMethode"
|
||||||
|
// data1: {donnee1}
|
||||||
|
// data2: {donnee2}
|
||||||
|
// ...
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
|
||||||
|
class ModuleAnswer{
|
||||||
|
|
||||||
|
// Attributs prives utiles (initialisation)
|
||||||
|
private $data;
|
||||||
|
public $error;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* CONSTRUCTEUR D'UNE REPONSE DE MODULE
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function __construct(){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
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
|
||||||
|
=========================================================*/
|
||||||
|
return call_user_func_array( $this->getFunctionCaller(), $this->getData() );
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* DESERIALISATION ET CREATION D'UN OBJET
|
||||||
|
*
|
||||||
|
* @jsonString<String> Json au format string contenant les donnees
|
||||||
|
*
|
||||||
|
* @return instance<ModuleRequest> Retourne un objet de type <ModuleRequest>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
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<Array> Tableau des donnes $_POST => @path + @data (opt)
|
||||||
|
*
|
||||||
|
* @return instance<ModuleRequest> Retourne un objet de type <ModuleRequest>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
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 <ModuleRequest>
|
||||||
|
=========================================================*/
|
||||||
|
return new ModuleRequest($post['path'], $data);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* VERIFICATION DU FORMAT ET DE LA COHERENCE DU CHEMIN SPECIFIE
|
||||||
|
*
|
||||||
|
* @path<String> String correspondant au chemin de delegation ("module/methode")
|
||||||
|
*
|
||||||
|
* @return validity<Boolean> 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<Array> 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<Array> Retourne les donnees de la requete
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private function getData(){
|
||||||
|
return $this->data;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
|
@ -142,6 +142,35 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* DESERIALISATION A PARTIR DES DONNEES POST
|
||||||
|
*
|
||||||
|
* @post<Array> Tableau des donnes $_POST => @path + @data (opt)
|
||||||
|
*
|
||||||
|
* @return instance<ModuleRequest> Retourne un objet de type <ModuleRequest>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
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 <ModuleRequest>
|
||||||
|
=========================================================*/
|
||||||
|
return new ModuleRequest($post['path'], $data);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* VERIFICATION DU FORMAT ET DE LA COHERENCE DU CHEMIN SPECIFIE
|
/* VERIFICATION DU FORMAT ET DE LA COHERENCE DU CHEMIN SPECIFIE
|
||||||
*
|
*
|
||||||
* @path<String> String correspondant au chemin de delegation ("module/methode")
|
* @path<String> String correspondant au chemin de delegation ("module/methode")
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
/* [3] On construit le chemin a partir des tags
|
/* [3] On construit le chemin a partir des tags
|
||||||
==================================================*/
|
==================================================*/
|
||||||
if( !$this->buildPath() ){ // Construction du chemin
|
if( !$this->buildPath() ){ // Construction du chemin
|
||||||
$this->error = ManagerError::FileNotFound;
|
$this->error = ManagerError::UnreachableResource;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,16 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
function debug(){
|
||||||
|
ini_set('display_errors',1);
|
||||||
|
ini_set('display_startup_errors',1);
|
||||||
|
error_reporting(-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function autoloader($className){
|
function autoloader($className){
|
||||||
$path = '';
|
$path = '';
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace manager\module;
|
||||||
|
|
||||||
|
class userDefaultModule{
|
||||||
|
|
||||||
|
|
||||||
|
public static function getAll(){
|
||||||
|
return \manager\Database::getPDO()->query("SELECT * FROM user ORDER BY id_user")->fetchAll();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public static function returnvar($var){
|
||||||
|
var_dump('return var'); return $var;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static function printvar($var){
|
||||||
|
var_dump('var = '); var_dump($var);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
5
todo.md
5
todo.md
|
@ -13,8 +13,13 @@
|
||||||
############
|
############
|
||||||
# EN COURS #
|
# EN COURS #
|
||||||
############
|
############
|
||||||
|
- [x] Gestion des erreurs
|
||||||
|
- [x] Explicitation
|
||||||
- [ ] Conception du systeme de delegation des managers
|
- [ ] Conception du systeme de delegation des managers
|
||||||
- [x] Module Request
|
- [x] Module Request
|
||||||
|
- [x] Inline (en php)
|
||||||
|
- [x] Serialise (en json <String>)
|
||||||
|
- [x] Par url (POST)
|
||||||
- [ ] Module Answer
|
- [ ] Module Answer
|
||||||
|
|
||||||
- [x] Conception BDD + ameliorations
|
- [x] Conception BDD + ameliorations
|
||||||
|
|
|
@ -40,8 +40,28 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?php
|
||||||
|
|
||||||
|
$post = array();
|
||||||
|
foreach($_POST as $k=>$v)
|
||||||
|
array_push($post, $k);
|
||||||
|
|
||||||
|
$sublink = $post[0];
|
||||||
|
|
||||||
|
|
||||||
<section>
|
/* PAGE DES STATISTIQUES
|
||||||
Bienvenue sur la page de gestion des UTILISATEURS
|
*
|
||||||
</section>
|
*/
|
||||||
|
if( $sublink == 'displayall' ){
|
||||||
|
|
||||||
|
// On recupere tous les utilisateurs
|
||||||
|
debug();
|
||||||
|
$request = new \manager\ModuleRequest('userDefaultModule/getAll');
|
||||||
|
$users = $request->dispatch();
|
||||||
|
|
||||||
|
echo '<section>';
|
||||||
|
echo 'Liste des utilisateurs: <br>';
|
||||||
|
var_dump( $users );
|
||||||
|
echo '</section>';
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue