Example #1
0
 public function testIsValid()
 {
     $TestVar = new Base();
     $this->assertTrue(Base::isValid($TestVar));
     $this->assertTrue(Object::isValid($TestVar));
     $TestVar = new RESTProcessorA_underTest_isValid();
     $this->assertTrue(RESTProcessorA_underTest_isValid::isValid($TestVar));
     $this->assertTrue(RESTProcessorA::isValid($TestVar));
     $this->assertTrue(ProcessorA::isValid($TestVar));
     $this->assertTrue(Object::isValid($TestVar));
     $TestVar = new ProcessorA_underTest_isValid();
     $this->assertTrue(ProcessorA_underTest_isValid::isValid($TestVar));
     $this->assertTrue(ProcessorA::isValid($TestVar));
     $this->assertTrue(Object::isValid($TestVar));
     $TestVar = new RESTController();
     $this->assertTrue(RESTController::isValid($TestVar));
     $this->assertTrue(FrontControllerA::isValid($TestVar));
     $this->assertTrue(Object::isValid($TestVar));
     $TestVar = new FrontControllerA_underTest_isValid();
     $this->assertTrue(FrontControllerA_underTest_isValid::isValid($TestVar));
     $this->assertTrue(FrontControllerA::isValid($TestVar));
     $this->assertTrue(Object::isValid($TestVar));
     $TestVar = new ModelA_underTest_isValid();
     $this->assertTrue(ModelA_underTest_isValid::isValid($TestVar));
     $this->assertTrue(ModelA::isValid($TestVar));
 }
Example #2
0
 /**
  * @param HttpRequestA $oRequest
  * @param RESTProcessorA $oProcessor
  * @returns HttpResponseA
  * @throws \vsc\presentation\responses\ExceptionResponse
  * @throws \vsc\presentation\responses\ExceptionResponseError
  * @throws \vsc\presentation\views\ExceptionView
  * @throws ExceptionResponseError
  */
 public function getResponse(HttpRequestA $oRequest, $oProcessor = null)
 {
     $oModel = null;
     try {
         if (!$oRequest->isGet()) {
             if ($oRequest->hasContentType() && !RESTRequest::validContentType($oRequest->getContentType())) {
                 throw new ExceptionResponseError('Invalid request content type', HttpResponseType::UNSUPPORTED_MEDIA_TYPE);
             }
         }
         if (!ProcessorA::isValid($oProcessor)) {
             throw new ExceptionController('Invalid request processor');
         }
         /* @var RESTProcessorA $oProcessor */
         if (RESTProcessorA::isValid($oProcessor) && !$oProcessor->validRequestMethod($oRequest->getHttpMethod())) {
             throw new ExceptionResponseError('Invalid request method', HttpResponseType::METHOD_NOT_ALLOWED);
         }
         $oMap = $oProcessor->getMap();
         if ($oMap->requiresAuthentication()) {
             try {
                 if ($oProcessor instanceof AuthenticatedProcessorI) {
                     /* @var AuthenticatedProcessorI $oProcessor */
                     if (!$oRequest->hasAuthenticationData()) {
                         throw new ExceptionAuthenticationNeeded('This resource needs authentication');
                     }
                     // here we check that the request contains the same authentication type as the map
                     if (($oRequest->getAuthentication()->getType() & $oMap->getAuthenticationType()) !== $oMap->getAuthenticationType()) {
                         throw new ExceptionAuthenticationNeeded('Invalid authorization scheme. Supported schemes: ' . implode(', ', $oMap->getValidAuthenticationSchemas()));
                     }
                     if (!$oProcessor->handleAuthentication($oRequest->getAuthentication())) {
                         throw new ExceptionAuthenticationNeeded('Invalid authentication data', 'testrealm');
                     }
                 } else {
                     throw new ExceptionAuthenticationNeeded('This resource requires authentication but doesn\'t support any authorization scheme');
                 }
             } catch (ExceptionAuthenticationNeeded $e) {
                 return $this->getErrorResponse($e, $oRequest);
             }
         }
     } catch (\Exception $e) {
         return $this->getErrorResponse($e, $oRequest);
     }
     return parent::getResponse($oRequest, $oProcessor);
 }
