forked from chirag-d-wagento/magento2-productdesignr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRouter.php
54 lines (41 loc) · 1.65 KB
/
Router.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace Develodesign\Designer\Controller;
class Router implements \Magento\Framework\App\RouterInterface {
protected $_designerHelper;
protected $actionFactory;
protected $_modelProduct;
public function __construct(
\Develodesign\Designer\Helper\Data $designerHelper,
\Magento\Framework\App\ActionFactory $actionFactory,
\Magento\Catalog\Model\Product $modelProduct
) {
$this->actionFactory = $actionFactory;
$this->_designerHelper = $designerHelper;
$this->_modelProduct = $modelProduct;
}
public function match(\Magento\Framework\App\RequestInterface $request) {
if (!$this->_designerHelper->getIsDesignerEnabled()) {
return;
}
$identifier = trim($request->getPathInfo(), '/');
if ($identifier == '' || !$identifier) {
return;
}
$pid = $request->getParam(\Develodesign\Designer\Helper\Url::PRODUCT_ID_VAR_NAME);
if (!$pid) {
return;
}
$_product = $this->_modelProduct->load($pid);
//validate product
if (!$_product->getId() || !$this->_designerHelper->getIsActiveOnProductView($_product)) {
return;
}
$request
->setModuleName('dd_designer')
->setControllerName('index')
->setActionName('view')
->setParam(\Develodesign\Designer\Helper\Url::PRODUCT_ID_VAR_NAME, $pid);
$request->setAlias(\Magento\Framework\Url::REWRITE_REQUEST_PATH_ALIAS, $identifier);
return $this->actionFactory->create('Magento\Framework\App\Action\Forward');
}
}