1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\QuoteGraphQl\Model\Cart;
- use Magento\Customer\Api\AddressRepositoryInterface;
- use Magento\Customer\Api\Data\AddressInterface;
- use Magento\Framework\Exception\LocalizedException;
- use Magento\Framework\Exception\NoSuchEntityException;
- use Magento\Framework\GraphQl\Exception\GraphQlAuthorizationException;
- use Magento\Framework\GraphQl\Exception\GraphQlNoSuchEntityException;
- /**
- * Get customer address. Throws exception if customer is not owner of address
- */
- class GetCustomerAddress
- {
- /**
- * @var AddressRepositoryInterface
- */
- private $addressRepository;
- /**
- * @param AddressRepositoryInterface $addressRepository
- */
- public function __construct(AddressRepositoryInterface $addressRepository)
- {
- $this->addressRepository = $addressRepository;
- }
- /**
- * Get customer address. Throws exception if customer is not owner of address
- *
- * @param int $addressId
- * @param int $customerId
- * @return AddressInterface
- * @throws GraphQlAuthorizationException
- * @throws GraphQlNoSuchEntityException
- * @throws LocalizedException
- */
- public function execute(int $addressId, int $customerId): AddressInterface
- {
- try {
- $customerAddress = $this->addressRepository->getById($addressId);
- } catch (NoSuchEntityException $e) {
- throw new GraphQlNoSuchEntityException(
- __('Could not find a address with ID "%address_id"', ['address_id' => $addressId])
- );
- }
- if ((int)$customerAddress->getCustomerId() !== $customerId) {
- throw new GraphQlAuthorizationException(
- __(
- 'The current user cannot use address with ID "%address_id"',
- ['address_id' => $addressId]
- )
- );
- }
- return $customerAddress;
- }
- }
|