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 212 213 214 215 216 217 218 219 220 221 222 223 
<?php

/* --------------------------------------------------------------
 VPEAjaxController.inc.php 2017-08-03
 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 VPEAjaxController
 *
 * @category   System
 * @package    AdminHttpViewControllers
 * @extends    AdminHttpViewController
 */
class VPEAjaxController extends AdminHttpViewController
{
    /**
     * @var \VPEReadServiceInterface
     */
    protected $readService;
    
    /**
     * @var \VPEWriteServiceInterface
     */
    protected $writeService;
    
    /**
     * @var \LanguageProvider
     */
    protected $languageProvider;
    
    
    /**
     * Initializes the vpe ajax controller.
     *
     * Loads and sets the required dependencies as properties.
     * (VPEReadService, VPEWriteService and LanguageProvider)
     */
    public function init()
    {
        $this->readService      = StaticGXCoreLoader::getService('VPERead');
        $this->writeService     = StaticGXCoreLoader::getService('VPEWrite');
        $this->languageProvider = MainFactory::create('LanguageProvider',
                                                      StaticGXCoreLoader::getDatabaseQueryBuilder());
    }
    
    
    /**
     * Provides all vpe entities in json format for the listing.
     *
     * @return JsonHttpControllerResponse
     */
    public function actionGetData()
    {
        return MainFactory::create('JsonHttpControllerResponse', [
            'data'         => $this->_serializeVpeCollection($this->readService->getAll()),
            'languageCode' => $this->languageProvider->getCodeById(new IdType($_SESSION['languages_id']))->asString()
        ]);
    }
    
    
    /**
     * Provides a single vpe entity in json format.
     *
     * @return JsonHttpControllerResponse
     */
    public function actionGetById()
    {
        return MainFactory::create('JsonHttpControllerResponse', $this->_serializeVpe($this->_vpeById()));
    }
    
    
    /**
     * Stores a new vpe entity in the database.
     *
     * @return JsonHttpControllerResponse
     */
    public function actionStore()
    {
        $this->_storeVpe($this->writeService->createVPE());
        
        return MainFactory::create('JsonHttpControllerResponse', []);
    }
    
    
    /**
     * Updates a vpe entity in the database.
     *
     * @return JsonHttpControllerResponse
     */
    public function actionEdit()
    {
        $this->_storeVpe($this->readService->getById(new IdType($this->_getPostData('id'))));
        
        return MainFactory::create('JsonHttpControllerResponse', []);
    }
    
    
    /**
     * Removes a vpe entity from the database.
     *
     * @return JsonHttpControllerResponse
     */
    public function actionRemove()
    {
        $this->writeService->delete($this->_vpeById('post'));
        
        return MainFactory::create('JsonHttpControllerResponse', []);
    }
    
    
    /**
     * Stores a vpe entity.
     * Names from $_POST parameter are set by this method.
     *
     * @param \VPEInterface $vpe
     *
     * @return $this|\VPEAjaxController Same instance for chained method calls.
     */
    private function _storeVpe(VPEInterface $vpe)
    {
        if($this->_getPostData('default'))
        {
            $vpe->setDefault(new BoolType(true));
        }
        
        foreach($this->_getPostData('name') as $languageId => $name)
        {
            $vpe->setName(new StringType($name), $this->languageProvider->getCodeById(new IdType($languageId)));
        }
        $this->writeService->save($vpe);
        
        if($this->_getPostData('isDefault') && !$this->_getPostData('default'))
        {
            $query = 'UPDATE `configuration` SET `configuration_value` = "" WHERE `configuration_key` = "DEFAULT_PRODUCTS_VPE_ID"';
            xtc_db_query($query);
        }
        
        return $this;
    }
    
    
    /**
     * Returns a vpe entity.
     *
     * @param string $type Determine if the vpe entity id should be accessed through GET or POST data.
     *
     * @return \VPEInterface Expected vpe entity.
     */
    private function _vpeById($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 vpe entity.
     *
     * @param \VPEInterface $vpe VPE Entity to be serialized.
     *
     * @return array Array that contains the vpe entity information.
     */
    private function _serializeVpe(VPEInterface $vpe)
    {
        return [
            'id'          => $vpe->getId(),
            'names'       => $vpe->getNames(),
            'default'     => $vpe->isDefault(),
            'languageIds' => $this->_langIdsByLangCode(array_keys($vpe->getNames()))
        ];
    }
    
    
    /**
     * Serializes a vpe collection.
     *
     * @param \VPECollection $collection
     *
     * @return array Array that contains information about all vpe entities.
     */
    private function _serializeVpeCollection(VPECollection $collection)
    {
        $data = [];
        foreach($collection->getArray() as $vpe)
        {
            $data[] = $this->_serializeVpe($vpe);
        }
        
        return $data;
    }
}