File: /home/petsclubcc/magento/vendor/magento/module-customer/Model/ResourceModel/Address/Relation.php
<?php
/**
* Customer address entity resource model
*
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Customer\Model\ResourceModel\Address;
use Magento\Framework\Model\ResourceModel\Db\VersionControl\RelationInterface;
/**
* Class represents save operations for customer address relations
*/
class Relation implements RelationInterface
{
/**
* @var \Magento\Customer\Model\CustomerFactory
*/
protected $customerFactory;
/**
* @param \Magento\Customer\Model\CustomerFactory $customerFactory
*/
public function __construct(\Magento\Customer\Model\CustomerFactory $customerFactory)
{
$this->customerFactory = $customerFactory;
}
/**
* Process object relations
*
* @param \Magento\Framework\Model\AbstractModel $object
* @return void
*/
public function processRelation(\Magento\Framework\Model\AbstractModel $object)
{
/**
* @var $object \Magento\Customer\Model\Address
*/
if (!$object->getIsCustomerSaveTransaction() && $this->isAddressDefault($object)) {
$customer = $this->customerFactory->create()->load($object->getCustomerId());
$changedAddresses = [];
if ($object->getIsDefaultBilling()) {
$changedAddresses['default_billing'] = $object->getId();
}
if ($object->getIsDefaultShipping()) {
$changedAddresses['default_shipping'] = $object->getId();
}
if ($changedAddresses) {
$customer->getResource()->getConnection()->update(
$customer->getResource()->getTable('customer_entity'),
$changedAddresses,
$customer->getResource()->getConnection()->quoteInto('entity_id = ?', $customer->getId())
);
}
}
}
/**
* Checks if address has chosen as default and has had an id
*
* @param \Magento\Framework\Model\AbstractModel $object
* @return bool
*/
protected function isAddressDefault(\Magento\Framework\Model\AbstractModel $object)
{
return $object->getId() && ($object->getIsDefaultBilling() || $object->getIsDefaultShipping());
}
}