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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\ProductAlert\Block\Email;
use Magento\Framework\Pricing\PriceCurrencyInterface;
use Magento\Framework\App\ObjectManager;
use Magento\ProductAlert\Block\Product\ImageProvider;
/**
* Product Alert Abstract Email Block
*/
abstract class AbstractEmail extends \Magento\Framework\View\Element\Template
{
/**
* Product collection array
*
* @var \Magento\Catalog\Model\Product[]
*/
protected $_products = [];
/**
* Current Store scope object
*
* @var \Magento\Store\Model\Store
*/
protected $_store;
/**
* @var \Magento\Framework\Filter\Input\MaliciousCode
*/
protected $_maliciousCode;
/**
* @var PriceCurrencyInterface
*/
protected $priceCurrency;
/**
* @var \Magento\Catalog\Block\Product\ImageBuilder
*/
protected $imageBuilder;
/**
* @var ImageProvider
*/
private $imageProvider;
/**
* @param \Magento\Framework\View\Element\Template\Context $context
* @param \Magento\Framework\Filter\Input\MaliciousCode $maliciousCode
* @param PriceCurrencyInterface $priceCurrency
* @param \Magento\Catalog\Block\Product\ImageBuilder $imageBuilder
* @param array $data
* @param ImageProvider $imageProvider
*/
public function __construct(
\Magento\Framework\View\Element\Template\Context $context,
\Magento\Framework\Filter\Input\MaliciousCode $maliciousCode,
PriceCurrencyInterface $priceCurrency,
\Magento\Catalog\Block\Product\ImageBuilder $imageBuilder,
array $data = [],
ImageProvider $imageProvider = null
) {
$this->imageBuilder = $imageBuilder;
$this->priceCurrency = $priceCurrency;
$this->_maliciousCode = $maliciousCode;
$this->imageProvider = $imageProvider ?: ObjectManager::getInstance()->get(ImageProvider::class);
parent::__construct($context, $data);
}
/**
* Filter malicious code before insert content to email
*
* @param string|array $content
* @return string|array
*/
public function getFilteredContent($content)
{
return $this->_maliciousCode->filter($content);
}
/**
* Set Store scope
*
* @param int|string|\Magento\Store\Model\Website|\Magento\Store\Model\Store $store
* @return $this
*/
public function setStore($store)
{
if ($store instanceof \Magento\Store\Model\Website) {
$store = $store->getDefaultStore();
}
if (!$store instanceof \Magento\Store\Model\Store) {
$store = $this->_storeManager->getStore($store);
}
$this->_store = $store;
return $this;
}
/**
* Retrieve current store object
*
* @return \Magento\Store\Model\Store
*/
public function getStore()
{
if ($this->_store === null) {
$this->_store = $this->_storeManager->getStore();
}
return $this->_store;
}
/**
* Convert price from default currency to current currency
*
* @param float $price
* @param bool $format Format price to currency format
* @param bool $includeContainer Enclose into <span class="price"><span>
* @return float|string
*/
public function formatPrice($price, $format = true, $includeContainer = true)
{
return $format
? $this->priceCurrency->convertAndFormat($price, $includeContainer)
: $this->priceCurrency->convert($price);
}
/**
* Reset product collection
*
* @return void
*/
public function reset()
{
$this->_products = [];
}
/**
* Add product to collection
*
* @param \Magento\Catalog\Model\Product $product
* @return void
*/
public function addProduct(\Magento\Catalog\Model\Product $product)
{
$this->_products[$product->getId()] = $product;
}
/**
* Retrieve product collection array
*
* @return \Magento\Catalog\Model\Product[]
*/
public function getProducts()
{
return $this->_products;
}
/**
* Get store url params
*
* @return array
*/
protected function _getUrlParams()
{
return ['_scope' => $this->getStore(), '_scope_to_url' => true];
}
/**
* @return \Magento\Framework\Pricing\Render
*/
protected function getPriceRender()
{
return $this->_layout->createBlock(
\Magento\Framework\Pricing\Render::class,
'',
['data' => ['price_render_handle' => 'catalog_product_prices']]
);
}
/**
* Return HTML block with tier price
*
* @param \Magento\Catalog\Model\Product $product
* @param string $priceType
* @param string $renderZone
* @param array $arguments
* @return string
*/
public function getProductPriceHtml(
\Magento\Catalog\Model\Product $product,
$priceType,
$renderZone = \Magento\Framework\Pricing\Render::ZONE_ITEM_LIST,
array $arguments = []
) {
if (!isset($arguments['zone'])) {
$arguments['zone'] = $renderZone;
}
/** @var \Magento\Framework\Pricing\Render $priceRender */
$priceRender = $this->getPriceRender();
$price = '';
if ($priceRender) {
$price = $priceRender->render(
$priceType,
$product,
$arguments
);
}
return $price;
}
/**
* Retrieve product image.
*
* @param \Magento\Catalog\Model\Product $product
* @param string $imageId
* @param array $attributes
* @return \Magento\Catalog\Block\Product\Image
*/
public function getImage($product, $imageId, $attributes = [])
{
return $this->imageProvider->getImage($product, $imageId, $attributes);
}
}