Exemplo n.º 1
0
 public function testBasic__construct()
 {
     $_SERVER = [];
     $o = new RwHttpRequest();
     $this->assertEmpty($o->getUri());
     $this->assertEmpty($o->getTaintedVars());
 }
Exemplo n.º 2
0
 public function getGetVar($key)
 {
     return parent::getGetVar($key);
 }
Exemplo n.º 3
0
 /**
  * (non-PHPdoc)
  * @see lib/presentation/dispatchers/vscDispatcherA#getProcessController()
  * @throws ExceptionSitemap
  * @throws ExceptionResponseError
  * @returns ProcessorA
  */
 public function getProcessController()
 {
     if (!ProcessorA::isValid($this->oProcessor)) {
         $oProcessorMap = $this->getCurrentProcessorMap();
         if (!ProcessorMap::isValid($oProcessorMap) && !ClassMap::isValid($oProcessorMap)) {
             // this mainly means nothing was matched to our url, or no mappings exist, so we're falling back to 404
             $oProcessorMap = new ProcessorMap(NotFoundProcessor::class, '.*');
             $oProcessorMap->setTemplatePath(VSC_RES_PATH . 'templates');
             $oProcessorMap->setTemplate('404.php');
         }
         $sPath = $oProcessorMap->getPath();
         try {
             $sProcessorName = null;
             if ($this->getSiteMap()->isValidObjectPath($sPath) || stristr(basename($sPath), '.') === false && !is_file($sPath)) {
                 // dirty import of the module folder and important subfolders - @FIXME
                 $sModuleName = $oProcessorMap->getModuleName();
                 if (stristr(basename($sPath), '.') === false && !is_file($sPath)) {
                     // namespaced class name
                     $sProcessorName = $sPath;
                 } elseif (is_file($sPath)) {
                     try {
                         include $sPath;
                     } catch (\Exception $e) {
                         \vsc\_e($e);
                     }
                     $sProcessorName = SiteMapA::getClassName($sPath);
                 }
                 try {
                     if (class_exists($sProcessorName)) {
                         $this->oProcessor = new $sProcessorName();
                     } else {
                         $this->oProcessor = new NotFoundProcessor();
                     }
                 } catch (\Exception $e) {
                     $this->oProcessor = new ErrorProcessor($e);
                 }
             } elseif ($this->getSiteMap()->isValidStaticPath($sPath)) {
                 // static stuff
                 $this->oProcessor = new StaticFileProcessor();
                 $this->oProcessor->setFilePath($sPath);
             }
             /*else {
             			$this->oProcessor = new NotFoundProcessor();
             		}*/
             if (ProcessorA::isValid($this->oProcessor)) {
                 if (!(ErrorProcessor::isValid($this->oProcessor) && MappingA::isValid($this->oProcessor->getMap()))) {
                     // @TODO: this should be a MappingA->merge() when the processor already has a map
                     $this->oProcessor->setMap($oProcessorMap);
                 }
                 // setting the variables defined in the processor into the tainted variables
                 /** @var RwHttpRequest $oRawRequest */
                 $oRawRequest = $this->getRequest();
                 if (RwHttpRequest::isValid($oRawRequest)) {
                     $oRawRequest->setTaintedVars($this->oProcessor->getLocalVars());
                     // FIXME!!!
                 }
             } else {
                 //					\vsc\d($sPath, $this->oProcessor);
                 //					\vsc\d($this->oProcessor);
                 // broken URL
                 throw new ExceptionResponseError('Broken URL', 400);
             }
         } catch (ExceptionResponseRedirect $e) {
             // get the response
             $oResponse = vsc::getEnv()->getHttpResponse();
             $oResponse->setLocation($e->getLocation());
             ob_end_flush();
             $oResponse->outputHeaders();
         }
     }
     return $this->oProcessor;
 }