dd84df3728709d9a11adbe5d3f5b40a525a93a85
[friendica-addons.git/.git] / blockbot / blockbot.php
1 <?php
2 /**
3  * Name: blockbot
4  * Description: Blocking bots based on detecting bots/crawlers/spiders via the user agent and http_from header.
5  * Version: 0.1
6  * Author: Philipp Holzer <admin@philipp.info>
7  *
8  */
9
10 use Friendica\App;
11 use Friendica\Core\Hook;
12 use Friendica\Core\System;
13 use Jaybizzle\CrawlerDetect\CrawlerDetect;
14 use Friendica\Core\Logger;
15
16 require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
17
18 function blockbot_install() {
19         Hook::register('init_1', __FILE__, 'blockbot_init_1');
20 }
21
22
23 function blockbot_uninstall() {
24         Hook::unregister('init_1', __FILE__, 'blockbot_init_1');
25 }
26
27 function blockbot_init_1(App $a) {
28         $crawlerDetect = new CrawlerDetect();
29
30         $logdata = ['agent' => $_SERVER['HTTP_USER_AGENT'], 'uri' => $_SERVER['REQUEST_URI']];
31
32         if (!$crawlerDetect->isCrawler()) {
33                 logger::debug('Good user agent detected', $logdata);
34                 return;
35         }
36
37         // List of strings of reported false positives
38         $agents = ['hackney/', 'Faraday v', 'okhttp', 'UniversalFeedParser', 'PixelFedBot', 'python-requests',
39                 'WordPress/', 'http.rb/'];
40         foreach ($agents as $agent) {
41                 if (stristr($_SERVER['HTTP_USER_AGENT'], $agent)) {
42                         // The agents had been reported to https://github.com/JayBizzle/Crawler-Detect/issues/
43                         logger::notice('Reported false positive', $logdata);
44                         return;
45                 }
46         }
47
48         // List of false positives' strings of known "good" agents we haven't reported (yet)
49         $agents = ['fediverse.network crawler', 'Active_Pods_CheckBot_3.0', 'Social-Relay/',
50                 'curl', 'zgrab', 'Go-http-client', 'curb'];
51
52         foreach ($agents as $agent) {
53                 if (stristr($_SERVER['HTTP_USER_AGENT'], $agent)) {
54                         logger::notice('Unreported falsely detected agent', $logdata);
55                         return;
56                 }
57         }
58
59         // List of known crawlers. They are added here to avoid having them logged at the end of the function.
60         // This helps to detect false positives.
61         $agents = ['SEMrushBot', 's~feedly-nikon3', 'Qwantify/Bleriot/', 'ltx71', 'Sogou web spider/',
62                 'Diffbot/'];
63
64         foreach ($agents as $agent) {
65                 if (stristr($_SERVER['HTTP_USER_AGENT'], $agent)) {
66                         System::httpExit(403, 'Bots are not allowed');
67                 }
68         }
69
70         logger::info('Blocked bot', $logdata);
71         System::httpExit(403, 'Bots are not allowed');
72 }