3 * StatusNet, the distributed open-source microblogging tool
5 * Plugin to check submitted notices with blogspam.net
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @author Brion Vibber <brion@status.net>
26 * @copyright 2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET')) {
35 define('BLOGSPAMNETPLUGIN_VERSION', '0.1');
38 * Plugin to check submitted notices with blogspam.net
40 * When new notices are saved, we check their text with blogspam.net (or
41 * a compatible service).
43 * Blogspam.net is supposed to catch blog comment spam, and I found that
44 * some of its tests (min/max size, bayesian match) gave a lot of false positives.
45 * So, I've turned those tests off by default. This may not get as many
46 * hits, but it's better than nothing.
50 * @author Evan Prodromou <evan@status.net>
51 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
52 * @link http://status.net/
57 class BlogspamNetPlugin extends Plugin
59 var $baseUrl = 'http://test.blogspam.net:8888/';
61 function __construct($url=null)
63 parent::__construct();
65 $this->baseUrl = $url;
69 function onStartNoticeSave($notice)
71 $args = $this->testArgs($notice);
72 common_debug("Blogspamnet args = " . print_r($args, TRUE));
73 $requestBody = xmlrpc_encode_request('testComment', array($args));
75 $request = HTTPClient::start();
76 $httpResponse = $request->post($this->baseUrl, array('Content-Type: text/xml'), $requestBody);
78 $response = xmlrpc_decode($httpResponse->getBody());
79 if (xmlrpc_is_fault($response)) {
80 throw new ServerException("$response[faultString] ($response[faultCode])", 500);
82 common_debug("Blogspamnet results = " . $response);
83 if (preg_match('/^ERROR(:(.*))?$/', $response, $match)) {
84 throw new ServerException(sprintf(_("Error from %s: %s"), $this->baseUrl, $match[2]), 500);
85 } else if (preg_match('/^SPAM(:(.*))?$/', $response, $match)) {
86 throw new ClientException(sprintf(_("Spam checker results: %s"), $match[2]), 400);
87 } else if (preg_match('/^OK$/', $response)) {
90 throw new ServerException(sprintf(_("Unexpected response from %s: %s"), $this->baseUrl, $response), 500);
96 function testArgs($notice)
99 $args['comment'] = $notice->content;
100 $args['ip'] = $this->getClientIP();
102 if (isset($_SERVER) && array_key_exists('HTTP_USER_AGENT', $_SERVER)) {
103 $args['agent'] = $_SERVER['HTTP_USER_AGENT'];
106 $profile = $notice->getProfile();
108 if ($profile && $profile->homepage) {
109 $args['link'] = $profile->homepage;
112 if ($profile && $profile->fullname) {
113 $args['name'] = $profile->fullname;
115 $args['name'] = $profile->nickname;
118 $args['site'] = common_root_url();
119 $args['version'] = $this->userAgent();
121 $args['options'] = "max-size=140,min-size=0,min-words=0,exclude=bayasian";
126 function getClientIP()
128 if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
129 // Note: order matters here; use proxy-forwarded stuff first
130 foreach (array('HTTP_X_FORWARDED_FOR', 'CLIENT-IP', 'REMOTE_ADDR') as $k) {
131 if (isset($_SERVER[$k])) {
141 return 'BlogspamNetPlugin/'.BLOGSPAMNETPLUGIN_VERSION . ' StatusNet/' . STATUSNET_VERSION;