-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix merge issues from applying 2.4.7-p3 patch (#111)
- Loading branch information
Showing
6 changed files
with
71 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
app/code/Magento/CustomerGraphQl/Model/Customer/ValidateCustomerData.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\CustomerGraphQl\Model\Customer; | ||
|
||
use Magento\CustomerGraphQl\Api\ValidateCustomerDataInterface; | ||
use Magento\Framework\Exception\LocalizedException; | ||
use Magento\Framework\Exception\NoSuchEntityException; | ||
use Magento\Framework\GraphQl\Exception\GraphQlInputException; | ||
use Magento\Framework\Validator\EmailAddress as EmailAddressValidator; | ||
|
||
/** | ||
* Customer data validation used during customer account creation and updating | ||
*/ | ||
class ValidateCustomerData | ||
{ | ||
/** | ||
* Get allowed/required customer attributes | ||
* | ||
* @var GetAllowedCustomerAttributes | ||
*/ | ||
private $getAllowedCustomerAttributes; | ||
|
||
/** | ||
* @var EmailAddressValidator | ||
*/ | ||
private $emailAddressValidator; | ||
|
||
/** | ||
* @var ValidateCustomerDataInterface[] | ||
*/ | ||
private $validators = []; | ||
|
||
/** | ||
* ValidateCustomerData constructor. | ||
* | ||
* @param GetAllowedCustomerAttributes $getAllowedCustomerAttributes | ||
* @param EmailAddressValidator $emailAddressValidator | ||
* @param array $validators | ||
*/ | ||
public function __construct( | ||
GetAllowedCustomerAttributes $getAllowedCustomerAttributes, | ||
EmailAddressValidator $emailAddressValidator, | ||
$validators = [] | ||
) { | ||
$this->getAllowedCustomerAttributes = $getAllowedCustomerAttributes; | ||
$this->emailAddressValidator = $emailAddressValidator; | ||
$this->validators = $validators; | ||
} | ||
|
||
/** | ||
* Validate customer data | ||
* | ||
* @param array $customerData | ||
* @throws GraphQlInputException | ||
* @throws LocalizedException | ||
* @throws NoSuchEntityException | ||
*/ | ||
public function execute(array $customerData) | ||
{ | ||
/** @var ValidateCustomerDataInterface $validator */ | ||
foreach ($this->validators as $validator) { | ||
$validator->execute($customerData); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters