ForwardFW
[ class tree: ForwardFW ] [ index: ForwardFW ] [ all elements ]

Source for file RequestResponse.php

Documentation is available at RequestResponse.php

  1. <?php
  2. declare(encoding "utf-8");
  3. /**
  4.  * This file is part of ForwardFW a web application framework.
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  * PHP version 5
  21.  *
  22.  * @category   Filter
  23.  * @package    ForwardFW
  24.  * @subpackage RequestResponse
  25.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  26.  * @copyright  2009-2010 The Authors
  27.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  28.  * @version    SVN: $Id: $
  29.  * @link       http://forwardfw.sourceforge.net
  30.  * @since      File available since Release 0.0.1
  31.  */
  32.  
  33. require_once 'ForwardFW/Filter.php';
  34. require_once 'ForwardFW/Request.php';
  35. require_once 'ForwardFW/Response.php';
  36.  
  37. /**
  38.  * This abstract class needs to be extended to be a callable filter.
  39.  *
  40.  * @category   Filter
  41.  * @package    ForwardFW
  42.  * @subpackage RequestResponse
  43.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  44.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  45.  * @link       http://forwardfw.sourceforge.net
  46.  */
  47. {
  48.     /**
  49.      * The Request object
  50.      *
  51.      * @var ForwardFW_Request 
  52.      */
  53.     protected $request = null;
  54.  
  55.     /**
  56.      * The Response object
  57.      *
  58.      * @var ForwardFW_Request 
  59.      */
  60.     protected $response = null;
  61.  
  62.     /**
  63.      * Constructor
  64.      *
  65.      * @param ForwardFW_Filter_RequestResponse $_child    The child filter or null
  66.      *  if you are the last
  67.      * @param ForwardFW_Request                $_request  The request for this
  68.      *                                                     application
  69.      * @param ForwardFW_Response               $_response The response for this
  70.      *                                                     application
  71.      *
  72.      * @return new instance
  73.      */
  74.     public function __construct(
  75.         ForwardFW_Filter_RequestResponse $_child null,
  76.         ForwardFW_Request $_request null,
  77.         ForwardFW_Response $_response null
  78.     {
  79.         parent::__construct($_child);
  80.         if (is_null($this->child)) {
  81.             $this->request  = $this->child->getRequest();
  82.             $this->response = $this->child->getResponse();
  83.         else {
  84.             $this->request  = $_request;
  85.             $this->response = $_response;
  86.         }
  87.     }
  88.  
  89.     /**
  90.      * Function to process before your child
  91.      *
  92.      * @return void 
  93.      */
  94.     public function doIncomingFilter()
  95.     {
  96.         $this->response->addLog('Hallo');
  97.     }
  98.  
  99.     /**
  100.      * Function to process after your child
  101.      *
  102.      * @return void 
  103.      */
  104.     public function doOutgoingFilter()
  105.     {
  106.         $this->response->addLog('Bye');
  107.     }
  108.  
  109.     /**
  110.      * Returns the request object of this process
  111.      *
  112.      * @return ForwardFW_Request 
  113.      */
  114.     public function getRequest()
  115.     {
  116.         return $this->request;
  117.     }
  118.  
  119.     /**
  120.      * Returns the response object of this process
  121.      *
  122.      * @return ForwardFW_Response 
  123.      */
  124.     public function getResponse()
  125.     {
  126.         return $this->response;
  127.     }
  128.  
  129.     /**
  130.      * Builds the Filters which are defined in the configuration for RequestResponse
  131.      * handling.
  132.      *
  133.      * @param ForwardFW_Request  $_request  The request for this application
  134.      * @param ForwardFW_Response $_response The response for this application
  135.      *
  136.      * @return ForwardFW_Filter_RequestResponse The start filter with the
  137.      *  configured childs. So the filters can be started.
  138.      */
  139.     public static function getFilters(
  140.         ForwardFW_Request $_request,
  141.         ForwardFW_Response $_response
  142.     {
  143.         $filter null;
  144.         $arConfig $GLOBALS[get_class()];
  145.         if (is_array($arConfig)) {
  146.             $arConfig array_reverse($arConfig);
  147.             foreach ($arConfig as $strFilter{
  148.                 include_once str_replace('_''/'$strFilter'.php';
  149.                 $filter new $strFilter($filter$_request$_response);
  150.             }
  151.         else {
  152.             // Fehler werfen
  153.         }
  154.         return $filter;
  155.     }
  156. }
  157. ?>

Documentation generated on Sun, 30 Jan 2011 20:46:44 +0100 by phpDocumentor 1.4.3