Example #1
0
 /**
  * Sets a buch of static API calls
  *
  */
 function __construct()
 {
     $app = \Slim\Slim::getInstance();
     $app->config('debug', false);
     $app->response()->header('Access-Control-Allow-Origin', '*');
     // Mirrors the API request
     $app->get('/return', function () use($app) {
         $app->render(200, array('method' => $app->request()->getMethod(), 'name' => $app->request()->get('name'), 'headers' => $app->request()->headers(), 'params' => $app->request()->params()));
     });
     // Generic error handler
     $app->error(function (Exception $e) use($app) {
         $app->render($e->getCode(), array('error' => true, 'msg' => \ApiMiddleware::_errorType($e->getCode()) . ": " . $e->getMessage()));
     });
     // Not found handler (invalid routes, invalid method types)
     $app->notFound(function () use($app) {
         $app->render(404, array('error' => TRUE, 'msg' => 'Invalid route'));
     });
     // Handle Empty response body
     $app->hook('slim.after.router', function () use($app) {
         //Fix sugested by: https://github.com/bdpsoft
         //Will allow download request to flow
         if ($app->response()->header('Content-Type') === 'application/octet-stream') {
             return;
         }
         if (strlen($app->response()->body()) == 0) {
             $app->render(500, array('error' => TRUE, 'msg' => 'Empty response'));
         }
     });
 }
Example #2
0
 static function enable()
 {
     self::$disabled = false;
 }