1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41  42  43  44  45  46  47  48  49  50  51  52  53  54  55  56  57  58  59  60  61  62  63  64  65  66  67  68  69  70  71  72  73  74  75  76  77  78  79  80  81  82  83  84  85  86  87  88  89  90  91  92  93  94  95  96  97  98  99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 
<?php
/* --------------------------------------------------------------
   HttpServiceFactory.inc.php 2016-07-18
   Gambio GmbH
   http://www.gambio.de
   Copyright (c) 2016 Gambio GmbH
   Released under the GNU General Public License (Version 2)
   [http://www.gnu.org/licenses/gpl-2.0.html]
   --------------------------------------------------------------
*/

MainFactory::load_class('HttpServiceFactoryInterface');

/**
 * Class HttpFactory
 *
 * @category   System
 * @package    Http
 * @subpackage Factories
 * @implements HttpServiceFactoryInterface
 */
class HttpServiceFactory implements HttpServiceFactoryInterface
{
    /**
     * Creates a new instance of the http service.
     *
     * @return HttpServiceInterface
     */
    public function createService()
    {
        $httpContextFactory = $this->_createAbstractHttpContextFactory();
        $httpDispatcher     = $this->_createHttpDispatcher();

        return MainFactory::create('HttpService', $httpContextFactory, $httpDispatcher);
    }


    /**
     * Creates and returns a new instance of the environment http view controller registry factory.
     *
     * @return EnvironmentHttpViewControllerRegistryFactory
     */
    protected function _createAbstractHttpViewControllerRegistryFactory()
    {
        $dataCache = DataCache::get_instance(); 
        $classFinderSettings = MainFactory::create('EnvironmentClassFinderSettings');
        $classFinder = MainFactory::create('ClassFinder', $classFinderSettings, $dataCache);
        
        return MainFactory::create('EnvironmentHttpViewControllerRegistryFactory', $classFinder);
    }


    /**
     * Creates and returns a new instance of the environment http context factory.
     *
     * @return EnvironmentHttpContextFactory
     */
    protected function _createAbstractHttpContextFactory()
    {
        return MainFactory::create('EnvironmentHttpContextFactory');
    }


    /**
     * Creates and returns a new instance of the http dispatcher.
     *
     * @return HttpDispatcherInterface
     */
    protected function _createHttpDispatcher()
    {
        $httpContextReader         = $this->_createHttpContextReader();
        $httpViewControllerFactory = $this->_createHttpViewControllerFactory();

        return MainFactory::create('HttpDispatcher', $httpContextReader, $httpViewControllerFactory);
    }


    /**
     * Creates and returns a new instance of the http context reader.
     *
     * @return HttpContextReaderInterface
     */
    protected function _createHttpContextReader()
    {
        return MainFactory::create('HttpContextReader');
    }


    /**
     * Creates and returns a new instance of the http response processor.
     *
     * @return HttpResponseProcessorInterface
     */
    protected function _createHttpResponseProcessor()
    {
        return MainFactory::create('HttpResponseProcessor');
    }


    /**
     * Creates and returns a new instance of the http view controller factory.
     *
     * @return HttpViewControllerFactoryInterface
     */
    protected function _createHttpViewControllerFactory()
    {
        $httpViewControllerRegistryFactory = $this->_createAbstractHttpViewControllerRegistryFactory();
        $httpViewControllerRegistry        = $httpViewControllerRegistryFactory->create();

        $httpContextReader     = $this->_createHttpContextReader();
        $httpResponseProcessor = $this->_createHttpResponseProcessor();

        return MainFactory::create('HttpViewControllerFactory',
                                   $httpViewControllerRegistry,
                                   $httpContextReader,
                                   $httpResponseProcessor);
    }
}