Skip to content

Commit 6cb05b7

Browse files
authored
Merge pull request #32 from landofcoder/develop
Develop
2 parents 3f0d899 + 69a83b0 commit 6cb05b7

10 files changed

+378
-16
lines changed

Api/Data/TagProductLinkInterface.php

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<?php
2+
/**
3+
* Copyright © Magento, Inc. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
7+
namespace Lof\ProductTags\Api\Data;
8+
9+
use Magento\Framework\Api\ExtensibleDataInterface;
10+
11+
/**
12+
* @api
13+
* @since 100.0.2
14+
*/
15+
interface TagProductLinkInterface extends ExtensibleDataInterface
16+
{
17+
/**
18+
* @return string|null
19+
*/
20+
public function getSku();
21+
22+
/**
23+
* @param string $sku
24+
* @return $this
25+
*/
26+
public function setSku($sku);
27+
28+
/**
29+
* @return int|null
30+
*/
31+
public function getPosition();
32+
33+
/**
34+
* @param int $position
35+
* @return $this
36+
*/
37+
public function setPosition($position);
38+
39+
/**
40+
* Get tag id
41+
*
42+
* @return string
43+
*/
44+
public function getTagId();
45+
46+
/**
47+
* Set tag id
48+
*
49+
* @param string $tagId
50+
* @return $this
51+
*/
52+
public function setTagId($tagId);
53+
54+
/**
55+
* Retrieve existing extension attributes object.
56+
*
57+
* @return \Lof\ProductTags\Api\Data\TagProductLinkExtensionInterface|null
58+
*/
59+
public function getExtensionAttributes();
60+
61+
/**
62+
* Set an extension attributes object.
63+
*
64+
* @param \Lof\ProductTags\Api\Data\TagProductLinkExtensionInterface $extensionAttributes
65+
* @return $this
66+
*/
67+
public function setExtensionAttributes(
68+
\Lof\ProductTags\Api\Data\TagProductLinkExtensionInterface $extensionAttributes
69+
);
70+
}

Api/ProductsManagementInterface.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ interface ProductsManagementInterface
2727
{
2828

2929
/**
30-
* GET for products api
31-
* @param string[] $param
32-
* @return string[]
30+
* Get List Product by Identyfier
31+
* @param string $tagCode
32+
* @return \Lof\ProductTags\Api\Data\TagProductLinkInterface[]|false
3333
*/
34-
public function getProducts($param);
34+
public function getProducts($tagCode);
3535
}

Api/TagsManagementInterface.php

+9-4
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,18 @@
2323

2424
namespace Lof\ProductTags\Api;
2525

26+
use Magento\Framework\Api\SearchCriteriaInterface;
27+
2628
interface TagsManagementInterface
2729
{
2830

2931
/**
30-
* GET for tags api
31-
* @param string $param
32-
* @return string
32+
* Retrieve Tag matching the specified criteria.
33+
* @param \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
34+
* @return \Lof\ProductTags\Api\Data\TagSearchResultsInterface
35+
* @throws \Magento\Framework\Exception\LocalizedException
3336
*/
34-
public function getTags($param);
37+
public function getTags(
38+
\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
39+
);
3540
}

