Example #1
0
 /**
  * Run the Slim application
  *
  * This method is the "meat and potatoes" of Slim and should be the last
  * method called. This fires up Slim, invokes the Route that matches
  * the current request, and returns the response to the client.
  *
  * This method will invoke the Not Found handler if no matching
  * routes are found.
  *
  * This method will also catch any unexpected Exceptions thrown by this
  * application; the Exceptions will be logged to this application's log
  * and rethrown to the global Exception handler.
  *
  * @return void
  */
 public function run()
 {
     try {
         try {
             $this->applyHook('slim.before');
             ob_start();
             $this->applyHook('slim.before.router');
             $matchedRoutes = $this->router->getMatchedRoutes();
             $dispatched = false;
             $httpMethod = $this->request()->getMethod();
             $httpMethodsAllowed = array();
             foreach ($matchedRoutes as $route) {
                 if ($route->supportsHttpMethod($httpMethod)) {
                     try {
                         $this->applyHook('slim.before.dispatch');
                         $dispatched = $route->dispatch();
                         $this->applyHook('slim.after.dispatch');
                         if ($dispatched) {
                             break;
                         }
                     } catch (Slim_Exception_Pass $e) {
                         continue;
                     }
                 } else {
                     $httpMethodsAllowed = array_merge($httpMethodsAllowed, $route->getHttpMethods());
                 }
             }
             if (!$dispatched) {
                 if ($httpMethodsAllowed) {
                     $this->response()->header('Allow', implode(' ', $httpMethodsAllowed));
                     $this->halt(405);
                 } else {
                     $this->notFound();
                 }
             }
             $this->response()->write(ob_get_clean());
             $this->applyHook('slim.after.router');
             if ($this->view->getData('flash')) {
                 $this->view->getData('flash')->save();
             }
             session_write_close();
             $this->response->send();
             $this->applyHook('slim.after');
         } catch (Slim_Exception_RequestSlash $e) {
             $this->redirect($this->request->getRootUri() . $this->request->getResourceUri() . '/', 301);
         } catch (Exception $e) {
             if ($e instanceof Slim_Exception_Stop) {
                 throw $e;
             }
             $this->getLog()->error($e);
             if ($this->config('debug') === true) {
                 $this->halt(500, self::generateErrorMarkup($e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString()));
             } else {
                 $this->error($e);
             }
         }
     } catch (Slim_Exception_Stop $e) {
         //Exit application context
     }
 }
 /**
  * Run the Slim application
  *
  * This method is the "meat and potatoes" of Slim and should be the last
  * method called. This fires up Slim, invokes the Route that matches
  * the current request, and returns the response to the client.
  *
  * This method will invoke the Not Found handler if no matching
  * routes are found.
  *
  * This method will also catch any unexpected Exceptions thrown by this
  * application; the Exceptions will be logged to this application's log
  * and rethrown to the global Exception handler.
  *
  * @return void
  */
 public function run()
 {
     try {
         $this->applyHook('slim.before');
         ob_start();
         $this->applyHook('slim.before.router');
         $dispatched = false;
         foreach ($this->router->getMatchedRoutes() as $route) {
             try {
                 $this->applyHook('slim.before.dispatch');
                 $dispatched = $route->dispatch();
                 $this->applyHook('slim.after.dispatch');
                 if ($dispatched) {
                     break;
                 }
             } catch (Slim_Exception_Pass $e) {
                 continue;
             }
         }
         if (!$dispatched) {
             $this->notFound();
         }
         $this->response()->write(ob_get_clean());
         $this->applyHook('slim.after.router');
         $this->view->getData('flash')->save();
         session_write_close();
         $this->response->send();
         $this->applyHook('slim.after');
     } catch (Slim_Exception_RequestSlash $e) {
         try {
             $this->redirect($this->request->getRootUri() . $this->request->getResourceUri() . '/', 301);
         } catch (Slim_Exception_Stop $e2) {
             //Ignore Slim_Exception_Stop and exit application context
         }
     } catch (Slim_Exception_Stop $e) {
         //Exit application context
     } catch (Exception $e) {
         $this->getLog()->error($e);
         try {
             if ($this->config('debug') === true) {
                 $this->halt(500, self::generateErrorMarkup($e->getMessage(), $e->getFile(), $e->getLine(), $e->getTraceAsString()));
             } else {
                 $this->error($e);
             }
         } catch (Slim_Exception_Stop $e2) {
             //Ignore Slim_Exception_Stop and exit application context
         }
     }
 }
Example #3
0
 /**
  * Test response body if HEAD request
  *
  * Pre-conditions:
  * HTTP method is HEAD
  *
  * Post-conditions:
  * Response body is NOT set;
  * Response headers are set;
  */
 function testResponseBodyIfHeadRequest() {
     $this->expectOutputString('');
     $_SERVER['REQUEST_METHOD'] = 'HEAD';
     $req = new Slim_Http_Request();
     $res = new Slim_Http_Response($req);
     $res->body('This is a test body');
     $res->send();
     $this->assertEquals('text/html', $res->header('Content-Type'));
     $this->assertEquals(19, $res->header('Content-Length'));
 }