-
Notifications
You must be signed in to change notification settings - Fork 9.3k
/
Copy pathDeleteCustomerAddress.php
69 lines (61 loc) · 2.11 KB
/
DeleteCustomerAddress.php
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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\CustomerGraphQl\Model\Resolver;
use Magento\CustomerGraphQl\Model\Customer\Address\DeleteCustomerAddress as DeleteCustomerAddressModel;
use Magento\CustomerGraphQl\Model\Customer\Address\GetCustomerAddress;
use Magento\Framework\GraphQl\Exception\GraphQlAuthorizationException;
use Magento\Framework\GraphQl\Exception\GraphQlInputException;
use Magento\Framework\GraphQl\Schema\Type\ResolveInfo;
use Magento\Framework\GraphQl\Config\Element\Field;
use Magento\Framework\GraphQl\Query\ResolverInterface;
use Magento\GraphQl\Model\Query\ContextInterface;
/**
* Customers address delete, used for GraphQL request processing.
*/
class DeleteCustomerAddress implements ResolverInterface
{
/**
* @var GetCustomerAddress
*/
private $getCustomerAddress;
/**
* @var DeleteCustomerAddressModel
*/
private $deleteCustomerAddress;
/**
* @param GetCustomerAddress $getCustomerAddress
* @param DeleteCustomerAddressModel $deleteCustomerAddress
*/
public function __construct(
GetCustomerAddress $getCustomerAddress,
DeleteCustomerAddressModel $deleteCustomerAddress
) {
$this->getCustomerAddress = $getCustomerAddress;
$this->deleteCustomerAddress = $deleteCustomerAddress;
}
/**
* @inheritdoc
*/
public function resolve(
Field $field,
$context,
ResolveInfo $info,
array $value = null,
array $args = null
) {
/** @var ContextInterface $context */
if (false === $context->getExtensionAttributes()->getIsCustomer()) {
throw new GraphQlAuthorizationException(__('The current customer isn\'t authorized.'));
}
if (empty($args['id'])) {
throw new GraphQlInputException(__('Address "id" value should be specified'));
}
$address = $this->getCustomerAddress->execute((int)$args['id'], $context->getUserId());
$this->deleteCustomerAddress->execute($address);
return true;
}
}