-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAPI.php
650 lines (600 loc) · 21.7 KB
/
API.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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
<?php
/**
* BotTracker, a Matomo plugin by Digitalist Open Tech
* Based on the work of Thomas--F (https://github.com/Thomas--F)
* @link https://github.com/digitalist-se/BotTracker
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\BotTracker;
use Piwik\Container\StaticContainer;
use Piwik\Db;
use Piwik\Common;
use Piwik\DataTable;
use Piwik\Site;
use Piwik\Date;
use Piwik\Piwik;
use Piwik\Period;
use Piwik\Plugins\CoreVisualizations\Visualizations\JqplotGraph\Evolution;
/**
* @package Piwik_BotTracker
*/
class API extends \Piwik\Plugin\API
{
private static $instance = null;
private static function getDb()
{
return Db::get();
}
/**
* @return DataTable
*/
private static function getDataTable($rows)
{
return DataTable::makeFromIndexedArray($rows);
}
/**
* @return \Piwik\Plugins\BotTracker\API
* @throws \Exception
*/
public static function getInstance()
{
try {
$instance = StaticContainer::get('BotTracker_API');
if (!($instance instanceof API)) {
throw new \Exception('BotTracker_API must inherit API');
}
self::$instance = $instance;
} catch (\Exception $e) {
self::$instance = StaticContainer::get('Piwik\Plugins\BotTracker\API');
StaticContainer::getContainer()->set('BotTracker_API', self::$instance);
}
return self::$instance;
}
public static function getAllBotData($idSite)
{
Piwik::checkUserHasSomeViewAccess();
$rows = self::getDb()->fetchAll(
"SELECT * FROM " . Common::prefixTable('bot_db') .
" WHERE idSite= ? ORDER BY `botId`",
[$idSite]
);
$rows = self::convertBotLastVisitToLocalTime($rows, $idSite);
// convert this array to a DataTable object
return self::getDataTable($rows);
}
/**
* @return DataTable
*/
public static function getBotTrackerReportDataTable($idSite, $period, $date, $segment)
{
$rows = self::getBotTrackerReportData($idSite, $period, $date, $segment);
return self::getDataTable($rows);
}
/**
* @return array
*/
public static function getBotTrackerReportData($idSite, $period, $date, $segment)
{
Piwik::checkUserHasSomeViewAccess();
list($startDate, $endDate) = self::getDateRangeForPeriod($date, $period, false);
$startDate = $startDate->toString();
$endDate = $endDate->toString();
$rows = self::getDb()->fetchAll(
"SELECT * FROM " .
Common::prefixTable('bot_db') .
" WHERE idSite= ? ORDER BY `botId`",
[$idSite]
);
$rows = self::convertBotLastVisitToLocalTime($rows, $idSite);
// Get totals of a bot number.
foreach ($rows as &$row) {
$totals = self::getDb()->fetchRow(
"SELECT COUNT(botId) as total FROM " .
Common::prefixTable('bot_visits') .
" WHERE botId= ? AND date(date) between ? AND ?",
[$row['botId'],
$startDate,
$endDate]
);
$row['total'] = implode($totals);
}
return $rows;
}
public static function getBotTrackerTopTenReportPieDataTable($idSite, $period, $date, $segment)
{
$rows = self::getBotTrackerTopTenReportPieData($idSite, $period, $date, $segment);
return self::getDataTable($rows);
}
public static function getBotTrackerTopTenReportPieData($idSite, $period, $date, $segment)
{
Piwik::checkUserHasSomeViewAccess();
list($startDate, $endDate) = self::getDateRangeForPeriod($date, $period, false);
$startDate = $startDate->toString();
$endDate = $endDate->toString();
$rows = self::getDb()->fetchAll(
"SELECT `botName`, `botId` FROM " .
Common::prefixTable('bot_db') .
" WHERE idSite= ? ORDER BY `botId`",
[$idSite]
);
// For some reason, we are off by one, add an dummy bot in end.
// @todo: Look into why this is needed.
$dummy = [
'botName' => 'dummy',
'botId' => 0,
'botCount' => 0,
];
array_push($rows, $dummy);
// Get totals of a bot number.
foreach ($rows as &$row) {
$totals = self::getDb()->fetchRow(
"SELECT COUNT(botId) as total FROM " .
Common::prefixTable('bot_visits') .
" WHERE botId= ? AND date(date) between ? AND ?",
[$row['botId'],
$startDate,
$endDate]
);
$row['botCount'] = implode($totals);
}
$bot = [];
$count = [];
foreach ($rows as $row) {
$bot[] = $row['botName'];
$count[] = $row['botCount'];
}
$pie = array_combine($bot, $count);
// Remove zero results, and limit to ten.
$pie = array_diff($pie, [0]);
arsort($pie);
$rows = array_slice($pie, 0, 10);
return $rows;
}
public static function getAllBotDataForConfig($idsite)
{
Piwik::checkUserHasSomeViewAccess();
$rows = self::getDb()->fetchAll(
"SELECT `idsite`, `botId`,
`botName`, `botActive`,
`botKeyword`, `extra_stats`,
`botType` FROM " .
Common::prefixTable('bot_db') .
" WHERE `idsite` = ? ORDER BY `botId`",
[$idsite]
);
return $rows;
}
public static function getActiveBotData($idSite)
{
Piwik::checkUserHasSomeViewAccess();
$rows = self::getDb()->fetchAll(
"SELECT `botName`, `botLastVisit`, `botCount` FROM " .
Common::prefixTable('bot_db') .
" WHERE `botActive` = 1 AND idSite= ? ORDER BY `botId`",
[$idSite]
);
$rows = self::convertBotLastVisitToLocalTime($rows, $idSite);
// convert this array to a DataTable object
return self::getDataTable($rows);
}
/**
* @deprecated in 5.2.0, will be removed in 5.3.0
*/
public static function getAllBotDataPie($idSite)
{
Piwik::checkUserHasSomeViewAccess();
$rows = self::getDb()->fetchAll(
"SELECT `botName`, `botCount` FROM " .
Common::prefixTable('bot_db') .
" WHERE `botActive` = 1 AND `idSite`= ? ORDER BY `botCount`
DESC LIMIT 10",
[$idSite]
);
$i = 0;
$keys[0] = "";
$values[0] = "";
foreach ($rows as $row) {
$keys[$i] = $row['botName'];
$values[$i] = $row['botCount'];
$i++;
}
$pieArray = array_combine($keys, $values);
// convert this array to a DataTable object
return self::getDataTable($pieArray);
//return DataTable::makeFromIndexedArray($pieArray);
}
public static function updateBot($idSite, $botName, $botKeyword, $botActive, $botId, $extraStats)
{
Piwik::checkUserHasSuperUserAccess();
$params = [
'botName' => $botName,
'botActive' => $botActive,
'botKeyword' => $botKeyword,
'extraStats' => $extraStats,
];
try {
self::getDb()->query(
"UPDATE `" . Common::prefixTable('bot_db') . "`
SET `botName` = ?
, `botKeyword` = ?
, `botActive` = ?
, `extra_stats` = ?
WHERE `botId` = ?",
[self::htmlentities2utf8($botName),
self::htmlentities2utf8($botKeyword),
$botActive,
$extraStats,
$botId]
);
Piwik::postEvent('BotTracker.updateBot.successful', array($idSite, $params));
} catch (\Exception $e) {
Piwik::postEvent('BotTracker.updateBot.failed', array($idSite, $params));
throw $e;
return false;
}
}
public static function insertBot($idSite, $botName, $botActive, $botKeyword, $extraStats, $botType = 0)
{
Piwik::checkUserHasSuperUserAccess();
$params = [
'botName' => $botName,
'botActive' => $botActive,
'botKeyword' => $botKeyword,
'extraStats' => $extraStats,
'botType' => $botType,
];
try {
self::getDb()->query(
"INSERT INTO `" . Common::prefixTable('bot_db') . "`
(`idsite`,`botName`, `botActive`,
`botKeyword`, `botCount`, `extra_stats`, `botType`)
VALUES (?,?,?,?,0,?,?)",
[$idSite,
self::htmlentities2utf8($botName),
$botActive,
self::htmlentities2utf8($botKeyword),
$extraStats,
$botType]
);
Piwik::postEvent('BotTracker.insertBot.successful', array($idSite, $params));
return true;
} catch (\Exception $e) {
Piwik::postEvent('BotTracker.insertBot.failed', array($idSite, $params));
throw $e;
return false;
}
}
public static function defaultBots()
{
$botList = [];
$botList[] = ['Amazonbot','Amazonbot'];
$botList[] = ['Qualys','Qualys'];
$botList[] = ['bingbot','bingbot'];
$botList[] = ['YandexBot','YandexBot'];
$botList[] = ['AhrefsBot','AhrefsBot'];
$botList[] = ['Ahrefs','Ahrefs'];
$botList[] = ['Scrapy','Scrapy'];
$botList[] = ['Googlebot-Image','Google-Image'];
$botList[] = ['Googlebot-News','Googlebot-News'];
$botList[] = ['Googlebot-Video','Googlebot-Video'];
$botList[] = ['Storebot-Google','Storebot-Google'];
$botList[] = ['Google-InspectionTool','Google-InspectionTool'];
$botList[] = ['Google-Extended','Google-Extended'];
$botList[] = ['GoogleOther','GoogleOther'];
$botList[] = ['APIs-Google','APIs-Google'];
$botList[] = ['AdsBot-Google-Mobile','AdsBot-Google-Mobile'];
$botList[] = ['AdsBot-Google','AdsBot-Google'];
$botList[] = ['Mediapartners-Google','Google AdSense'];
$botList[] = ['Google-Safety','Google-Safety'];
$botList[] = ['Googlebot','Googlebot'];
$botList[] = ['Google-Read-Aloud','Google-Read-Aloud'];
$botList[] = ['Google-Site-Verification','Google-Site-Verification'];
$botList[] = ['AdIdxBot','AdIdxBot'];
$botList[] = ['NewRelic','NewRelic'];
$botList[] = ['Detectify','Detectify'];
$botList[] = ['UptimeRobot','UptimeRobot'];
$botList[] = ['SendGrid','SendGrid'];
$botList[] = ['Applebot','Applebot'];
$botList[] = ['PinterestBot','PinterestBot'];
$botList[] = ['Pingdom','Pingdom'];
$botList[] = ['Barkrowler','Barkrowler'];
$botList[] = ['SEMrush','SEMrush'];
$botList[] = ['GPTBot','GPTBot'];
$botList[] = ['ChatGPT-User','ChatGPT-User'];
$botList[] = ['Bytespider','Bytespider'];
$botList[] = ['CCBot','CCBot'];
$botList[] = ['FacebookBot','FacebookBot'];
$botList[] = ['Google-Extended','Google-Extended'];
$botList[] = ['Site24x7','Site24x7'];
$botList[] = ['Stripe','Stripe'];
$botList[] = ['Slackbot','Slackbot'];
$botList[] = ['Proximic','Proximic'];
$botList[] = ['okhttp','okhttp'];
$botList[] = ['Python','Python'];
$botList[] = ['SemrushBot','SemrushBot'];
$botList[] = ['Chrome-Lighthouse','Chrome-Lighthouse'];
$botList[] = ['Axios','Axios'];
$botList[] = ['PetalBot','PetalBot'];
$botList[] = ['CriteoBot','CriteoBot'];
$botList[] = ['Baidu','Baidu'];
$botList[] = ['ContentKing','ContentKing'];
$botList[] = ['IAS crawler','IAS crawler'];
$botList[] = ['Sucuri','Sucuri'];
$botList[] = ['Seekport','Seekport'];
$botList[] = ['Sogou','Sogou'];
$botList[] = ['YahooMailProxy','YahooMailProxy'];
$botList[] = ['ClaudeBot','ClaudeBot'];
$botList[] = ['Screaming Frog SEO Spider','Screaming Frog SEO Spider'];
return $botList;
}
public static function insertDefaultBots($idsite = 0)
{
Piwik::checkUserHasSuperUserAccess();
$i = 0;
if ($idsite <> 0) {
$botList = self::defaultBots();
foreach ($botList as $bot) {
$botX = self::getBotByName($idsite, $bot[0]);
if (empty($botX)) {
self::insertBot($idsite, $bot[0], 1, $bot[1], 0);
$i++;
}
}
}
return $i;
}
public function deleteBot($idSite, $botId)
{
Piwik::checkUserHasSuperUserAccess();
try {
$db = self::getDb();
$query = $db->query(
"DELETE FROM `" .
Common::prefixTable('bot_db') .
"` WHERE `botId` = ?",
[$botId]
);
Piwik::postEvent('BotTracker.deleteBot.successful', array($idSite, $botId));
return true;
} catch (\Exception $e) {
Piwik::postEvent('BotTracker.deleteBot.failed', array($idSite, $botId));
throw $e;
return false;
}
}
public static function getBotByName($idSite, $botName)
{
Piwik::checkUserHasSomeViewAccess();
$rows = self::getDb()->fetchAll(
"SELECT * FROM " .
Common::prefixTable('bot_db') .
" WHERE `botName` = ? AND `idSite`= ? ORDER BY `botId`",
[$botName, $idSite]
);
$rows = self::convertBotLastVisitToLocalTime($rows, $idSite);
return $rows;
}
private static function convertBotLastVisitToLocalTime($rows, $idSite)
{
// convert lastVisit to localtime
$timezone = Site::getTimezoneFor($idSite);
try {
foreach ($rows as &$row) {
if ($row['botLastVisit'] == '0000-00-00 00:00:00') {
$row['botLastVisit'] = " - ";
} elseif ($row['botLastVisit'] == '2000-01-01 00:00:00') {
$row['botLastVisit'] = " - ";
} else {
$botLastVisit = Date::adjustForTimezone(strtotime($row['botLastVisit']), $timezone);
$row['botLastVisit'] = date('Y-m-d H:i:s', $botLastVisit);
}
}
} catch (\Exception $e) {
throw $e;
return false;
}
return $rows;
}
private static function htmlentities2utf8($string)
{
$output = preg_replace_callback("/(&#[0-9]+;)/", function ($m) {
return mb_convert_encoding($m[1], "UTF-8", "HTML-ENTITIES");
}, $string);
return html_entity_decode($output);
}
/**
* Get Data for the Report "Top10"
* @param int $idSite
* @param string $period
* @param string $date
* @param bool|string $segment
* @return DataTable
*/
public function getTop10($idSite, $period, $date, $segment = false)
{
Piwik::checkUserHasSomeViewAccess();
return $this->getAllBotDataPie($idSite);
}
/**
* Get Data for the Report "BotTracker"
* @param int $idSite
* @param string $period
* @param string $date
* @param bool|string $segment
* @return DataTable
*/
public function getBotTracker($idSite, $period, $date, $segment = false)
{
Piwik::checkUserHasSomeViewAccess();
return $this->getAllBotData($idSite);
}
/**
* Get Data for the Report "BotTrackerReport"
* @param int $idSite
* @param string $period
* @param string $date
* @param bool|string $segment
*/
public function getBotTrackerReport($idSite, $period, $date, $segment = false)
{
Piwik::checkUserHasSomeViewAccess();
return $this->getBotTrackerReportDataTable($idSite, $period, $date, $segment = false);
}
/**
* Get Data for the Report "BotStatsReport"
* @param int $idSite
* @param string $period
* @param string $date
* @param bool|string $segment
*/
public function getOtherBots($idSite, $period, $date, $segment = false)
{
Piwik::checkUserHasSomeViewAccess();
return $this->getOtherBotsDataTable($idSite, $period, $date, $segment = false);
}
/**
* @return DataTable
*/
public static function getOtherBotsDataTable($idSite, $period, $date, $segment)
{
$rows = self::getOtherBotsData($idSite, $period, $date, $segment);
return self::getDataTable($rows);
}
/**
* @return array
*/
public static function getOtherBotsData($idSite, $period, $date, $segment)
{
Piwik::checkUserHasSomeViewAccess();
list($startDate, $endDate) = self::getDateRangeForPeriod($date, $period, false);
$startDate = $startDate->toString();
$endDate = $endDate->toString();
$rows = self::getDb()->fetchAll(
"SELECT useragent, COUNT(*) as total FROM " .
Common::prefixTable('bot_device_detector_bots') .
" WHERE idSite= ? AND date(date) between ? AND ? GROUP BY `useragent` ORDER BY `useragent`",
[$idSite, $startDate, $endDate ]
);
// // @todo: convert visit_timestamp to site
return $rows;
}
/**
* Get Data for the Report "BotStatsReport"
* @param int $idSite
* @param string $period
* @param string $date
* @param bool|string $segment
*/
public function getStatsReport($idSite, $period, $date, $segment = false)
{
Piwik::checkUserHasSomeViewAccess();
return $this->getStatsReportDataTable($idSite, $period, $date, $segment = false);
}
/**
* @return DataTable
*/
public static function getStatsReportDataTable($idSite, $period, $date, $segment)
{
$rows = self::getStatsReportData($idSite, $period, $date, $segment);
return self::getDataTable($rows);
}
/**
* @return array
*/
public static function getStatsReportData($idSite, $period, $date, $segment)
{
Piwik::checkUserHasSomeViewAccess();
list($startDate, $endDate) = self::getDateRangeForPeriod($date, $period, false);
$startDate = $startDate->toString();
$endDate = $endDate->toString();
$rows = self::getDb()->fetchAll(
"SELECT * FROM " .
Common::prefixTable('bot_db_stat') .
" WHERE idSite= ? AND date(visit_timestamp) between ? AND ? ORDER BY `botId`",
[$idSite, $startDate, $endDate ]
);
foreach ($rows as &$row) {
$name = self::getDb()->fetchRow(
"SELECT botName FROM " .
Common::prefixTable('bot_db') .
" WHERE botId= ?",
[$row['botId']]
);
$row['botName'] = implode($name);
}
// @todo: convert visit_timestamp to site
return $rows;
}
/**
* Get Data for the Report "BotTrackerReport"
* @param int $idSite
* @param string $period
* @param string $date
* @param bool|string $segment
* @return DataTable
*/
public function getBotTrackerTopTenReport($idSite, $period, $date, $segment = false)
{
Piwik::checkUserHasSomeViewAccess();
return $this->getBotTrackerTopTenReportPieDataTable($idSite, $period, $date, $segment = false);
}
/**
* Get Data for Dashboard-Widget
* @param int $idSite
* @param string $period
* @param string $date
* @param bool|string $segment
* @return DataTable
*/
public function getBotTrackerAnzeige($idSite, $period, $date, $segment = false)
{
Piwik::checkUserHasSomeViewAccess();
return $this->getActiveBotData($idSite);
}
public function getBotTypes()
{
Piwik::checkUserHasSomeViewAccess();
$db = self::getDb();
$rows = $db->fetchAll("SELECT `name`, `id` FROM " . Common::prefixTable('bot_type') . " ORDER BY `name`");
return $rows;
}
public function addBotType($type)
{
Piwik::checkUserHasSuperUserAccess();
try {
$db = self::getDb();
$sql = sprintf(
'INSERT INTO ' . Common::prefixTable('bot_type') . ' (`name`) VALUES (?)'
);
$db->query($sql, [$type]);
} catch (\Exception $e) {
throw $e;
}
}
public static function getDateRangeForPeriod($date, $period, $lastN = false)
{
$lastN = false;
if ($date === false) {
return [false, false];
}
$isMultiplePeriod = Period\Range::isMultiplePeriod($date, $period);
// if the range is just a normal period (or the period is a range in which case lastN is ignored)
if ($period == 'range') {
$oPeriod = new Period\Range('day', $date);
$startDate = $oPeriod->getDateStart();
$endDate = $oPeriod->getDateEnd();
} elseif ($lastN == false && !$isMultiplePeriod) {
$oPeriod = Period\Factory::build($period, Date::factory($date));
$startDate = $oPeriod->getDateStart();
$endDate = $oPeriod->getDateEnd();
} else { // if the range includes the last N periods or is a multiple period
if (!$isMultiplePeriod) {
list($date, $lastN) = Evolution::getDateRangeAndLastN($period, $date, $lastN);
}
list($startDate, $endDate) = explode(',', $date);
$startDate = Date::factory($startDate);
$endDate = Date::factory($endDate);
}
return [$startDate, $endDate];
}
}