New Addon Bot detection
authorPhilipp Holzer <admin@philipp.info>
Sat, 20 Apr 2019 12:15:45 +0000 (14:15 +0200)
committerPhilipp Holzer <admin@philipp.info>
Sat, 20 Apr 2019 12:15:45 +0000 (14:15 +0200)
botdetection/botdetection.php [new file with mode: 0644]

diff --git a/botdetection/botdetection.php b/botdetection/botdetection.php
new file mode 100644 (file)
index 0000000..ca6109a
--- /dev/null
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Name: botdetection
+ * Description: Blocking bots based on detecting bots/crawlers/spiders via the user agent and http_from header.
+ * Version: 0.1
+ * Author: Philipp Holzer <admin@philipp.info>
+ *
+ */
+
+use Friendica\App;
+use Friendica\Core\Hook;
+use Friendica\Core\System;
+use Jaybizzle\CrawlerDetect\CrawlerDetect;
+
+function botdetection_install() {
+       Hook::register('init_1', 'addon/botdetection/botdetection.php', 'botdetection_init_1');
+}
+
+
+function botdetection_uninstall() {
+       Hook::unregister('init_1', 'addon/botdetection/botdetection.php', 'botdetection_init_1');
+}
+
+function botdetection_init_1(App $a) {
+       $crawlerDetect = new CrawlerDetect();
+
+       if ($crawlerDetect->isCrawler()) {
+               System::httpExit(404, 'Bots are not allowed');
+       }
+}