Relation.php 2.9 KB
Newer Older
Ketan's avatar
Ketan committed
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
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Customer\Model\ResourceModel\Customer;

/**
 * Class Relation
 */
class Relation implements \Magento\Framework\Model\ResourceModel\Db\VersionControl\RelationInterface
{
    /**
     * Save relations for Customer
     *
     * @param \Magento\Framework\Model\AbstractModel $customer
     * @return void
     * @SuppressWarnings(PHPMD.CyclomaticComplexity)
     */
    public function processRelation(\Magento\Framework\Model\AbstractModel $customer)
    {
        $defaultBillingId = $customer->getData('default_billing');
        $defaultShippingId = $customer->getData('default_shipping');

        if (!$customer->getData('ignore_validation_flag')) {
            /** @var \Magento\Customer\Model\Address $address */
            foreach ($customer->getAddresses() as $address) {
                if ($address->getData('_deleted')) {
                    if ($address->getId() == $defaultBillingId) {
                        $customer->setData('default_billing', null);
                    }

                    if ($address->getId() == $defaultShippingId) {
                        $customer->setData('default_shipping', null);
                    }

                    $removedAddressId = $address->getId();
                    $address->delete();

                    // Remove deleted address from customer address collection
                    $customer->getAddressesCollection()->removeItemByKey($removedAddressId);
                } else {
                    $address->setParentId(
                        $customer->getId()
                    )->setStoreId(
                        $customer->getStoreId()
                    )->setIsCustomerSaveTransaction(
                        true
                    )->save();

                    if (($address->getIsPrimaryBilling() ||
                            $address->getIsDefaultBilling()) && $address->getId() != $defaultBillingId
                    ) {
                        $customer->setData('default_billing', $address->getId());
                    }

                    if (($address->getIsPrimaryShipping() ||
                            $address->getIsDefaultShipping()) && $address->getId() != $defaultShippingId
                    ) {
                        $customer->setData('default_shipping', $address->getId());
                    }
                }
            }
        }

        $changedAddresses = [];

        $changedAddresses['default_billing'] = $customer->getData('default_billing');
        $changedAddresses['default_shipping'] = $customer->getData('default_shipping');

        $customer->getResource()->getConnection()->update(
            $customer->getResource()->getTable('customer_entity'),
            $changedAddresses,
            $customer->getResource()->getConnection()->quoteInto('entity_id = ?', $customer->getId())
        );
    }
}