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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Shipping data helper
*/
namespace Magento\Shipping\Helper;
use Magento\Framework\App\ObjectManager;
use Magento\Framework\UrlInterface;
use Magento\Store\Model\StoreManagerInterface;
class Data extends \Magento\Framework\App\Helper\AbstractHelper
{
/**
* Allowed hash keys
*
* @var array
*/
protected $_allowedHashKeys = ['ship_id', 'order_id', 'track_id'];
/**
* @var StoreManagerInterface
*/
protected $_storeManager;
/**
* @var UrlInterface|null
*/
private $url;
/**
* @param \Magento\Framework\App\Helper\Context $context
* @param StoreManagerInterface $storeManager
* @param UrlInterface|null $url
*/
public function __construct(
\Magento\Framework\App\Helper\Context $context,
StoreManagerInterface $storeManager,
UrlInterface $url = null
) {
$this->_storeManager = $storeManager;
$this->url = $url ?: ObjectManager::getInstance()->get(UrlInterface::class);
parent::__construct($context);
}
/**
* Decode url hash
*
* @param string $hash
* @return array
*/
public function decodeTrackingHash($hash)
{
$hash = explode(':', $this->urlDecoder->decode($hash));
if (count($hash) === 3 && in_array($hash[0], $this->_allowedHashKeys)) {
return ['key' => $hash[0], 'id' => (int)$hash[1], 'hash' => $hash[2]];
}
return [];
}
/**
* Retrieve tracking url with params
*
* @param string $key
* @param \Magento\Sales\Model\Order
* |\Magento\Sales\Model\Order\Shipment|\Magento\Sales\Model\Order\Shipment\Track $model
* @param string $method Optional - method of a model to get id
* @return string
*/
protected function _getTrackingUrl($key, $model, $method = 'getId')
{
$urlPart = "{$key}:{$model->{$method}()}:{$model->getProtectCode()}";
$params = [
'_scope' => $model->getStoreId(),
'_nosid' => true,
'_direct' => 'shipping/tracking/popup',
'_query' => ['hash' => $this->urlEncoder->encode($urlPart)]
];
return $this->url->getUrl('', $params);
}
/**
* Shipping tracking popup URL getter
*
* @param \Magento\Sales\Model\AbstractModel $model
* @return string
*/
public function getTrackingPopupUrlBySalesModel($model)
{
if ($model instanceof \Magento\Sales\Model\Order) {
return $this->_getTrackingUrl('order_id', $model);
} elseif ($model instanceof \Magento\Sales\Model\Order\Shipment) {
return $this->_getTrackingUrl('ship_id', $model);
} elseif ($model instanceof \Magento\Sales\Model\Order\Shipment\Track) {
return $this->_getTrackingUrl('track_id', $model, 'getEntityId');
}
return '';
}
}