Example #1
0
    $_SERVER['QUERY_STRING'] = '';
    $_SERVER['PATH_INFO'] = '/foo/bar';
    $this->isEqual('/foo/bar', safe_path_info(), _WT('The path info is not the one from $_SERVER superglobal'));
    $_SERVER['PATH_INFO'] = null;
    $_SERVER['REDIRECT_URL'] = 'fake data';
    $_SERVER['SCRIPT_NAME'] = '/test/suite.php';
    $_SERVER['PHP_SELF'] = $_SERVER['SCRIPT_NAME'] . '/foo/bar';
    $this->isEqual('/foo/bar', safe_path_info(), _WT('The path info cannot be guessed from SCRIPT_NAME and PHP_SELF when PATH_INFO is not available and the request is a redirection.'));
    $_SERVER['REQUEST_URI'] .= '?';
    $this->isEqual('/foo/bar?', safe_path_info(), _WT('Final interrogation mark is not included in the path info when explicitely set with an empty request string.'));
    $_SERVER['REDIRECT_URL'] = null;
    $sBaseRequestUri = $_SERVER['SCRIPT_NAME'] . '/foo/bar';
    $_SERVER['REQUEST_URI'] = $sBaseRequestUri;
    $this->isEqual('/foo/bar', safe_path_info(), _WT('The path info cannot be guessed from REQUEST_URI and SCRIPT_NAME when PATH_INFO is not available.'));
    $_SERVER['QUERY_STRING'] = 'test=true';
    $_SERVER['REQUEST_URI'] = $sBaseRequestUri . '?' . $_SERVER['QUERY_STRING'];
    $this->isEqual('/foo/bar', safe_path_info(), _WT('The request string can not be stripped off the path info.'));
    $_SERVER['QUERY_STRING'] = '';
    $_SERVER['REQUEST_URI'] = $sBaseRequestUri . '?';
    $this->isEqual('/foo/bar?', safe_path_info(), _WT('Final interrogation mark is not included in the path info when explicitely set with an empty request string when PATH_INFO is not available.'));
    $_SERVER['SCRIPT_NAME'] = '/test/index.php';
    $_SERVER['PHP_SELF'] = $_SERVER['SCRIPT_NAME'];
    $_SERVER['QUERY_STRING'] = 'q=some_event';
    $_SERVER['REQUEST_URI'] = '/test/?' . $_SERVER['QUERY_STRING'];
    $this->isEqual('', safe_path_info(), _WT('The path info should be empty.'));
} catch (Exception $oException) {
}
$_SERVER = $aFormerServer;
if (isset($oException)) {
    throw $oException;
}
Example #2
0
 /**
 	Translate the event sent by the browser.
 
 	@return array Event information
 	@see weeApplication::dispatchEvent for event details
 */
 protected function translateEvent()
 {
     $aEvent = array('get' => $_GET, 'post' => $_POST, 'name' => null, 'pathinfo' => null);
     if (defined('WEE_CLI')) {
         $aEvent['context'] = 'cli';
         $aEvent['method'] = defined('STDIN') ? 'put' : 'get';
     } else {
         $aEvent['context'] = array_value($_SERVER, 'HTTP_X_REQUESTED_WITH') == 'XMLHttpRequest' ? 'xmlhttprequest' : 'http';
         $aEvent['method'] = strtolower($_SERVER['REQUEST_METHOD']);
     }
     $sPathInfo = substr(safe_path_info(), 1);
     // Apply the locale found in the pathinfo if the locale module is started
     if (!empty($sPathInfo) && !empty($this->aDrivers['locale'])) {
         $sPathInfo = $this->aDrivers['locale']->setFromPathInfo($sPathInfo);
     }
     // Use the toppage frame if the pathinfo is empty
     if (empty($sPathInfo)) {
         return array('frame' => isset($this->aConfig['app.toppage']) ? $this->aConfig['app.toppage'] : 'toppage') + $aEvent;
     }
     // Apply custom routing
     $sPathInfo = $this->translateRoute($sPathInfo, $aEvent['get']);
     $i = strpos($sPathInfo, '/');
     if ($i === false) {
         return array('frame' => $sPathInfo) + $aEvent;
     }
     $aEvent['frame'] = substr($sPathInfo, 0, $i);
     $sPathInfo = substr($sPathInfo, $i + 1);
     $i = strpos($sPathInfo, '/');
     if ($i === false) {
         return array('name' => $sPathInfo) + $aEvent;
     }
     $aEvent['name'] = substr($sPathInfo, 0, $i);
     $aEvent['pathinfo'] = substr($sPathInfo, $i + 1);
     return $aEvent;
 }