| Current Path : /home/rtorresani/www/vendor/magento/module-customer/Model/Address/ |
| Current File : //home/rtorresani/www/vendor/magento/module-customer/Model/Address/CustomerAddressDataProvider.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Customer\Model\Address;
use Magento\Customer\Model\Config\Share;
use Magento\Directory\Model\AllowedCountries;
use Magento\Framework\App\ObjectManager;
/**
* Provides customer address data.
*/
class CustomerAddressDataProvider
{
/**
* Customer addresses.
*
* @var array
*/
private $customerAddresses = [];
/**
* @var CustomerAddressDataFormatter
*/
private $customerAddressDataFormatter;
/**
* @var \Magento\Customer\Model\Config\Share
*/
private $shareConfig;
/**
* @var AllowedCountries
*/
private $allowedCountryReader;
/**
* @param CustomerAddressDataFormatter $customerAddressDataFormatter
* @param Share|null $share
* @param AllowedCountries|null $allowedCountryReader
*/
public function __construct(
CustomerAddressDataFormatter $customerAddressDataFormatter,
?Share $share = null,
?AllowedCountries $allowedCountryReader = null
) {
$this->customerAddressDataFormatter = $customerAddressDataFormatter;
$this->shareConfig = $share ?: ObjectManager::getInstance()
->get(Share::class);
$this->allowedCountryReader = $allowedCountryReader ?: ObjectManager::getInstance()
->get(AllowedCountries::class);
}
/**
* Get addresses for customer.
*
* @param \Magento\Customer\Api\Data\CustomerInterface $customer
* @return array
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function getAddressDataByCustomer(
\Magento\Customer\Api\Data\CustomerInterface $customer
): array {
if (!empty($this->customerAddresses)) {
return $this->customerAddresses;
}
$customerOriginAddresses = $customer->getAddresses();
if (!$customerOriginAddresses) {
return [];
}
$allowedCountries = $this->allowedCountryReader->getAllowedCountries();
$customerAddresses = [];
foreach ($customerOriginAddresses as $address) {
// Checks if a country id present in the allowed countries list.
if ($this->shareConfig->isGlobalScope() && !in_array($address->getCountryId(), $allowedCountries)) {
continue;
}
$customerAddresses[$address->getId()] = $this->customerAddressDataFormatter->prepareAddress($address);
}
$this->customerAddresses = $customerAddresses;
return $this->customerAddresses;
}
}