forked from webburza/sylius-google-ecommerce-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClient.php
285 lines (247 loc) · 7.55 KB
/
Client.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
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<?php
namespace Webburza\Sylius\GoogleEcommerceBundle;
use Sylius\Component\Core\Model\Order as SyliusOrder;
use Sylius\Component\Core\Model\Product as SyliusProduct;
use Webburza\Sylius\GoogleEcommerceBundle\Model\Product;
use Webburza\Sylius\GoogleEcommerceBundle\Model\Transaction;
/**
* Class Client.
*/
class Client
{
/** @var string */
private $key;
/** @var Product[] */
private $impressions = [];
/** @var Product[] */
private $products = [];
/** @var string */
private $action;
/** @var array */
private $actionOptions = [];
/** @var string */
private $currency;
/**
* @param string $key
*/
public function __construct($key)
{
$this->key = $key;
}
/**
* @param SyliusOrder $order
* @param array $options
*
* @return $this
*/
public function addCheckoutAction(SyliusOrder $order, array $options = null)
{
$this->addProductsFromOrder($order);
$this->action = 'checkout';
$this->actionOptions = $options;
return $this;
}
/**
* @param SyliusOrder $order
*
* @return $this
*/
public function addPurchaseAction(SyliusOrder $order)
{
$this->addProductsFromOrder($order);
$this->action = 'purchase';
$this->actionOptions = Transaction::createFromOrder($order);
$this->currency = $order->getCurrency();
return $this;
}
/**
* @param SyliusProduct $product
*
* @return Client
*/
public function addDetailsImpression(SyliusProduct $product)
{
$this->addProduct($product);
$this->action = 'detail';
return $this;
}
/**
* @param SyliusProduct $product
* @param array $options
*
* @return $this
*/
public function addImpression(SyliusProduct $product, array $options = null)
{
$this->impressions[] = Product::createFromProduct($product, $options);
return $this;
}
/**
* @return string
*/
public function render()
{
$render = sprintf(
'
<script>
(function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,"script","//www.google-analytics.com/analytics.js", "ga");
ga("create", "%1$s", "auto");
ga("require", "ec");',
$this->key
);
$blocks = array_filter(
array_merge(
$this->renderBlock($this->impressions, 'Impression'),
$this->renderBlock($this->products, 'Product'),
$this->renderAction($this->action, $this->actionOptions),
$this->renderVariable($this->currency, '&cu')
)
);
foreach ($blocks as $block) {
$render .= sprintf(
'
%1$s',
$block
);
}
$render .= '
ga("send", "pageview");
function wbGoogleEcommerceClick(a){
var p = JSON.parse(a.dataset.geec);
ga("ec:addProduct", p);
ga("ec:setAction", "click", {list: p.list});
ga("send", "event", "UX", "click", "Results", {hitCallback: function() {document.location = a.href}});
return false;
}
function wbGoogleEcommerceCart(a,el,f){
if (!(el&&window.ga&&ga.loaded)) return true;
var c, p = JSON.parse(el.dataset.geec);
if (f && typeof f === "function") p = f(p);
ga("ec:addProduct", p);
ga("ec:setAction", a);
switch (el.nodeName.toLowerCase()) {
case "a": c = function() {document.location = el.href}; break;
case "form": c = function() {el.submit()}; break;
default: throw Error("Unsupported GEEC invocation");
}
ga("send", "event", "UX", "click", a, {hitCallback: c});
return false;
}
</script>
';
return $render;
}
/**
* @param SyliusProduct $product
* @param array $options
*
* @return string
*/
public function renderClickHandler(SyliusProduct $product, array $options = null)
{
$payload = htmlentities(json_encode(Product::createFromProduct($product, $options)));
return sprintf(' data-geec="%1$s" onclick="wbGoogleEcommerceClick(this); return !ga.loaded;"', $payload);
}
/**
* @param SyliusProduct $product
* @param array $options
*
* @return string
*/
public function renderCartHandler(SyliusProduct $product, array $options = null)
{
$options = array_merge(
[
'action' => 'add',
'event' => 'submit',
'callable' => 'null',
],
(array) $options
);
$payload = htmlentities(json_encode(Product::createFromProduct($product, $options)));
return sprintf(
' data-geec="%1$s" on%2$s="return wbGoogleEcommerceCart(\'%3$s\', this, %4$s);"',
$payload,
$options['event'],
$options['action'],
$options['callable']
);
}
/**
* @param array $collection
* @param string $type
*
* @return array
*/
private function renderBlock(array $collection, $type)
{
if (0 === count($collection)) {
return [];
}
$blocks = [];
foreach ($collection as $item) {
$blocks[] = sprintf('ga("ec:add%1$s", %2$s);', $type, json_encode($item));
}
return $blocks;
}
/**
* @param string $action
* @param array|\JsonSerializable $options
*
* @return array
*/
private function renderAction($action, $options = null)
{
if (null === $action) {
return [];
}
return [sprintf('ga("ec:setAction", %1$s, %2$s);', json_encode($action), json_encode($options))];
}
/**
* @param mixed $value
* @param string $name
*
* @return array
*/
private function renderVariable($value, $name)
{
if (null === $value) {
return [];
}
return [sprintf('ga("set", %1$s, %2$s);', json_encode($name), json_encode($value))];
}
/**
* @param SyliusProduct $product
* @param array $options
*
* @return $this
*/
private function addProduct(SyliusProduct $product, array $options = null)
{
$this->products[] = Product::createFromProduct($product, $options);
return $this;
}
/**
* @param SyliusOrder $order
*/
private function addProductsFromOrder(SyliusOrder $order)
{
/** @var \Sylius\Component\Core\Model\OrderItem $item */
foreach ($order->getItems() as $item) {
/** @var \Sylius\Component\Core\Model\ProductVariant $variant */
$variant = $item->getVariant();
/** @var \Sylius\Component\Core\Model\Product $product */
$product = $variant->getProduct();
$this->addProduct(
$product,
[
'variant' => $variant->__toString(),
'quantity' => $item->getQuantity(),
]
);
}
}
}