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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 
<?php

/* --------------------------------------------------------------
   QuickEditProductPropertiesWriter.inc.php 2017-03-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]
   --------------------------------------------------------------
*/

/**
 * Class QuickEditProductPropertiesWriter
 *
 * @category   System
 * @package    QuickEdit
 * @subpackage Repositories
 */
class QuickEditProductPropertiesWriter implements QuickEditProductPropertiesWriterInterface
{
    /**
     * @var CI_DB_query_builder
     */
    protected $db;
    
    /**
     * @var int
     */
    protected $combiId;
    
    /**
     * @var float
     */
    protected $taxRate;
    
    /**
     * @var QuickEditPropertiesOverviewColumns
     */
    protected $quickEditPropertiesOverviewColumns;
    
    
    /**
     * QuickEditProductPropertiesWriter constructor.
     *
     * @param CI_DB_query_builder                $db                                  Database query builder instance.
     * @param QuickEditPropertiesOverviewColumns $quickEditPropertiesOverviewColumns  QuickEdit properties overview
     *                                                                                columns.
     */
    public function __construct($db, QuickEditPropertiesOverviewColumns $quickEditPropertiesOverviewColumns)
    {
        $this->db                                 = $db;
        $this->quickEditPropertiesOverviewColumns = $quickEditPropertiesOverviewColumns;
    }
    
    
    /**
     * Saves product by product-combi ID.
     *
     * @param array $productCombi Contains product data to be saved.
     *
     * @return bool Returns the operation result.
     */
    public function setByCombisId(array $productCombi)
    {
        try
        {
            foreach($productCombi as $combiId => $items)
            {
                $this->combiId = $combiId;
                
                if(PRICE_IS_BRUTTO === 'true')
                {
                    $this->_setTaxRate();
                }
                
                $this->db->update('products_properties_combis', $this->_collectUpdateData($items),
                                  ['products_properties_combis_id' => $this->combiId]);
            }
            
            return true;
        }
        catch(Exception $exception)
        {
            return false;
        }
    }
    
    
    /**
     * Sets the tax rate of a product.
     */
    protected function _setTaxRate()
    {
        $result = $this->db->select('tax_rate')
                           ->join('products_properties_combis',
                                  'products_properties_combis.products_properties_combis_id = ' . $this->combiId)
                           ->join('tax_rates', 'tax_rates.tax_class_id = products.products_tax_class_id')
                           ->join('zones_to_geo_zones', 'zones_to_geo_zones.zone_country_id = ' . (int)STORE_COUNTRY)
                           ->where('tax_rates.tax_zone_id = zones_to_geo_zones.geo_zone_id')
                           ->where('products.products_id = products_properties_combis.products_id')
                           ->get('products')
                           ->row();
        
        $this->taxRate = $result->tax_rate;
    }
    
    
    /**
     * Returns the updated data of a product.
     *
     * @param array $items Items.
     *
     * @return array Returns the updated data of a product is an array.
     */
    protected function _collectUpdateData(array $items)
    {
        $updateData = [];
        
        $propertiesOverviewColumns = $this->_editableColumns();
        
        foreach($items as $key => $value)
        {
            if($key === 'combiPrice')
            {
                $value = $this->_calculatePrice($value, $propertiesOverviewColumns[$key]);
            }
            elseif($key === 'combiQuantity' || $key === 'combiWeight')
            {
                $value = $this->_calculateUnit($value, $propertiesOverviewColumns[$key]);
            }
            
            $updateData[$propertiesOverviewColumns[$key]] = $value;
        }
        
        return $updateData;
    }
    
    
    /**
     * Calculate the price of the value.
     *
     * @param string $value  Value.
     * @param string $column Column of the table.
     *
     * @return float|int Price of the product.
     */
    protected function _calculatePrice($value, $column)
    {
        $operation = preg_replace('/[^-+%]/', '', $value);
        $value     = preg_replace('/[^.,\d]/', '', $value);
        $value     = str_replace(',', '.', $value);
        $column    = end(explode('.', $column));
        
        $query  = $this->db->select($column)->where('products_properties_combis_id', $this->combiId);
        $result = $query->get('products_properties_combis')->row_array();
        
        if(strpos($operation, '-') !== false)
        {
            return strpos($operation, '%') !== false ? $result[$column] * (1 - $value / 100) : $result[$column] - $value
                                                                                                                  / (1
                                                                                                                     + $this->taxRate
                                                                                                                       / 100);
        }
        
        if(strpos($operation, '+') !== false)
        {
            return strpos($operation, '%') !== false ? $result[$column] * (1 + $value / 100) : $result[$column] + $value
                                                                                                                  / (1
                                                                                                                     + $this->taxRate
                                                                                                                       / 100);
        }
        
        if(strpos($operation, '%') !== false)
        {
            return $result[$column] * (1 - $value / 100);
        }
        
        return $value / (1 + $this->taxRate / 100);
    }
    
    
    /**
     * Calculates the unit of the value.
     *
     * @param string $value  Value.
     * @param string $column Column of the table.
     *
     * @return mixed
     */
    protected function _calculateUnit($value, $column)
    {
        $operation = preg_replace('/[^-+%]/', '', $value);
        $value     = preg_replace('/[^.,\d]/', '', $value);
        $value     = str_replace(',', '.', $value);
        $column    = end(explode('.', $column));
        
        $query  = $this->db->select($column)->where('products_properties_combis_id', $this->combiId);
        $result = $query->get('products_properties_combis')->row_array();
        
        if(strpos($operation, '-') !== false)
        {
            return strpos($operation, '%') !== false ? $result[$column] * (1 - $value / 100) : $result[$column]
                                                                                               - $value;
        }
        
        if(strpos($operation, '+') !== false)
        {
            return strpos($operation, '%') !== false ? $result[$column] * (1 + $value / 100) : $result[$column]
                                                                                               + $value;
        }
        
        return $value;
    }
    
    
    /**
     * Returns the editable columns for the product.
     *
     * @return array Returns the editable columns for the product is an array.
     */
    protected function _editableColumns()
    {
        $propertiesOverviewColumns = $this->_delegateFilterToColumn();
        
        $editableColumns = [
            'products_properties_combis.combi_model',
            'products_properties_combis.combi_ean',
            'products_properties_combis.combi_quantity',
            'products_properties_combis.combi_price',
            'products_properties_combis.combi_price_type',
            'products_properties_combis.combi_shipping_status_id',
            'products_properties_combis.combi_weight'
        ];
        
        return array_filter($propertiesOverviewColumns, function ($columns) use ($editableColumns)
        {
            return in_array($columns, $editableColumns, true);
        });
    }
    
    
    /**
     * Returns the required columns for the overview of the properties.
     *
     * @return array Returns an array of the required columns for the overview of the properties.
     */
    protected function _delegateFilterToColumn()
    {
        $propertiesOverviewColumns = [];
        
        foreach($this->quickEditPropertiesOverviewColumns->serializeColumns() as $columns)
        {
            $propertiesOverviewColumns[$columns['name']] = $columns['field'];
        }
        
        return $propertiesOverviewColumns;
    }
}