Compare commits
No commits in common. "e1fe93a04ce3c225177dc8a521ec940de0f3fd63" and "b8b1a1c8f91c92a80b6fde92566463d61ac32d09" have entirely different histories.
e1fe93a04c
...
b8b1a1c8f9
@ -3,9 +3,9 @@
|
|||||||
* DuckBrain - Microframework
|
* DuckBrain - Microframework
|
||||||
*
|
*
|
||||||
* Neuron, sirve para crear un objeto que alojará valores, pero
|
* Neuron, sirve para crear un objeto que alojará valores, pero
|
||||||
* además tiene la característica especial de que al intentar
|
* además tiene la característica especial de que al intentar
|
||||||
* acceder a un atributo que no está definido devolerá nulo en
|
* acceder a un atributo que no está definido devolerá nulo en
|
||||||
* lugar de generar un error php notice que indica que se está
|
* lugar de generar un error php notice que indica que se está
|
||||||
* intentando acceder a un valor no definido.
|
* intentando acceder a un valor no definido.
|
||||||
*
|
*
|
||||||
* El constructor recibe un objeto o arreglo con los valores que
|
* El constructor recibe un objeto o arreglo con los valores que
|
||||||
@ -19,17 +19,17 @@
|
|||||||
namespace Libs;
|
namespace Libs;
|
||||||
|
|
||||||
class Neuron {
|
class Neuron {
|
||||||
|
|
||||||
private $data;
|
private $data;
|
||||||
|
|
||||||
public function __construct($data = []){
|
public function __construct($data){
|
||||||
$this->data = (array) $data;
|
$this->data = (array) $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function __isset($index) {
|
public function __isset($index) {
|
||||||
return isset($this->data[$index]);
|
return isset($this->data[$index]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function __get($index){
|
public function __get($index){
|
||||||
return (isset($this->data[$index]) && $this->data[$index] != '')
|
return (isset($this->data[$index]) && $this->data[$index] != '')
|
||||||
? $this->data[$index] : null;
|
? $this->data[$index] : null;
|
||||||
|
@ -19,10 +19,7 @@ class Router {
|
|||||||
private static $put = [];
|
private static $put = [];
|
||||||
private static $delete = [];
|
private static $delete = [];
|
||||||
private static $last;
|
private static $last;
|
||||||
public static $notFoundCallBack = function () {
|
public static $notFoundCallBack;
|
||||||
header("HTTP/1.0 404 Not Found");
|
|
||||||
echo '<h2 style="text-align: center;margin: 25px 0px;">Error 404 - Página no encontrada</h2>';
|
|
||||||
};
|
|
||||||
|
|
||||||
private function __construct() {}
|
private function __construct() {}
|
||||||
|
|
||||||
@ -41,9 +38,6 @@ class Router {
|
|||||||
* callback - Contiene el callback en formato Namespace\Clase::Método
|
* callback - Contiene el callback en formato Namespace\Clase::Método
|
||||||
*/
|
*/
|
||||||
private static function parse($path, $callback) {
|
private static function parse($path, $callback) {
|
||||||
preg_match_all('/{([\w-]+)}/s', $path, $matches, PREG_PATTERN_ORDER);
|
|
||||||
$paramNames = $matches[1];
|
|
||||||
|
|
||||||
$path = preg_quote($path, '/');
|
$path = preg_quote($path, '/');
|
||||||
$path = preg_replace(
|
$path = preg_replace(
|
||||||
['/\\\{[\w-]+\\\}/s'],
|
['/\\\{[\w-]+\\\}/s'],
|
||||||
@ -53,11 +47,9 @@ class Router {
|
|||||||
if (!is_callable($callback)) {
|
if (!is_callable($callback)) {
|
||||||
$callback = 'Controllers\\'.$callback;
|
$callback = 'Controllers\\'.$callback;
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'path' => $path,
|
'path'=> $path,
|
||||||
'callback' => $callback,
|
'callback' => $callback
|
||||||
'paramNames' => $paramNames
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -71,7 +63,7 @@ class Router {
|
|||||||
public static function baseURI() {
|
public static function baseURI() {
|
||||||
if (defined('SITE_URL'))
|
if (defined('SITE_URL'))
|
||||||
return parse_url(SITE_URL, PHP_URL_PATH);
|
return parse_url(SITE_URL, PHP_URL_PATH);
|
||||||
return str_replace($_SERVER['DOCUMENT_ROOT'], '/', ROOT_DIR);
|
return str_replace($_SERVER['DOCUMENT_ROOT'],'/', ROOT_DIR);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -91,26 +83,14 @@ class Router {
|
|||||||
/*
|
/*
|
||||||
* Añade un middleware a la última ruta usada.
|
* Añade un middleware a la última ruta usada.
|
||||||
* Solo se puede usar un middleware a la vez.
|
* Solo se puede usar un middleware a la vez.
|
||||||
*
|
|
||||||
* @param string $callback
|
|
||||||
*
|
|
||||||
* @return static
|
|
||||||
* Devuelve un enlace estático
|
|
||||||
*/
|
*/
|
||||||
public static function middleware($callback){
|
public static function middleware($middleware){
|
||||||
if (!isset(static::$last))
|
if (!isset(static::$last)) return;
|
||||||
return;
|
|
||||||
|
|
||||||
$method = static::$last[0];
|
$method = static::$last[0];
|
||||||
$index = static::$last[1];
|
$index = static::$last[1];
|
||||||
|
|
||||||
if (!is_callable($callback)) {
|
static::$$method[$index]['middleware'] = 'Middlewares\\'.$middleware;
|
||||||
$callback = 'Middlewares\\'.$callback;
|
|
||||||
}
|
|
||||||
|
|
||||||
static::$$method[$index]['middleware'] = $callback;
|
|
||||||
|
|
||||||
return new static();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -126,7 +106,6 @@ class Router {
|
|||||||
$req->get = new Neuron($_GET);
|
$req->get = new Neuron($_GET);
|
||||||
$req->post = new Neuron($_POST);
|
$req->post = new Neuron($_POST);
|
||||||
$req->json = new Neuron(static::get_json());
|
$req->json = new Neuron(static::get_json());
|
||||||
$req->params = new Neuron();
|
|
||||||
$req->path = static::URIPath();
|
$req->path = static::URIPath();
|
||||||
return $req;
|
return $req;
|
||||||
}
|
}
|
||||||
@ -229,19 +208,37 @@ class Router {
|
|||||||
*
|
*
|
||||||
* Este método ha de ser llamado luego de que todos los routers hayan sido configurados.
|
* Este método ha de ser llamado luego de que todos los routers hayan sido configurados.
|
||||||
*
|
*
|
||||||
* En caso que la URI actual coincida con un router configurado, se comprueba si hay middleware; Si hay
|
* En caso que la URI actual coincida con un router configurado,
|
||||||
* middleware, se enviará el callback y los datos de la petición como un Neuron. Caso contrario, se enviarán
|
* pueden suecedor los siguientes casos:
|
||||||
* los datos directamente al callback.
|
|
||||||
*
|
*
|
||||||
* Con middleware:
|
* 1. Tiene pseudovariables por URI
|
||||||
* $middleware($callback, $req)
|
|
||||||
*
|
*
|
||||||
* Sin middleware:
|
* 1.1. Tiene middleware, por lo que se llama al middleware enviándole los datos
|
||||||
* $callback($req)
|
* en el siguiente orden:
|
||||||
|
* - Función callback del router
|
||||||
|
* - Objeto que contiene $_POST, $_GET y el JSON recibido
|
||||||
|
* - Todas las pseudovariables (en el mismo orden que están escritas)
|
||||||
*
|
*
|
||||||
* $req es una instancia de Neuron que tiene los datos de la petición.
|
* 1.1. No tiene middleware, por lo que se llama a la función callback del router
|
||||||
|
* enviándole los datos en el siguiente orden:
|
||||||
|
* - Todas las pseudovariables (en el mismo orden que están escritas)
|
||||||
|
* - Objeto que contiene $_POST, $_GET y el JSON recibido
|
||||||
*
|
*
|
||||||
* Si no la uri no coincide con ninguna de las
|
* 2. No tiene pseudovariables por URI
|
||||||
|
*
|
||||||
|
* 2.1. Tiene middleware, por lo que se llama al middleware enviándole los datos
|
||||||
|
* En el siguiente orden:
|
||||||
|
* - Función callback del router
|
||||||
|
* - Todas las pseudovariables (en el mismo orden que están escritas)
|
||||||
|
*
|
||||||
|
* 2.2. No tiene middleware, por lo que se llama a la función callback del router
|
||||||
|
* enviándole solo ún parámetro:
|
||||||
|
* - Objeto que contiene $_POST, $_GET y el JSON recibido
|
||||||
|
*
|
||||||
|
* Nota: Gracias a que se usa call_user_func_array, los callbacks no es necesario que reciban
|
||||||
|
* la misma cantidad de parámetros que se les envía. De ese modo, pueden recibir solo
|
||||||
|
* los parámetros que van a utilizar, con el detalle de que siempre se respeta el orden
|
||||||
|
* especificado anteriormente a la hora de recibirlos.
|
||||||
*/
|
*/
|
||||||
public static function apply() {
|
public static function apply() {
|
||||||
$uri = static::URIPath();
|
$uri = static::URIPath();
|
||||||
@ -262,24 +259,31 @@ class Router {
|
|||||||
}
|
}
|
||||||
|
|
||||||
foreach ($routers as $router) { // revisa todos los routers para ver si coinciden con la URI actual
|
foreach ($routers as $router) { // revisa todos los routers para ver si coinciden con la URI actual
|
||||||
if (preg_match_all('/^'.$router['path'].'\/?$/si',$uri, $matches, PREG_PATTERN_ORDER)) {
|
if (preg_match_all('/^'.$router['path'].'\/?$/si',$uri, $matches)){
|
||||||
unset($matches[0]);
|
unset($matches[0]);
|
||||||
$args = static::getReq();
|
$args = static::getReq();
|
||||||
|
|
||||||
// Comprobando pseudo variables en URI
|
if (isset($matches[1])) { // Caso 1 - Con pseudovariables por URI
|
||||||
if (isset($matches[1])) {
|
$params = [];
|
||||||
foreach ($matches as $index => $match) {
|
foreach ($matches as $match) {
|
||||||
$paramName = $router['paramNames'][$index-1];
|
if (!empty($match))
|
||||||
$args->params->$paramName = urldecode($match[0]);
|
$params[] = "$match[0]";
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Comprobando si hay middleware
|
if (isset($router['middleware'])) { // Caso 1.1 - Con middleware
|
||||||
if (isset($router['middleware'])) {
|
$middleware = explode('::',$router['middleware']);
|
||||||
//$middleware = explode('::',$router['middleware']);
|
$data = call_user_func_array($middleware, [$router['callback'], $args, $params]);
|
||||||
$data = call_user_func_array($router['middleware'], [$router['callback'], $args]);
|
} else { // Caso 1.2 - Sin middleware
|
||||||
} else {
|
$params[] = $args;
|
||||||
$data = call_user_func_array($router['callback'], [$args]);
|
$data = call_user_func_array($router['callback'], $params);
|
||||||
|
}
|
||||||
|
} else { // Caso 2 - Sin Pseudo variables por URI
|
||||||
|
if (isset($router['middleware'])) { // Caso 2.1 - Con middleware
|
||||||
|
$middleware = explode('::',$router['middleware']);
|
||||||
|
$data = call_user_func_array($middleware, [$router['callback'], $args]);
|
||||||
|
} else { // Caso 2.2 - Sin middleware
|
||||||
|
$data = call_user_func_array($router['callback'], [$args]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($data)) {
|
if (isset($data)) {
|
||||||
@ -291,8 +295,12 @@ class Router {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Si no hay router que coincida llamamos a $notFoundCallBack
|
if (isset(static::$notFoundCallBack))
|
||||||
call_user_func_array(static::$notFoundCallBack, [$req]);
|
call_user_func_array(static::$notFoundCallBack, []);
|
||||||
|
else {
|
||||||
|
header("HTTP/1.0 404 Not Found"); // Si no hay router que coincida, se devuelve error 404
|
||||||
|
echo '<h2 style="text-align: center;margin: 25px 0px;">Error 404 - Página no encontrada</h2>';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user