linkRepository = $linkRepository; } /** * @param object $entity * @param array $arguments * @return \Magento\Catalog\Api\Data\ProductInterface|object * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function execute($entity, $arguments = []) { /** @var $entity \Magento\Catalog\Api\Data\ProductInterface */ if ($entity->getTypeId() != Type::TYPE_DOWNLOADABLE) { return $entity; } /** @var \Magento\Downloadable\Api\Data\LinkInterface[] $links */ $links = $entity->getExtensionAttributes()->getDownloadableProductLinks() ?: []; $updatedLinks = []; $oldLinks = $this->linkRepository->getList($entity->getSku()); foreach ($links as $link) { if ($link->getId()) { $updatedLinks[$link->getId()] = true; } $this->linkRepository->save($entity->getSku(), $link, !(bool)$entity->getStoreId()); } /** @var \Magento\Catalog\Api\Data\ProductInterface $entity */ foreach ($oldLinks as $link) { if (!isset($updatedLinks[$link->getId()])) { $this->linkRepository->delete($link->getId()); } } return $entity; } }