Model/Data/TagProductLink.php

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
<?php
2+
/**
3+
* Copyright © Magento, Inc. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
7+
namespace Lof\ProductTags\Model\Data;
8+
9+
/**
10+
* @codeCoverageIgnore
11+
*/
12+
class TagProductLink extends \Magento\Framework\Api\AbstractExtensibleObject implements
13+
\Lof\ProductTags\Api\Data\TagProductLinkInterface
14+
{
15+
/**#@+
16+
* Constant for confirmation status
17+
*/
18+
const KEY_SKU = 'sku';
19+
const KEY_POSITION = 'position';
20+
const KEY_TAG_ID = 'tag_id';
21+
/**#@-*/
22+
23+
/**
24+
* {@inheritdoc}
25+
*/
26+
public function getSku()
27+
{
28+
return $this->_get(self::KEY_SKU);
29+
}
30+
31+
/**
32+
* {@inheritdoc}
33+
*/
34+
public function getPosition()
35+
{
36+
return $this->_get(self::KEY_POSITION);
37+
}
38+
39+
/**
40+
* {@inheritdoc}
41+
*/
42+
public function getTagId()
43+
{
44+
return $this->_get(self::KEY_TAG_ID);
45+
}
46+
47+
/**
48+
* @param string $sku
49+
* @return $this
50+
*/
51+
public function setSku($sku)
52+
{
53+
return $this->setData(self::KEY_SKU, $sku);
54+
}
55+
56+
/**
57+
* @param int $position
58+
* @return $this
59+
*/
60+
public function setPosition($position)
61+
{
62+
return $this->setData(self::KEY_POSITION, $position);
63+
}
64+
65+
/**
66+
* Set category id
67+
*
68+
* @param string $tagId
69+
* @return $this
70+
*/
71+
public function setTagId($tagId)
72+
{
73+
return $this->setData(self::KEY_TAG_ID, $tagId);
74+
}
75+
76+
/**
77+
* {@inheritdoc}
78+
*
79+
* @return \Lof\ProductTags\Api\Data\TagProductLinkExtensionInterface|null
80+
*/
81+
public function getExtensionAttributes()
82+
{
83+
return $this->_getExtensionAttributes();
84+
}
85+
86+
/**
87+
* {@inheritdoc}
88+
*
89+
* @param \Lof\ProductTags\Api\Data\TagProductLinkExtensionInterface $extensionAttributes
90+
* @return $this
91+
*/
92+
public function setExtensionAttributes(
93+
\Lof\ProductTags\Api\Data\TagProductLinkExtensionInterface $extensionAttributes
94+
) {
95+
return $this->_setExtensionAttributes($extensionAttributes);
96+
}
97+
}

Model/ProductsManagement.php

+77-2
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,89 @@
2323

2424
namespace Lof\ProductTags\Model;
2525

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+
2632
class ProductsManagement implements \Lof\ProductTags\Api\ProductsManagementInterface
2733
{
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+
}
2880

2981
/**
3082
* {@inheritdoc}
3183
*/
32-
public function getProducts($param)
84+
public function getProducts($tagCode)
3385
{
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;
35110
}
36111
}

Model/Tag.php

+34
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,27 @@ class Tag extends \Magento\Framework\Model\AbstractModel
2727
protected $tagDataFactory;
2828
protected $dataObjectHelper;
2929
protected $_eventPrefix = 'lof_producttags_tag';
30+
31+
/**
32+
* Product collection factory
33+
*
34+
* @var \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory
35+
*/
36+
protected $_productCollectionFactory;
37+
3038
public function __construct(
3139
\Magento\Framework\Model\Context $context,
3240
\Magento\Framework\Registry $registry,
3341
TagInterfaceFactory $tagDataFactory,
3442
DataObjectHelper $dataObjectHelper,
3543
\Lof\ProductTags\Model\ResourceModel\Tag $resource,
3644
\Lof\ProductTags\Model\ResourceModel\Tag\Collection $resourceCollection,
45+
\Magento\Catalog\Model\ResourceModel\Product\CollectionFactory $productCollectionFactory,
3746
array $data = []
3847
) {
3948
$this->tagDataFactory = $tagDataFactory;
4049
$this->dataObjectHelper = $dataObjectHelper;
50+
$this->_productCollectionFactory = $productCollectionFactory;
4151
parent::__construct($context, $registry, $resource, $resourceCollection, $data);
4252
}
4353

@@ -92,5 +102,29 @@ public function loadByIdentifier($tag_code){
92102
public function getRelatedReadonly(){
93103
return true;
94104
}
105+
106+
/**
107+
* Get category products collection
108+
*
109+
* @return \Magento\Framework\Data\Collection\AbstractDb|false
110+
*/
111+
public function getProductCollection()
112+
{
113+
if($tag_id = $this->getId()){
114+
$collection = $this->_productCollectionFactory->create()->setStoreId(
115+
$this->getStoreId()
116+
);
117+
$tag_product = $this->getResource()->getTable("lof_producttags_product");
118+
$collection->getSelect()
119+
->join(array('tag_product' =>$tag_product), 'entity_id= tag_product.product_id',
120+
array('position' => 'tag_product.position',
121+
'tag_id' => 'tag_product.tag_id'
122+
)
123+
);
124+
$collection->getSelect()->where("tag_product.tag_id=".(int)$tag_id);
125+
return $collection;
126+
}
127+
return false;
128+
}
95129

96130
}

Model/TagRepository.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function __construct(
9797
*/
9898
public function save($tagData){
9999

100-
if (empty($tagData->getStoreId())) {
100+
if (empty($tagData->getStoreId())) {
101101
$storeId = $this->storeManager->getStore()->getId();
102102
$tagData->setStoreId($storeId);
103103
}

0 commit comments

Comments
 (0)