friendica-addons/blockbot/blockbot.php

33 lines
769 B
PHP
Raw Normal View History

2019-04-20 14:15:45 +02:00
<?php
/**
* Name: blockbot
2019-04-20 14:15:45 +02:00
* 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;
2019-04-21 12:35:33 +02:00
require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
function blockbot_install() {
2019-04-22 10:49:40 +02:00
Hook::register('init_1', __FILE__, 'blockbot_init_1');
2019-04-20 14:15:45 +02:00
}
function blockbot_uninstall() {
2019-04-22 10:49:40 +02:00
Hook::unregister('init_1', __FILE__, 'blockbot_init_1');
2019-04-20 14:15:45 +02:00
}
function blockbot_init_1(App $a) {
2019-04-20 14:15:45 +02:00
$crawlerDetect = new CrawlerDetect();
if ($crawlerDetect->isCrawler()) {
System::httpExit(403, 'Bots are not allowed');
2019-04-20 14:15:45 +02:00
}
}