|
23 | 23 |
|
24 | 24 | namespace Lof\ProductTags\Model;
|
25 | 25 |
|
| 26 | +use Lof\ProductTags\Api\TagsManagementInterface; |
| 27 | +use Lof\ProductTags\Api\Data\TagSearchResultsInterfaceFactory; |
| 28 | +use Lof\ProductTags\Api\Data\TagInterfaceFactory; |
| 29 | +use Lof\ProductTags\Model\ResourceModel\Tag as ResourceTag; |
| 30 | +use Lof\ProductTags\Model\ResourceModel\Tag\CollectionFactory as TagCollectionFactory; |
| 31 | + |
26 | 32 | class ProductsManagement implements \Lof\ProductTags\Api\ProductsManagementInterface
|
27 | 33 | {
|
| 34 | + protected $resource; |
| 35 | + |
| 36 | + protected $tagFactory; |
| 37 | + |
| 38 | + protected $tagCollectionFactory; |
| 39 | + |
| 40 | + protected $searchResultsFactory; |
| 41 | + |
| 42 | + protected $dataTagFactory; |
| 43 | + |
| 44 | + /** |
| 45 | + * @var \Lof\ProductTags\Api\Data\TagProductLinkInterfaceFactory |
| 46 | + */ |
| 47 | + protected $productLinkFactory; |
| 48 | + |
| 49 | + /** |
| 50 | + * @param ResourceTag $resource |
| 51 | + * @param TagFactory $tagFactory |
| 52 | + * @param TagInterfaceFactory $dataTagFactory |
| 53 | + * @param TagCollectionFactory $tagCollectionFactory |
| 54 | + * @param \Lof\ProductTags\Model\TagFactory $tagModelFactory |
| 55 | + * @param TagSearchResultsInterfaceFactory $searchResultsFactory |
| 56 | + * @param \Lof\ProductTags\Api\Data\TagProductLinkInterfaceFactory $productLinkFactory |
| 57 | + */ |
| 58 | + |
| 59 | + public function __construct( |
| 60 | + ResourceTag $resource, |
| 61 | + TagFactory $tagFactory, |
| 62 | + TagInterfaceFactory $dataTagFactory, |
| 63 | + TagCollectionFactory $tagCollectionFactory, |
| 64 | + \Lof\ProductTags\Model\TagFactory $tagModelFactory, |
| 65 | + TagSearchResultsInterfaceFactory $searchResultsFactory, |
| 66 | + \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory $productCollectionFactory, |
| 67 | + \Magento\Catalog\Model\Product\Visibility $catalogProductVisibility, |
| 68 | + \Lof\ProductTags\Api\Data\TagProductLinkInterfaceFactory $productLinkFactory |
| 69 | + ) { |
| 70 | + $this->resource = $resource; |
| 71 | + $this->tagFactory = $tagFactory; |
| 72 | + $this->_productCollectionFactory = $productCollectionFactory; |
| 73 | + $this->_catalogProductVisibility = $catalogProductVisibility; |
| 74 | + $this->tagCollectionFactory = $tagCollectionFactory; |
| 75 | + $this->searchResultsFactory = $searchResultsFactory; |
| 76 | + $this->dataTagFactory = $dataTagFactory; |
| 77 | + $this->_tagModelFactory = $tagModelFactory; |
| 78 | + $this->productLinkFactory = $productLinkFactory; |
| 79 | + } |
28 | 80 |
|
29 | 81 | /**
|
30 | 82 | * {@inheritdoc}
|
31 | 83 | */
|
32 |
| - public function getProducts($param) |
| 84 | + public function getProducts($tagCode) |
33 | 85 | {
|
34 |
| - return 'hello api GET return the $param ' . $param; |
| 86 | + $tagModel = $this->_tagModelFactory->create(); |
| 87 | + $tagModel->loadByIdentifier($tagCode); |
| 88 | + if (!$tagModel->getId()) { |
| 89 | + return []; |
| 90 | + } |
| 91 | + /** @var \Magento\Catalog\Model\ResourceModel\Product\Collection $products */ |
| 92 | + $products = $tagModel->getProductCollection(); |
| 93 | + /** @var \Lof\ProductTags\Api\Data\TagProductLinkInterface[] $links */ |
| 94 | + $links = []; |
| 95 | + if($products){ |
| 96 | + /** @var \Magento\Catalog\Model\Product $product */ |
| 97 | + foreach ($products->getItems() as $product) { |
| 98 | + /** @var \Lof\ProductTags\Api\Data\TagProductLinkInterface $link */ |
| 99 | + $link = $this->productLinkFactory->create(); |
| 100 | + $link->setSku($product->getSku()) |
| 101 | + ->setPosition($product->getData('tag_index_position')) |
| 102 | + ->setTagId($tagModel->getId()); |
| 103 | + $links[] = $link; |
| 104 | + } |
| 105 | + } |
| 106 | + if($links){ |
| 107 | + return $links; |
| 108 | + } |
| 109 | + return false; |
35 | 110 | }
|
36 | 111 | }
|
0 commit comments