-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyametrikinsert.php
413 lines (367 loc) · 11.2 KB
/
yametrikinsert.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
<?php
/**
* @package Joomla - Yandex.Metrika insert
* @version 1.1.3
* @author Artem Vasilev - webmasterskaya.xyz
* @copyright Copyright (c) 2018 - 2022 Webmasterskaya. All rights reserved.
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html
* @link https://webmasterskaya.xyz/
*/
use Joomla\CMS\Application\CMSApplication;
use Joomla\CMS\Factory;
use Joomla\CMS\Plugin\CMSPlugin;
defined('_JEXEC') or die;
class PlgSystemYametrikInsert extends CMSPlugin
{
/**
* Load the language file on instantiation.
*
* @var boolean
* @since 1.0.0
*/
protected $autoloadLanguage = true;
/**
* Loads the application object.
*
* @var CMSApplication
*
* @since 1.0.0
*/
protected $app = null;
/**
* Loads the database object.
*
* @var JDatabaseDriver
*
* @since 1.0.0
*/
protected $db = null;
/**
* Is visitor authorized in control panel.
*
* @var boolean
*
* @since 1.0.0
*/
private $_isAuthorizedAdmin = null;
/**
* Is page PageBuilder.
*
* @var boolean
*
* @since 1.0.0
*/
private $_isBuilder = null;
/**
* Constructor.
*
* @param object &$subject
* @param array $config
*
*
* @since 1.0.0
*/
public function __construct(&$subject, $config = array())
{
parent::__construct($subject, $config);
}
/**
* Embed the Yandex.Metrika on page.
* @return bool
*
*
* @since 1.0.0
*/
public function onAfterRender()
{
// Check allowing for embed metrika
if (!$this->allowMetrika())
{
return false;
}
// Prepare array of params.
$yaParams = [
'triggerEvent' => true,
'webvisor' => (bool) $this->params->get('yametrik_webvisor', 0),
'clickmap' => (bool) $this->params->get('yametrik_clickmap', 0),
'trackHash' => (bool) $this->params->get('yametrik_trackHash', 0),
'trackLinks' => (bool) $this->params->get('yametrik_trackLinks', 0),
'defer' => !$this->params->get('yametrik_defer', 0),
'childIframe' => (bool) $this->params->get('yametrik_childIframe', 0),
];
switch ($this->params->get('yametrik_ecommerce', 0))
{
case 1:
$yaParams['ecommerce'] = $this->params->get('yametrik_ecommerce_container', 'dataLayer');
break;
default:
$yaParams['ecommerce'] = false;
}
switch ($this->params->get('yametrik_accurateTrackBounce', 1))
{
case 0:
$yaParams['accurateTrackBounce'] = false;
break;
case 2:
$yaParams['accurateTrackBounce'] = $this->params->get('yametrik_accurateTrackBounce_delay', 15000);
break;
default:
$yaParams['accurateTrackBounce'] = true;
}
// Bypass
if ($this->params->get('yametrik_bypass', 1) == 0)
{
$yaParams['ut'] = 'noindex';
}
else
{
if ($this->params->get('yametrik_bypass_admin', 1) == 1 && $this->params->get('yametrik_admin', 1) == 0 && $this->isAuthorizedAdmin())
{
$yaParams['ut'] = 'noindex';
}
else
{
if ($this->params->get('yametrik_bypass_builder', 1) == 1 && $this->params->get('yametrik_builder', 1) == 0 && $this->params->get('yametrik_bypass_admin', 1) == 0)
{
if ($this->isBuilder())
{
$yaParams['ut'] = 'noindex';
}
}
}
}
// Send client IP
if (!!$this->params->get('yametrik_send_ip', 0))
{
$yaParams['params']['ip'] = $_SERVER['REMOTE_ADDR'];
}
$counter = trim($this->params->get('yametrik_id'));
// Prepare full embed code.
ob_start();
?>
<!-- YaMetrikInsert plugin -->
<script>
<?php if ($this->params->get('yametrik_js') != "") { ?>
document.addEventListener("yacounter<?php echo $counter; ?>inited", function () {
try {
<?php echo $this->params->get('yametrik_js'); ?>
} catch (e) {
console.error(e)
}
});
<?php } ?>
<?php if ($this->params->get('yametrik_delayed') == 1)
{
?>var fired = false;
window.addEventListener('scroll', () => {
if (fired === false) {
fired = true;
setTimeout(() => {
<?php } ;
?>
(function (m, e, t, r, i, k, a) {
m[i] = m[i] || function () {
(m[i].a = m[i].a || []).push(arguments)
};
m[i].l = 1 * new Date();
k = e.createElement(t), a = e.getElementsByTagName(t)[0], k.async = 1, k.src = r, a.parentNode.insertBefore(k, a)
})(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(<?php echo $counter; ?>, "init", <?php echo json_encode($yaParams); ?>);
window.goalSender = function (t, p, b) {
p = typeof p !== 'object' ? {} : p;
b = typeof b !== 'undefined' ? b : undefined;
<?php if($this->params->get('yametrik_goal_ip', 0) && $this->params->get('yametrik_goal_ip', 0)): ?>
p['IP'] = '<?php echo $_SERVER['REMOTE_ADDR']; ?>';
<?php endif; ?>
<?php if($this->params->get('yametrik_goal_url', 0)): ?>
p['URL'] = document.location.href;
<?php endif; ?>
if (typeof ym == 'function') {
window.ym(<?php echo $counter; ?>, "reachGoal", t, p, b)
} else {
window.setTimeout(function () {
window.goalSender(t, p, b);
}, 300);
}
};
window.hitSender = function (u, o) {
u = typeof u !== 'undefined' ? u : location.href;
o = typeof o !== 'undefined' ? o : [];
if (typeof ym == 'function') {
window.ym(<?php echo $counter; ?>, "hit", u, o);
} else {
window.setTimeout(function () {
window.hitSender(u, o);
}, 300);
}
}
<?php if ($this->params->get('yametrik_delayed') == 1)
{
echo "}, " . $this->params->get('yametrik_delayed_sec', 1000) . ")
}
});
";
}
?>
</script>
<noscript>
<div><img src="https://mc.yandex.ru/watch/<?php echo $counter; ?>" style="position:absolute; left:-9999px;"
alt=""/></div>
</noscript>
<!-- /YaMetrikInsert plugin -->
<?php
$metrika = ob_get_clean();
$body = $this->app->getBody();
switch ($this->params->get('yametrik_position', 0))
{
case 1:
// Вставляет код метрики после открывающего тега <body>
$body = preg_replace('/(<body[^<]*>)/is', '$1' . PHP_EOL . $metrika, $body, 1);
break;
default:
// Вставляет код метрики перед закрывающим тегом </body>
$body = str_replace("</body>", $metrika . PHP_EOL . "</body>", $body);
break;
}
$this->app->setBody($body);
return true;
}
/**
* Method for checks allowing to embed metrika
* @return bool
*
*
* @since 1.0.0
*/
protected function allowMetrika()
{
// Do not embed in admin panel.
if ($this->app->isClient('administrator'))
{
return false;
}
// Do not embed in com_ajax.
if ($this->app->input->getCmd('option') == 'com_ajax')
{
return false;
}
// Do not embed if the metrika identifier is not specified.
if (empty($this->params->get('yametrik_id', '')))
{
return false;
}
// Do not embed for admin.
if ($this->params->get('yametrik_admin', 0) && $this->isAuthorizedAdmin())
{
return false;
}
// Do not embed on preview page of page builder (supported YooTheme, SP:PB, JD:PB).
if ($this->params->get('yametrik_builder', 1))
{
if ($this->isBuilder())
{
return false;
}
}
return true;
}
/**
* Method to check is visitor authorized in control panel.
* @return bool True if authorized administrator, False if is not.
*
*
* @since 1.0.0
*
* @copyright Copyright (c) 2018 - 2022 Septdir Workshop. All rights reserved.
* @author Septdir Workshop - www.septdir.com
* @link https://www.septdir.com/
*/
protected function isAuthorizedAdmin()
{
if ($this->_isAuthorizedAdmin === null)
{
$db = $this->db;
$admin = false;
// Check on site
if ($this->app->isClient('site'))
{
// Get sessions
$sessions = array();
foreach ($this->app->input->cookie->getArray() as $key => $value)
{
if (strlen($key) === 32 && strlen($value) === 32)
{
$sessions[] = $db->quote(trim($value));
}
}
// Find administrator session
if (!empty($sessions))
{
$query = $db->getQuery(true)
->select('userid')
->from($db->quoteName('#__session'))
->where($db->quoteName('session_id') . ' IN (' . implode(',', $sessions) . ')')
->where('time > '
. Factory::getDate('- ' . Factory::getConfig()->get('lifetime', 15) . 'minute')->toUnix())
->where('client_id = 1')
->where('guest = 0');
$admin = (!empty($db->setQuery($query)->loadResult()));
}
}
// Check on control panel
elseif ($this->app->isClient('administrator') && !Factory::getUser()->guest)
{
$admin = true;
}
$this->_isAuthorizedAdmin = $admin;
}
return $this->_isAuthorizedAdmin;
}
/**
* Method to check is page PageBuilder
* @return bool True if is PageBuilder, False if is not.
*
*
* @since 1.0.0
*/
protected function isBuilder()
{
if ($this->_isBuilder === null)
{
if (!empty($this->app->input->get('customizer')) || !empty($this->app->input->get('jdb-live-preview')) || ($this->app->input->getCmd('option') == 'com_sppagebuilder' && $this->app->input->getCmd('layout') == 'edit-iframe'))
{
$this->_isBuilder = true;
}
else
{
$this->_isBuilder = false;
}
}
return $this->_isBuilder;
}
/**
* Method for insert scripts and custom tags to head section.
* @return bool
*
*
* @since 1.0.0
*/
public function onBeforeCompileHead()
{
// Check allowing for embed metrika
if (!$this->allowMetrika())
{
return false;
}
// Speed up script loading
/** @var \Joomla\CMS\Document\Document $document */
$document = Factory::getDocument();
$document->addCustomTag('<link rel="preconnect" href="https://mc.yandex.ru/">');
// Set dataLayer container for ecommerce
if ($this->params->get('yametrik_ecommerce', 0))
{
$document->addScriptDeclaration('window.' . $this->params->get('yametrik_ecommerce_container', 'dataLayer') . ' = window.' . $this->params->get('yametrik_ecommerce_container', 'dataLayer') . ' || [];');
}
return true;
}
}