From 67311df6d885338c78d885acc8947202fb8548dd Mon Sep 17 00:00:00 2001 From: Hassan Khan Date: Thu, 30 Jan 2014 19:31:23 +0000 Subject: [PATCH] Removed ``Zepto\Router::execute()``, moved logic to ``Zepto\Router::run()``, now 500 errors are officially handled. Fixed reference in ``Zepto\Zepto`` as well. --- library/Zepto/Router.php | 38 +++++++++++++------------------------- library/Zepto/Zepto.php | 2 +- 2 files changed, 14 insertions(+), 26 deletions(-) diff --git a/library/Zepto/Router.php b/library/Zepto/Router.php index 608d42e..aa1633f 100644 --- a/library/Zepto/Router.php +++ b/library/Zepto/Router.php @@ -64,7 +64,7 @@ class Router { /** - * Supported HTTP Methods + * Supported HTTP Methods (might not be strictly accurate ... yet - I've only tested GET and POST') */ const METHOD_HEAD = 'HEAD'; const METHOD_GET = 'GET'; @@ -227,6 +227,7 @@ public function run() if ($route === null) { $this->not_found(); } + // If route is a valid Route object, then try and execute its callback else { // Set current route $this->current_route = $route; @@ -234,31 +235,18 @@ public function run() // Get parameters from request $params = $this->parse_parameters($route); - // Execute callback, and set returned string as response content - $this->response->setContent(call_user_func_array($route->get_callback(), $params)); + // Try to execute callback for route, if it fails, catch the exception + // and generate a HTTP 500 error + try { + // Set response content + $this->response->setContent(call_user_func_array($route->callback(), array($params))); - // Send response - $this->response->send(); - } - } - - /** - * Tries to run the routing engine and generate a response, if any exceptions - * are thrown then it executes the error handler - * - * @uses Router::run() - * @return - */ - public function execute() - { - try{ - $this->run(); - } - catch (Exception $e) { - - $this->error($e->getMessage()); - // Add logging stuff here - maybe? - // Maybe make it do a HTTP 500 error? + // Send response + $this->response->send(); + } + catch (\Exception $e) { + $this->error($e->getMessage()); + } } } diff --git a/library/Zepto/Zepto.php b/library/Zepto/Zepto.php index 79ced58..b0d8bae 100644 --- a/library/Zepto/Zepto.php +++ b/library/Zepto/Zepto.php @@ -156,7 +156,7 @@ function() { */ public function run() { - return $this->container['router']->execute(); + return $this->container['router']->run(); } /**