friendica-addons/blockbot/blockbot.php

50 lines
1.6 KiB
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-27 13:51:44 +02:00
use Friendica\Core\Logger;
2019-04-20 14:15:45 +02:00
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();
2019-04-27 13:51:44 +02:00
// List of strings of known "good" agents
$agents = ['diaspora-connection-tester', 'DiasporaFederation', 'Friendica', '(compatible; zot)',
'Micro.blog', 'Mastodon', 'hackney', 'GangGo', 'python/federation', 'GNU social', 'winHttp',
'Go-http-client', 'Mr.4x3 Powered', 'Test Certificate Info', 'WordPress.com', 'zgrab',
'curl/', 'StatusNet', 'OpenGraphReader/', 'Uptimebot/', 'python-opengraph-jaywink'];
2019-04-20 14:15:45 +02:00
if ($crawlerDetect->isCrawler()) {
2019-04-27 13:51:44 +02:00
foreach ($agents as $agent) {
if (stristr($_SERVER['HTTP_USER_AGENT'], $agent)) {
// @ToDo: Report every false positive here: https://github.com/JayBizzle/Crawler-Detect/issues/326
logger::notice('False positive', ['agent' => $_SERVER['HTTP_USER_AGENT']]);
return;
}
}
logger::info('Blocked bot', ['agent' => $_SERVER['HTTP_USER_AGENT']]);
System::httpExit(403, 'Bots are not allowed');
2019-04-27 13:51:44 +02:00
} else {
logger::debug('Good user agent detected', ['agent' => $_SERVER['HTTP_USER_AGENT']]);
2019-04-20 14:15:45 +02:00
}
}