Rename botdetection to blockbot

Adding composer/vendor to blockbot
This commit is contained in:
Philipp Holzer 2019-04-20 20:38:32 +02:00
parent f1839f23e6
commit 34fc60be77
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
27 changed files with 3768 additions and 7 deletions

30
blockbot/blockbot.php Normal file
View file

@ -0,0 +1,30 @@
<?php
/**
* Name: blockbot
* 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 blockbot_install() {
Hook::register('init_1', 'addon/blockbot/blockbot.php', 'blockbot_init_1');
}
function blockbot_uninstall() {
Hook::unregister('init_1', 'addon/blockbot/blockbot.php', 'blockbot_init_1');
}
function blockbot_init_1(App $a) {
$crawlerDetect = new CrawlerDetect();
if ($crawlerDetect->isCrawler()) {
System::httpExit(403, 'Bots are not allowed');
}
}