Example #1
0
 /**
  * Create a new request for the application.
  */
 public function __construct()
 {
     $this->router = new Router();
     $this->method = strtoupper($this->router->requestMethod());
     // Store the raw input data
     $input = array_merge($_GET, $_POST);
     $this->rawInput = new Input($input);
     // Escape the input data, and store it again
     $input = $this->escapeInput($input);
     $this->input = new Input($input);
     // Store the current URI
     if (isset($_SERVER['REQUEST_URI'])) {
         $this->uri = $_SERVER['REQUEST_URI'];
     }
     // Retrieve the previous URI from the session, and store it
     // against the request object
     if (($previous = Session::get('previous_uri')) !== null) {
         $this->previousUri = $previous;
     }
     // Update the previous URI session key now that we have retrieved
     // it's value
     Session::set('previous_uri', $this->uri);
 }
Example #2
0
 /**
  * Check if the route matches the current request on ANY method,
  * and if so execute its callback.
  *
  * @return mixed The route callback is invoked
  */
 private function executeAny()
 {
     if (in_array(Router::requestMethod(), Router::allowed()) && is_array($vars = $this->match())) {
         $ref = new \ReflectionFunction($this->callback);
         return $ref->invokeArgs($vars);
     }
     return;
 }