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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 
<?php

/* --------------------------------------------------------------
 QuantityUnitAjaxController.inc.php 2017-08-09
 Gambio GmbH
 http://www.gambio.de
 Copyright (c) 2017 Gambio GmbH
 Released under the GNU General Public License (Version 2)
 [http://www.gnu.org/licenses/gpl-2.0.html]
 --------------------------------------------------------------
 */

MainFactory::load_class('AdminHttpViewController');

/**
 * Class QuantityUnitAjaxController
 *
 * @category   System
 * @package    AdminHttpViewControllers
 * @extends    AdminHttpViewController
 */
class QuantityUnitAjaxController extends AdminHttpViewController
{
    /**
     * @var \QuantityUnitReadServiceInterface
     */
    protected $readService;
    
    /**
     * @var \QuantityUnitWriteServiceInterface
     */
    protected $writeService;
    
    /**
     * @var \LanguageProvider
     */
    protected $languageProvider;
    
    
    /**
     * Initializes the quantity unit ajax controller.
     *
     * Loads and sets the required dependencies as properties.
     * (QuantityUnitReadService, QuantityUnitWriteService and LanguageProvider)
     */
    public function init()
    {
        $this->readService      = StaticGXCoreLoader::getService('QuantityUnitRead');
        $this->writeService     = StaticGXCoreLoader::getService('QuantityUnitWrite');
        $this->languageProvider = MainFactory::create('LanguageProvider',
                                                      StaticGXCoreLoader::getDatabaseQueryBuilder());
    }
    
    
    /**
     * Provides all quantity unit entities in json format for the listing.
     *
     * @return JsonHttpControllerResponse
     */
    public function actionGetData()
    {
        return MainFactory::create('JsonHttpControllerResponse', [
            'data'         => $this->_serializeQuantityUnitCollection($this->readService->getAll()),
            'languageCode' => $this->languageProvider->getCodeById(new IdType($_SESSION['languages_id']))->asString()
        ]);
    }
    
    
    /**
     * Provides a single quantity unit entity in json format.
     *
     * @return JsonHttpControllerResponse
     */
    public function actionGetById()
    {
        return MainFactory::create('JsonHttpControllerResponse', $this->_serializeQuantityUnit($this->_quantityUnitById()));
    }
    
    
    /**
     * Stores a new quantity unit entity in the database.
     *
     * @return JsonHttpControllerResponse
     */
    public function actionStore()
    {
        $this->_storeQuantityUnit($this->writeService->createQuantityUnit());
        
        return MainFactory::create('JsonHttpControllerResponse', []);
    }
    
    
    /**
     * Updates a quantity unit entity in the database.
     *
     * @return JsonHttpControllerResponse
     */
    public function actionEdit()
    {
        $this->_storeQuantityUnit($this->readService->getById(new IdType($this->_getPostData('id'))));
        
        return MainFactory::create('JsonHttpControllerResponse', []);
    }
    
    
    /**
     * Removes a quantity unit entity from the database.
     *
     * @return JsonHttpControllerResponse
     */
    public function actionRemove()
    {
        $this->writeService->delete($this->_quantityUnitById('post'));
        
        return MainFactory::create('JsonHttpControllerResponse', []);
    }
    
    
    /**
     * Stores a quantity unit entity.
     * Names from $_POST parameter are set by this method.
     *
     * @param \QuantityUnitInterface $quantityUnit Quantity unit entity to be stored.
     *
     * @return $this|\QuantityUnitAjaxController Same instance for chained method calls.
     */
    private function _storeQuantityUnit(QuantityUnitInterface $quantityUnit)
    {
        foreach($this->_getPostData('name') as $languageId => $name)
        {
            $quantityUnit->setName(new StringType($name), $this->languageProvider->getCodeById(new IdType($languageId)));
        }
        $this->writeService->save($quantityUnit);
        
        return $this;
    }
    
    
    /**
     * Returns a quantity unit entity.
     *
     * @param string $type Determine if the quantity unit entity id should be accessed through GET or POST data.
     *
     * @return \QuantityUnitInterface Expected quantity unit entity.
     */
    private function _quantityUnitById($type = 'get')
    {
        if($type === 'post')
        {
            return $this->readService->getById(new IdType($this->_getPostData('id')));
        }
        
        return $this->readService->getById(new IdType($this->_getQueryParameter('id')));
    }
    
    
    /**
     * Converts an array with language codes to an array with codes as key and the language id as value.
     *
     * @param array $languageCodes Array that contains the language codes.
     *
     * @return array Format: [$languageCode => $languageId, (…)].
     */
    private function _langIdsByLangCode(array $languageCodes)
    {
        $data = [];
        
        foreach($languageCodes as $languageCode)
        {
            $data[$languageCode] = $this->languageProvider->getIdByCode(new LanguageCode(new StringType($languageCode)));
        }
        
        return $data;
    }
    
    
    /**
     * Serializes a quantity unit entity.
     *
     * @param \QuantityUnitInterface $quantityUnit Quantity unit entity to be serialized.
     *
     * @return array Array that contains the quantity unit entity information.
     */
    private function _serializeQuantityUnit(QuantityUnitInterface $quantityUnit)
    {
        return [
            'id'          => $quantityUnit->getId(),
            'names'       => $quantityUnit->getNames(),
            'languageIds' => $this->_langIdsByLangCode(array_keys($quantityUnit->getNames()))
        ];
    }
    
    
    /**
     * Serializes a quantity unit collection.
     *
     * @param \QuantityUnitCollection $collection
     *
     * @return array Array that contains information about all quantity unit entities.
     */
    private function _serializeQuantityUnitCollection(QuantityUnitCollection $collection)
    {
        $data = [];
        foreach($collection->getArray() as $quantityUnit)
        {
            $data[] = $this->_serializeQuantityUnit($quantityUnit);
        }
        
        return $data;
    }
}