1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Mageprince\Faq\Model\Resolver; |
4
|
|
|
|
5
|
|
|
use Magento\Framework\Data\Collection as AbstractDbCollection; |
|
|
|
|
6
|
|
|
use Magento\Framework\GraphQl\Config\Element\Field; |
|
|
|
|
7
|
|
|
use Magento\Framework\GraphQl\Exception\GraphQlInputException; |
|
|
|
|
8
|
|
|
use Magento\Framework\GraphQl\Query\ResolverInterface; |
|
|
|
|
9
|
|
|
use Magento\Framework\GraphQl\Schema\Type\ResolveInfo; |
|
|
|
|
10
|
|
|
use Magento\Framework\UrlInterface; |
|
|
|
|
11
|
|
|
use Magento\Store\Model\StoreManagerInterface; |
|
|
|
|
12
|
|
|
use Mageprince\Faq\Model\Config\DefaultConfig; |
13
|
|
|
use Mageprince\Faq\Model\ResourceModel\FaqGroup\CollectionFactory as FaqGroupCollectionFactory; |
|
|
|
|
14
|
|
|
|
15
|
|
|
class FaqGroup implements ResolverInterface |
16
|
|
|
{ |
17
|
|
|
/** |
18
|
|
|
* @var FaqGroupCollectionFactory |
19
|
|
|
*/ |
20
|
|
|
protected $faqGroupCollectionFactory; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* @var StoreManagerInterface |
24
|
|
|
*/ |
25
|
|
|
protected $storeManager; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* FaqGroup constructor. |
29
|
|
|
* @param FaqGroupCollectionFactory $faqGroupCollectionFactory |
30
|
|
|
* @param StoreManagerInterface $storeManager |
31
|
|
|
*/ |
32
|
|
|
public function __construct( |
33
|
|
|
FaqGroupCollectionFactory $faqGroupCollectionFactory, |
34
|
|
|
StoreManagerInterface $storeManager |
35
|
|
|
) { |
36
|
|
|
$this->faqGroupCollectionFactory = $faqGroupCollectionFactory; |
37
|
|
|
$this->storeManager = $storeManager; |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* @inheritdoc |
42
|
|
|
*/ |
43
|
|
|
public function resolve( |
44
|
|
|
Field $field, |
45
|
|
|
$context, |
46
|
|
|
ResolveInfo $info, |
47
|
|
|
array $value = null, |
48
|
|
|
array $args = null |
49
|
|
|
) { |
50
|
|
|
if (isset($args['pageSize']) && $args['pageSize'] < 1) { |
51
|
|
|
throw new GraphQlInputException(__('pageSize value must be greater than 0.')); |
|
|
|
|
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
if (isset($args['currentPage']) && $args['currentPage'] < 1) { |
55
|
|
|
throw new GraphQlInputException(__('currentPage value must be greater than 0.')); |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
/** @var \Mageprince\Faq\Model\ResourceModel\FaqGroup\Collection $faqGroupCollection */ |
59
|
|
|
$faqGroupCollection = $this->faqGroupCollectionFactory->create(); |
60
|
|
|
$faqGroupCollection->addFieldToFilter('status', 1); |
61
|
|
|
$faqGroupCollection->setOrder('sortorder', AbstractDbCollection::SORT_ORDER_ASC); |
62
|
|
|
|
63
|
|
|
if (isset($args['pageSize'])) { |
64
|
|
|
$faqGroupCollection->setPageSize($args['pageSize']); |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
if (isset($args['currentPage'])) { |
68
|
|
|
$faqGroupCollection->setCurPage($args['currentPage']); |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
$groups = $faqGroupCollection->getData(); |
72
|
|
|
foreach ($groups as $key => $group) { |
73
|
|
|
if ($icon = $group['icon']) { |
74
|
|
|
$groups[$key]['icon'] = $this->getGroupIcon($icon); |
75
|
|
|
} |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
return $groups; |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
/** |
82
|
|
|
* Retrieve group icon url |
83
|
|
|
* |
84
|
|
|
* @param string $icon |
85
|
|
|
* @return string |
86
|
|
|
* @throws \Magento\Framework\Exception\NoSuchEntityException |
87
|
|
|
*/ |
88
|
|
|
public function getGroupIcon($icon) |
89
|
|
|
{ |
90
|
|
|
$mediaUrl = $this->storeManager |
91
|
|
|
->getStore() |
92
|
|
|
->getBaseUrl(UrlInterface::URL_TYPE_MEDIA); |
93
|
|
|
return $mediaUrl . DefaultConfig::ICON_TMP_PATH . $icon; |
94
|
|
|
} |
95
|
|
|
} |
96
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths