-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix customer group extension attributes for lists #53
base: 2.4-develop
Are you sure you want to change the base?
Fix customer group extension attributes for lists #53
Conversation
This plugin always created a new extension object, regardless of if one already exists. So it overwrote other extension attributes. This change checks if an extension object already exists.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @avstudnitz,
Your changes look good to me.
Do you feel it's realistic to cover this case with some unit test?
@@ -64,7 +64,10 @@ public function afterGetList( | |||
$customerGroupId = (int)$customerGroup->getId(); | |||
if (array_key_exists($customerGroupId, $allExcludedWebsites)) { | |||
$excludedWebsites = $allExcludedWebsites[$customerGroupId]; | |||
$customerGroupExtensionAttributes = $this->groupExtensionInterfaceFactory->create(); | |||
$customerGroupExtensionAttributes = $customerGroup->getExtensionAttributes(); | |||
if ($customerGroupExtensionAttributes === null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getExtensionAttributes
comment block contain information that function could return null
, but in fact it never be null
, see https://github.com/mage-os/mageos-magento2/blob/2.4-develop/lib/internal/Magento/Framework/Api/AbstractExtensibleObject.php#L169-L171
I believe that object creation could be removed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Den4ik Good catch!
Having that in mind, I would replace this if block to following:
if (array_key_exists($customerGroupId, $allExcludedWebsites)) {
$excludedWebsites = $allExcludedWebsites[$customerGroupId];
// extension attributes are always there
/** @var GroupExtensionInterface $customerGroupExtensionAttributes */
$customerGroupExtensionAttributes = $customerGroup->getExtensionAttributes();
$customerGroupExtensionAttributes->setExcludeWebsiteIds($excludedWebsites);
}
Also, it would be great to fix the return type in \Magento\Customer\Api\Data\GroupInterface::getExtensionAttributes
and \Magento\Customer\Model\Data\Group::getExtensionAttributes
, but I'm not sure if we can do that as a part of mage-os.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Additional idea - since the interface declares it can be null, there might be a case when the custom extension can override the value to null for some reason, and this code will start failing, so maybe having this fallback to object creation might be not that bad thing.
So now I prefer keeping the original fix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ihor-sviziev I'm totally agree that interface method declaration should be fixed as weel. Good point for Magento Core PR, but it's backward incompatible changes that will produce long acceptance process by the Core Team.
Additional idea - since the interface declares it can be null, there might be a case when the custom extension can override the value to null for some reason, and this code will start failing, so maybe having this fallback to object creation might be not that bad thing.
I have seen many modules but don't faced with situation where it replace extension attributes to null. So I think we can stay with $customerGroupExtensionAttributes = $customerGroup->getExtensionAttributes();
Description
The plugin
\Magento\Customer\Model\Plugin\GetListCustomerGroupExcludedWebsite
always created a new extension object for customer group lists, regardless of if one already exists. So it overwrote other extension attributes. This change checks if an extension object already exists.Manual testing scenarios (*)
Create your own module, introducing another extension attribute for the customer group entity. In this example, an extension attribute named "discount_percentage" is used.
etc/db_schema.xml:
etc/extension_attributes.xml:
etc/di.xml:
Plugin/ExtensionAttributeJoinProcessorPlugin.php:
Without this PR, the customer group list doesn't contain the extension attribute discount_percentage.
Contribution checklist