| Current Path : /home/rtorresani/www/vendor/magento/module-customer/Model/Address/Validator/ |
| Current File : //home/rtorresani/www/vendor/magento/module-customer/Model/Address/Validator/Customer.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Customer\Model\Address\Validator;
use Magento\Customer\Model\Address\AbstractAddress;
use Magento\Customer\Model\Address\ValidatorInterface;
use Magento\Customer\Model\AddressFactory;
use Magento\Quote\Api\Data\AddressInterface as QuoteAddressInterface;
/**
* Validates that current Address is related to given Customer.
*/
class Customer implements ValidatorInterface
{
/**
* @var AddressFactory
*/
private $addressFactory;
/**
* @param AddressFactory $addressFactory
*/
public function __construct(AddressFactory $addressFactory)
{
$this->addressFactory = $addressFactory;
}
/**
* @inheritDoc
*/
public function validate(AbstractAddress $address): array
{
$errors = [];
$addressId = $address instanceof QuoteAddressInterface ? $address->getCustomerAddressId() : $address->getId();
if ($addressId !== null) {
$addressCustomerId = (int) $address->getCustomerId();
$originalAddressCustomerId = (int) $this->addressFactory->create()
->load($addressId)
->getCustomerId();
if ($originalAddressCustomerId !== 0 && $originalAddressCustomerId !== $addressCustomerId) {
$errors[] = __(
'Provided customer ID "%customer_id" isn\'t related to current customer address.',
['customer_id' => $addressCustomerId]
);
}
}
return $errors;
}
}