Example #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;
 }
Example #4
0
 /**
  * @param HttpRequestA $oRequest
  * @param ProcessorA $oProcessor
  * @throws ExceptionPath
  * @throws ExceptionResponse
  * @throws ExceptionView
  * @returns HttpResponseA
  */
 public function getResponse(HttpRequestA $oRequest, $oProcessor = null)
 {
     $oResponse = vsc::getEnv()->getHttpResponse();
     $oModel = null;
     /* @var ControllerMap $oMyMap */
     $oMyMap = $this->getMap();
     if (ProcessorA::isValid($oProcessor)) {
         try {
             $oProcessor->init();
             $oModel = $oProcessor->handleRequest($oRequest);
         } catch (ExceptionResponseRedirect $e) {
             $oResponse->setStatus($e->getRedirectCode());
             $oResponse->setLocation($e->getLocation());
             return $oResponse;
         } catch (\Exception $e) {
             // we had error in the controller
             // @todo make more error processors
             return $this->getErrorResponse($e, $oRequest);
         }
     }
     if ($oResponse->getStatus() == 0) {
         $oResponse->setStatus(HttpResponseType::OK);
     }
     // we didn't set any special view
     // this means that the developer needs to provide his own views
     $oView = $this->getView();
     $oMap = null;
     if (ProcessorA::isValid($oProcessor)) {
         /* @var ProcessorMap $oMap */
         $oMap = $oProcessor->getMap();
         if (MappingA::isValid($oMap)) {
             if (MappingA::isValid($oMyMap)) {
                 $oMap->merge($oMyMap);
             }
             $oProcessorResponse = $oMap->getResponse();
             if (HttpResponseA::isValid($oProcessorResponse)) {
                 $oResponse = $oProcessorResponse;
             }
         }
         // setting the processor map
         $oView->setMap($oMap);
     }
     try {
         if ((ProcessorMap::isValid($oMap) || ClassMap::isValid($oMap)) && !$oMap->isStatic() && !$oMyMap->isStatic() && (ControllerMap::isValid($oMyMap) || ClassMap::isValid($oMyMap))) {
             $oView->setMainTemplate($oMyMap->getMainTemplatePath() . $oView->getViewFolder() . DIRECTORY_SEPARATOR . $oMyMap->getMainTemplate());
         }
     } catch (ExceptionPath $e) {
         // fallback to html5
         // @todo verify main template path and main template exist
         $oView->setMainTemplate($oMyMap->getMainTemplatePath() . DIRECTORY_SEPARATOR . 'html5' . DIRECTORY_SEPARATOR . $oMyMap->getMainTemplate());
     }
     if (!ModelA::isValid($oModel)) {
         $oModel = new EmptyModel();
         if (!ProcessorMap::isValid($oMap) || $oMap->getTitle() == '') {
             $oModel->setPageTitle('Warning');
         }
         $oModel->setPageContent('Warning: the processor didn\'t return a valid model. This is probably an error');
     }
     $oView->setModel($oModel);
     $oResponse->setView($oView);
     if (MappingA::isValid($oMap)) {
         $aHeaders = $oMap->getHeaders();
         if (count($aHeaders) > 0) {
             foreach ($aHeaders as $sName => $sHeader) {
                 $oResponse->addHeader($sName, $sHeader);
             }
         }
         $iProcessorSetStatus = $oMap->getResponseStatus();
         if (HttpResponseType::isValidStatus($iProcessorSetStatus)) {
             $oResponse->setStatus($iProcessorSetStatus);
         }
     }
     return $oResponse;
 }