PageRenderTime 60ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 1ms

/wp-content/plugins/akismet/akismet.php

https://bitbucket.org/MaheshDhaduk/androidmobiles
PHP | 889 lines | 739 code | 88 blank | 62 comment | 156 complexity | ed8a71750f9b976fe9e119c9882c1c6d MD5 | raw file
Possible License(s): GPL-3.0, LGPL-2.1, AGPL-1.0
  1. <?php
  2. /**
  3. * @package Akismet
  4. */
  5. /*
  6. Plugin Name: Akismet
  7. Plugin URI: http://akismet.com/
  8. Description: Akismet checks your comments against the Akismet web service to see if they look like spam or not. You need an <a href="http://akismet.com/get/">API key</a> to use it. You can review the spam it catches under "Comments." To show off your Akismet stats just put <code>&lt;?php akismet_counter(); ?&gt;</code> in your template. See also: <a href="http://wordpress.org/extend/plugins/stats/">WP Stats plugin</a>.
  9. Version: 2.4.0
  10. Author: Automattic
  11. Author URI: http://automattic.com/wordpress-plugins/
  12. License: GPLv2
  13. */
  14. /*
  15. This program is free software; you can redistribute it and/or modify
  16. it under the terms of the GNU General Public License as published by
  17. the Free Software Foundation; version 2 of the License.
  18. This program is distributed in the hope that it will be useful,
  19. but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. GNU General Public License for more details.
  22. You should have received a copy of the GNU General Public License
  23. along with this program; if not, write to the Free Software
  24. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  25. */
  26. define('AKISMET_VERSION', '2.4.0');
  27. /** If you hardcode a WP.com API key here, all key config screens will be hidden */
  28. if ( defined('WPCOM_API_KEY') )
  29. $wpcom_api_key = constant('WPCOM_API_KEY');
  30. else
  31. $wpcom_api_key = '';
  32. // Make sure we don't expose any info if called directly
  33. if ( !function_exists( 'add_action' ) ) {
  34. echo "Hi there! I'm just a plugin, not much I can do when called directly.";
  35. exit;
  36. }
  37. if ( $wp_db_version <= 9872 )
  38. include_once( dirname(__FILE__) . '/legacy.php' );
  39. function akismet_init() {
  40. global $wpcom_api_key, $akismet_api_host, $akismet_api_port;
  41. if ( $wpcom_api_key )
  42. $akismet_api_host = $wpcom_api_key . '.rest.akismet.com';
  43. else
  44. $akismet_api_host = get_option('wordpress_api_key') . '.rest.akismet.com';
  45. $akismet_api_port = 80;
  46. add_action('admin_menu', 'akismet_config_page');
  47. add_action('admin_menu', 'akismet_stats_page');
  48. akismet_admin_warnings();
  49. }
  50. add_action('init', 'akismet_init');
  51. function akismet_admin_init() {
  52. if ( function_exists( 'get_plugin_page_hook' ) )
  53. $hook = get_plugin_page_hook( 'akismet-stats-display', 'index.php' );
  54. else
  55. $hook = 'dashboard_page_akismet-stats-display';
  56. add_action('admin_head-'.$hook, 'akismet_stats_script');
  57. }
  58. add_action('admin_init', 'akismet_admin_init');
  59. if ( !function_exists('wp_nonce_field') ) {
  60. function akismet_nonce_field($action = -1) { return; }
  61. $akismet_nonce = -1;
  62. } else {
  63. function akismet_nonce_field($action = -1) { return wp_nonce_field($action); }
  64. $akismet_nonce = 'akismet-update-key';
  65. }
  66. if ( !function_exists('number_format_i18n') ) {
  67. function number_format_i18n( $number, $decimals = null ) { return number_format( $number, $decimals ); }
  68. }
  69. function akismet_config_page() {
  70. if ( function_exists('add_submenu_page') )
  71. add_submenu_page('plugins.php', __('Akismet Configuration'), __('Akismet Configuration'), 'manage_options', 'akismet-key-config', 'akismet_conf');
  72. }
  73. function akismet_conf() {
  74. global $akismet_nonce, $wpcom_api_key;
  75. if ( isset($_POST['submit']) ) {
  76. if ( function_exists('current_user_can') && !current_user_can('manage_options') )
  77. die(__('Cheatin&#8217; uh?'));
  78. check_admin_referer( $akismet_nonce );
  79. $key = preg_replace( '/[^a-h0-9]/i', '', $_POST['key'] );
  80. if ( empty($key) ) {
  81. $key_status = 'empty';
  82. $ms[] = 'new_key_empty';
  83. delete_option('wordpress_api_key');
  84. } else {
  85. $key_status = akismet_verify_key( $key );
  86. }
  87. if ( $key_status == 'valid' ) {
  88. update_option('wordpress_api_key', $key);
  89. $ms[] = 'new_key_valid';
  90. } else if ( $key_status == 'invalid' ) {
  91. $ms[] = 'new_key_invalid';
  92. } else if ( $key_status == 'failed' ) {
  93. $ms[] = 'new_key_failed';
  94. }
  95. if ( isset( $_POST['akismet_discard_month'] ) )
  96. update_option( 'akismet_discard_month', 'true' );
  97. else
  98. update_option( 'akismet_discard_month', 'false' );
  99. } elseif ( isset($_POST['check']) ) {
  100. akismet_get_server_connectivity(0);
  101. }
  102. if ( empty( $key_status) || $key_status != 'valid' ) {
  103. $key = get_option('wordpress_api_key');
  104. if ( empty( $key ) ) {
  105. if ( empty( $key_status ) || $key_status != 'failed' ) {
  106. if ( akismet_verify_key( '1234567890ab' ) == 'failed' )
  107. $ms[] = 'no_connection';
  108. else
  109. $ms[] = 'key_empty';
  110. }
  111. $key_status = 'empty';
  112. } else {
  113. $key_status = akismet_verify_key( $key );
  114. }
  115. if ( $key_status == 'valid' ) {
  116. $ms[] = 'key_valid';
  117. } else if ( $key_status == 'invalid' ) {
  118. delete_option('wordpress_api_key');
  119. $ms[] = 'key_empty';
  120. } else if ( !empty($key) && $key_status == 'failed' ) {
  121. $ms[] = 'key_failed';
  122. }
  123. }
  124. $messages = array(
  125. 'new_key_empty' => array('color' => 'aa0', 'text' => __('Your key has been cleared.')),
  126. 'new_key_valid' => array('color' => '2d2', 'text' => __('Your key has been verified. Happy blogging!')),
  127. 'new_key_invalid' => array('color' => 'd22', 'text' => __('The key you entered is invalid. Please double-check it.')),
  128. 'new_key_failed' => array('color' => 'd22', 'text' => __('The key you entered could not be verified because a connection to akismet.com could not be established. Please check your server configuration.')),
  129. 'no_connection' => array('color' => 'd22', 'text' => __('There was a problem connecting to the Akismet server. Please check your server configuration.')),
  130. 'key_empty' => array('color' => 'aa0', 'text' => sprintf(__('Please enter an API key. (<a href="%s" style="color:#fff">Get your key.</a>)'), 'http://akismet.com/get/')),
  131. 'key_valid' => array('color' => '2d2', 'text' => __('This key is valid.')),
  132. 'key_failed' => array('color' => 'aa0', 'text' => __('The key below was previously validated but a connection to akismet.com can not be established at this time. Please check your server configuration.')));
  133. ?>
  134. <?php if ( !empty($_POST['submit'] ) ) : ?>
  135. <div id="message" class="updated fade"><p><strong><?php _e('Options saved.') ?></strong></p></div>
  136. <?php endif; ?>
  137. <div class="wrap">
  138. <h2><?php _e('Akismet Configuration'); ?></h2>
  139. <div class="narrow">
  140. <form action="" method="post" id="akismet-conf" style="margin: auto; width: 400px; ">
  141. <?php if ( !$wpcom_api_key ) { ?>
  142. <p><?php printf(__('For many people, <a href="%1$s">Akismet</a> will greatly reduce or even completely eliminate the comment and trackback spam you get on your site. If one does happen to get through, simply mark it as "spam" on the moderation screen and Akismet will learn from the mistakes. If you don\'t have an API key yet, you can get one at <a href="%2$s">Akismet.com</a>.'), 'http://akismet.com/', 'http://akismet.com/get/'); ?></p>
  143. <h3><label for="key"><?php _e('Akismet API Key'); ?></label></h3>
  144. <?php foreach ( $ms as $m ) : ?>
  145. <p style="padding: .5em; background-color: #<?php echo $messages[$m]['color']; ?>; color: #fff; font-weight: bold;"><?php echo $messages[$m]['text']; ?></p>
  146. <?php endforeach; ?>
  147. <p><input id="key" name="key" type="text" size="15" maxlength="12" value="<?php echo get_option('wordpress_api_key'); ?>" style="font-family: 'Courier New', Courier, mono; font-size: 1.5em;" /> (<?php _e('<a href="http://akismet.com/get/">What is this?</a>'); ?>)</p>
  148. <?php if ( isset( $invalid_key) && $invalid_key ) { ?>
  149. <h3><?php _e('Why might my key be invalid?'); ?></h3>
  150. <p><?php _e('This can mean one of two things, either you copied the key wrong or that the plugin is unable to reach the Akismet servers, which is most often caused by an issue with your web host around firewalls or similar.'); ?></p>
  151. <?php } ?>
  152. <?php } ?>
  153. <?php akismet_nonce_field($akismet_nonce) ?>
  154. <p><label><input name="akismet_discard_month" id="akismet_discard_month" value="true" type="checkbox" <?php if ( get_option('akismet_discard_month') == 'true' ) echo ' checked="checked" '; ?> /> <?php _e('Automatically discard spam comments on posts older than a month.'); ?></label></p>
  155. <p class="submit"><input type="submit" name="submit" value="<?php _e('Update options &raquo;'); ?>" /></p>
  156. </form>
  157. <form action="" method="post" id="akismet-connectivity" style="margin: auto; width: 400px; ">
  158. <h3><?php _e('Server Connectivity'); ?></h3>
  159. <?php
  160. if ( !function_exists('fsockopen') || !function_exists('gethostbynamel') ) {
  161. ?>
  162. <p style="padding: .5em; background-color: #d22; color: #fff; font-weight:bold;"><?php _e('Network functions are disabled.'); ?></p>
  163. <p><?php echo sprintf( __('Your web host or server administrator has disabled PHP\'s <code>fsockopen</code> or <code>gethostbynamel</code> functions. <strong>Akismet cannot work correctly until this is fixed.</strong> Please contact your web host or firewall administrator and give them <a href="%s" target="_blank">this information about Akismet\'s system requirements</a>.'), 'http://blog.akismet.com/akismet-hosting-faq/'); ?></p>
  164. <?php
  165. } else {
  166. $servers = akismet_get_server_connectivity();
  167. $fail_count = count($servers) - count( array_filter($servers) );
  168. if ( is_array($servers) && count($servers) > 0 ) {
  169. // some connections work, some fail
  170. if ( $fail_count > 0 && $fail_count < count($servers) ) { ?>
  171. <p style="padding: .5em; background-color: #aa0; color: #fff; font-weight:bold;"><?php _e('Unable to reach some Akismet servers.'); ?></p>
  172. <p><?php echo sprintf( __('A network problem or firewall is blocking some connections from your web server to Akismet.com. Akismet is working but this may cause problems during times of network congestion. Please contact your web host or firewall administrator and give them <a href="%s" target="_blank">this information about Akismet and firewalls</a>.'), 'http://blog.akismet.com/akismet-hosting-faq/'); ?></p>
  173. <?php
  174. // all connections fail
  175. } elseif ( $fail_count > 0 ) { ?>
  176. <p style="padding: .5em; background-color: #d22; color: #fff; font-weight:bold;"><?php _e('Unable to reach any Akismet servers.'); ?></p>
  177. <p><?php echo sprintf( __('A network problem or firewall is blocking all connections from your web server to Akismet.com. <strong>Akismet cannot work correctly until this is fixed.</strong> Please contact your web host or firewall administrator and give them <a href="%s" target="_blank">this information about Akismet and firewalls</a>.'), 'http://blog.akismet.com/akismet-hosting-faq/'); ?></p>
  178. <?php
  179. // all connections work
  180. } else { ?>
  181. <p style="padding: .5em; background-color: #2d2; color: #fff; font-weight:bold;"><?php _e('All Akismet servers are available.'); ?></p>
  182. <p><?php _e('Akismet is working correctly. All servers are accessible.'); ?></p>
  183. <?php
  184. }
  185. } else {
  186. ?>
  187. <p style="padding: .5em; background-color: #d22; color: #fff; font-weight:bold;"><?php _e('Unable to find Akismet servers.'); ?></p>
  188. <p><?php echo sprintf( __('A DNS problem or firewall is preventing all access from your web server to Akismet.com. <strong>Akismet cannot work correctly until this is fixed.</strong> Please contact your web host or firewall administrator and give them <a href="%s" target="_blank">this information about Akismet and firewalls</a>.'), 'http://blog.akismet.com/akismet-hosting-faq/'); ?></p>
  189. <?php
  190. }
  191. }
  192. if ( !empty($servers) ) {
  193. ?>
  194. <table style="width: 100%;">
  195. <thead><th><?php _e('Akismet server'); ?></th><th><?php _e('Network Status'); ?></th></thead>
  196. <tbody>
  197. <?php
  198. asort($servers);
  199. foreach ( $servers as $ip => $status ) {
  200. $color = ( $status ? '#2d2' : '#d22');
  201. ?>
  202. <tr>
  203. <td><?php echo htmlspecialchars($ip); ?></td>
  204. <td style="padding: 0 .5em; font-weight:bold; color: #fff; background-color: <?php echo $color; ?>"><?php echo ($status ? __('No problems') : __('Obstructed') ); ?></td>
  205. <?php
  206. }
  207. }
  208. ?>
  209. </tbody>
  210. </table>
  211. <p><?php if ( get_option('akismet_connectivity_time') ) echo sprintf( __('Last checked %s ago.'), human_time_diff( get_option('akismet_connectivity_time') ) ); ?></p>
  212. <p class="submit"><input type="submit" name="check" value="<?php _e('Check network status &raquo;'); ?>" /></p>
  213. </form>
  214. </div>
  215. </div>
  216. <?php
  217. }
  218. function akismet_stats_page() {
  219. if ( function_exists('add_submenu_page') )
  220. add_submenu_page('index.php', __('Akismet Stats'), __('Akismet Stats'), 'manage_options', 'akismet-stats-display', 'akismet_stats_display');
  221. }
  222. function akismet_stats_script() {
  223. ?>
  224. <script type="text/javascript">
  225. function resizeIframe() {
  226. var height = document.documentElement.clientHeight;
  227. height -= document.getElementById('akismet-stats-frame').offsetTop;
  228. height += 100; // magic padding
  229. document.getElementById('akismet-stats-frame').style.height = height +"px";
  230. };
  231. function resizeIframeInit() {
  232. document.getElementById('akismet-stats-frame').onload = resizeIframe;
  233. window.onresize = resizeIframe;
  234. }
  235. addLoadEvent(resizeIframeInit);
  236. </script><?php
  237. }
  238. function akismet_stats_display() {
  239. global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
  240. $blog = urlencode( get_option('home') );
  241. $url = "http://".akismet_get_key().".web.akismet.com/1.0/user-stats.php?blog={$blog}";
  242. ?>
  243. <div class="wrap">
  244. <iframe src="<?php echo $url; ?>" width="100%" height="100%" frameborder="0" id="akismet-stats-frame"></iframe>
  245. </div>
  246. <?php
  247. }
  248. function akismet_stats() {
  249. if ( !function_exists('did_action') || did_action( 'rightnow_end' ) ) // We already displayed this info in the "Right Now" section
  250. return;
  251. if ( !$count = get_option('akismet_spam_count') )
  252. return;
  253. $path = plugin_basename(__FILE__);
  254. echo '<h3>'.__('Spam').'</h3>';
  255. global $submenu;
  256. if ( isset( $submenu['edit-comments.php'] ) )
  257. $link = 'edit-comments.php';
  258. else
  259. $link = 'edit.php';
  260. echo '<p>'.sprintf(__('<a href="%1$s">Akismet</a> has protected your site from <a href="%2$s">%3$s spam comments</a>.'), 'http://akismet.com/', clean_url("$link?page=akismet-admin"), number_format_i18n($count) ).'</p>';
  261. }
  262. add_action('activity_box_end', 'akismet_stats');
  263. function akismet_get_key() {
  264. global $wpcom_api_key;
  265. if ( !empty($wpcom_api_key) )
  266. return $wpcom_api_key;
  267. return get_option('wordpress_api_key');
  268. }
  269. function akismet_verify_key( $key, $ip = null ) {
  270. global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
  271. $blog = urlencode( get_option('home') );
  272. if ( $wpcom_api_key )
  273. $key = $wpcom_api_key;
  274. $response = akismet_http_post("key=$key&blog=$blog", 'rest.akismet.com', '/1.1/verify-key', $akismet_api_port, $ip);
  275. if ( !is_array($response) || !isset($response[1]) || $response[1] != 'valid' && $response[1] != 'invalid' )
  276. return 'failed';
  277. return $response[1];
  278. }
  279. // Check connectivity between the WordPress blog and Akismet's servers.
  280. // Returns an associative array of server IP addresses, where the key is the IP address, and value is true (available) or false (unable to connect).
  281. function akismet_check_server_connectivity() {
  282. global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
  283. $test_host = 'rest.akismet.com';
  284. // Some web hosts may disable one or both functions
  285. if ( !function_exists('fsockopen') || !function_exists('gethostbynamel') )
  286. return array();
  287. $ips = gethostbynamel($test_host);
  288. if ( !$ips || !is_array($ips) || !count($ips) )
  289. return array();
  290. $servers = array();
  291. foreach ( $ips as $ip ) {
  292. $response = akismet_verify_key( akismet_get_key(), $ip );
  293. // even if the key is invalid, at least we know we have connectivity
  294. if ( $response == 'valid' || $response == 'invalid' )
  295. $servers[$ip] = true;
  296. else
  297. $servers[$ip] = false;
  298. }
  299. return $servers;
  300. }
  301. // Check the server connectivity and store the results in an option.
  302. // Cached results will be used if not older than the specified timeout in seconds; use $cache_timeout = 0 to force an update.
  303. // Returns the same associative array as akismet_check_server_connectivity()
  304. function akismet_get_server_connectivity( $cache_timeout = 86400 ) {
  305. $servers = get_option('akismet_available_servers');
  306. if ( (time() - get_option('akismet_connectivity_time') < $cache_timeout) && $servers !== false )
  307. return $servers;
  308. // There's a race condition here but the effect is harmless.
  309. $servers = akismet_check_server_connectivity();
  310. update_option('akismet_available_servers', $servers);
  311. update_option('akismet_connectivity_time', time());
  312. return $servers;
  313. }
  314. // Returns true if server connectivity was OK at the last check, false if there was a problem that needs to be fixed.
  315. function akismet_server_connectivity_ok() {
  316. // skip the check on WPMU because the status page is hidden
  317. global $wpcom_api_key;
  318. if ( $wpcom_api_key )
  319. return true;
  320. $servers = akismet_get_server_connectivity();
  321. return !( empty($servers) || !count($servers) || count( array_filter($servers) ) < count($servers) );
  322. }
  323. function akismet_admin_warnings() {
  324. global $wpcom_api_key;
  325. if ( !get_option('wordpress_api_key') && !$wpcom_api_key && !isset($_POST['submit']) ) {
  326. function akismet_warning() {
  327. echo "
  328. <div id='akismet-warning' class='updated fade'><p><strong>".__('Akismet is almost ready.')."</strong> ".sprintf(__('You must <a href="%1$s">enter your Akismet API key</a> for it to work.'), "plugins.php?page=akismet-key-config")."</p></div>
  329. ";
  330. }
  331. add_action('admin_notices', 'akismet_warning');
  332. return;
  333. } elseif ( get_option('akismet_connectivity_time') && empty($_POST) && is_admin() && !akismet_server_connectivity_ok() ) {
  334. function akismet_warning() {
  335. echo "
  336. <div id='akismet-warning' class='updated fade'><p><strong>".__('Akismet has detected a problem.')."</strong> ".sprintf(__('A server or network problem is preventing Akismet from working correctly. <a href="%1$s">Click here for more information</a> about how to fix the problem.'), "plugins.php?page=akismet-key-config")."</p></div>
  337. ";
  338. }
  339. add_action('admin_notices', 'akismet_warning');
  340. return;
  341. }
  342. }
  343. function akismet_get_host($host) {
  344. // if all servers are accessible, just return the host name.
  345. // if not, return an IP that was known to be accessible at the last check.
  346. if ( akismet_server_connectivity_ok() ) {
  347. return $host;
  348. } else {
  349. $ips = akismet_get_server_connectivity();
  350. // a firewall may be blocking access to some Akismet IPs
  351. if ( count($ips) > 0 && count(array_filter($ips)) < count($ips) ) {
  352. // use DNS to get current IPs, but exclude any known to be unreachable
  353. $dns = (array)gethostbynamel( rtrim($host, '.') . '.' );
  354. $dns = array_filter($dns);
  355. foreach ( $dns as $ip ) {
  356. if ( array_key_exists( $ip, $ips ) && empty( $ips[$ip] ) )
  357. unset($dns[$ip]);
  358. }
  359. // return a random IP from those available
  360. if ( count($dns) )
  361. return $dns[ array_rand($dns) ];
  362. }
  363. }
  364. // if all else fails try the host name
  365. return $host;
  366. }
  367. // return a comma-separated list of role names for the given user
  368. function akismet_get_user_roles($user_id ) {
  369. $roles = false;
  370. if ( !class_exists('WP_User') )
  371. return false;
  372. if ( $user_id > 0 ) {
  373. $comment_user = new WP_User($user_id);
  374. if ( isset($comment_user->roles) )
  375. $roles = join(',', $comment_user->roles);
  376. }
  377. return $roles;
  378. }
  379. // Returns array with headers in $response[0] and body in $response[1]
  380. function akismet_http_post($request, $host, $path, $port = 80, $ip=null) {
  381. global $wp_version;
  382. $akismet_version = constant('AKISMET_VERSION');
  383. $http_request = "POST $path HTTP/1.0\r\n";
  384. $http_request .= "Host: $host\r\n";
  385. $http_request .= "Content-Type: application/x-www-form-urlencoded; charset=" . get_option('blog_charset') . "\r\n";
  386. $http_request .= "Content-Length: " . strlen($request) . "\r\n";
  387. $http_request .= "User-Agent: WordPress/$wp_version | Akismet/$akismet_version\r\n";
  388. $http_request .= "\r\n";
  389. $http_request .= $request;
  390. $http_host = $host;
  391. // use a specific IP if provided - needed by akismet_check_server_connectivity()
  392. if ( $ip && long2ip(ip2long($ip)) ) {
  393. $http_host = $ip;
  394. } else {
  395. $http_host = akismet_get_host($host);
  396. }
  397. $response = '';
  398. if( false != ( $fs = @fsockopen($http_host, $port, $errno, $errstr, 10) ) ) {
  399. fwrite($fs, $http_request);
  400. while ( !feof($fs) )
  401. $response .= fgets($fs, 1160); // One TCP-IP packet
  402. fclose($fs);
  403. $response = explode("\r\n\r\n", $response, 2);
  404. }
  405. return $response;
  406. }
  407. // filter handler used to return a spam result to pre_comment_approved
  408. function akismet_result_spam( $approved ) {
  409. // bump the counter here instead of when the filter is added to reduce the possibility of overcounting
  410. if ( $incr = apply_filters('akismet_spam_count_incr', 1) )
  411. update_option( 'akismet_spam_count', get_option('akismet_spam_count') + $incr );
  412. return 'spam';
  413. }
  414. function akismet_auto_check_comment( $commentdata ) {
  415. global $akismet_api_host, $akismet_api_port;
  416. $comment = $commentdata;
  417. $comment['user_ip'] = $_SERVER['REMOTE_ADDR'];
  418. $comment['user_agent'] = $_SERVER['HTTP_USER_AGENT'];
  419. $comment['referrer'] = $_SERVER['HTTP_REFERER'];
  420. $comment['blog'] = get_option('home');
  421. $comment['blog_lang'] = get_locale();
  422. $comment['blog_charset'] = get_option('blog_charset');
  423. $comment['permalink'] = get_permalink($comment['comment_post_ID']);
  424. $comment['user_role'] = akismet_get_user_roles($comment['user_ID']);
  425. $ignore = array( 'HTTP_COOKIE', 'HTTP_COOKIE2', 'PHP_AUTH_PW' );
  426. foreach ( $_SERVER as $key => $value )
  427. if ( !in_array( $key, $ignore ) && is_string($value) )
  428. $comment["$key"] = $value;
  429. else
  430. $comment["$key"] = '';
  431. $query_string = '';
  432. foreach ( $comment as $key => $data )
  433. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  434. $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
  435. $commentdata['akismet_result'] = $response[1];
  436. if ( 'true' == $response[1] ) {
  437. // akismet_spam_count will be incremented later by akismet_result_spam()
  438. add_filter('pre_comment_approved', 'akismet_result_spam');
  439. do_action( 'akismet_spam_caught' );
  440. $post = get_post( $comment['comment_post_ID'] );
  441. $last_updated = strtotime( $post->post_modified_gmt );
  442. $diff = time() - $last_updated;
  443. $diff = $diff / 86400;
  444. if ( $post->post_type == 'post' && $diff > 30 && get_option( 'akismet_discard_month' ) == 'true' && empty($comment['user_ID']) ) {
  445. // akismet_result_spam() won't be called so bump the counter here
  446. if ( $incr = apply_filters('akismet_spam_count_incr', 1) )
  447. update_option( 'akismet_spam_count', get_option('akismet_spam_count') + $incr );
  448. die;
  449. }
  450. }
  451. if ( function_exists('wp_next_scheduled') && function_exists('wp_schedule_event') ) {
  452. // WP 2.1+: delete old comments daily
  453. if ( !wp_next_scheduled('akismet_scheduled_delete') )
  454. wp_schedule_event(time(), 'daily', 'akismet_scheduled_delete');
  455. } elseif ( (mt_rand(1, 10) == 3) ) {
  456. // WP 2.0: run this one time in ten
  457. akismet_delete_old();
  458. }
  459. return $commentdata;
  460. }
  461. function akismet_delete_old() {
  462. global $wpdb;
  463. $now_gmt = current_time('mysql', 1);
  464. $comment_ids = $wpdb->get_col("SELECT comment_id FROM $wpdb->comments WHERE DATE_SUB('$now_gmt', INTERVAL 15 DAY) > comment_date_gmt AND comment_approved = 'spam'");
  465. if ( empty( $comment_ids ) )
  466. return;
  467. do_action( 'delete_comment', $comment_ids );
  468. $wpdb->query("DELETE FROM $wpdb->comments WHERE comment_id IN ( " . implode( ', ', $comment_ids ) . " )");
  469. $n = mt_rand(1, 5000);
  470. if ( apply_filters('akismet_optimize_table', ($n == 11)) ) // lucky number
  471. $wpdb->query("OPTIMIZE TABLE $wpdb->comments");
  472. }
  473. add_action('akismet_scheduled_delete', 'akismet_delete_old');
  474. function akismet_submit_nonspam_comment ( $comment_id ) {
  475. global $wpdb, $akismet_api_host, $akismet_api_port, $current_user, $current_site;
  476. $comment_id = (int) $comment_id;
  477. $comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID = '$comment_id'");
  478. if ( !$comment ) // it was deleted
  479. return;
  480. $comment->blog = get_option('home');
  481. $comment->blog_lang = get_locale();
  482. $comment->blog_charset = get_option('blog_charset');
  483. $comment->permalink = get_permalink($comment->comment_post_ID);
  484. if ( is_object($current_user) ) {
  485. $comment->reporter = $current_user->user_login;
  486. }
  487. if ( is_object($current_site) ) {
  488. $comment->site_domain = $current_site->domain;
  489. }
  490. $comment->user_role = '';
  491. if ( isset( $comment->user_ID ) )
  492. $comment->user_role = akismet_get_user_roles($comment->user_ID);
  493. $query_string = '';
  494. foreach ( $comment as $key => $data )
  495. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  496. $response = akismet_http_post($query_string, $akismet_api_host, "/1.1/submit-ham", $akismet_api_port);
  497. do_action('akismet_submit_nonspam_comment', $comment_id, $response[1]);
  498. }
  499. function akismet_submit_spam_comment ( $comment_id ) {
  500. global $wpdb, $akismet_api_host, $akismet_api_port, $current_user, $current_site;
  501. $comment_id = (int) $comment_id;
  502. $comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID = '$comment_id'");
  503. if ( !$comment ) // it was deleted
  504. return;
  505. if ( 'spam' != $comment->comment_approved )
  506. return;
  507. $comment->blog = get_option('home');
  508. $comment->blog_lang = get_locale();
  509. $comment->blog_charset = get_option('blog_charset');
  510. $comment->permalink = get_permalink($comment->comment_post_ID);
  511. if ( is_object($current_user) ) {
  512. $comment->reporter = $current_user->user_login;
  513. }
  514. if ( is_object($current_site) ) {
  515. $comment->site_domain = $current_site->domain;
  516. }
  517. $comment->user_role = '';
  518. if ( !isset( $comment->user_id ) )
  519. $comment->user_role = akismet_get_user_roles($comment->user_ID);
  520. $query_string = '';
  521. foreach ( $comment as $key => $data )
  522. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  523. $response = akismet_http_post($query_string, $akismet_api_host, "/1.1/submit-spam", $akismet_api_port);
  524. do_action('akismet_submit_spam_comment', $comment_id, $response[1]);
  525. }
  526. add_action('preprocess_comment', 'akismet_auto_check_comment', 1);
  527. // For old versions of WP only
  528. function akismet_set_comment_status( $comment_id, $status ) {
  529. if ( $status == 'spam' ) {
  530. akismet_submit_spam_comment( $comment_id );
  531. } elseif ( $status == 'approve' ) {
  532. akismet_submit_nonspam_comment( $comment_id );
  533. }
  534. }
  535. // For WP 2.7+
  536. function akismet_transition_comment_status( $new_status, $old_status, $comment ) {
  537. if ( $new_status == $old_status )
  538. return;
  539. if ( $new_status == 'spam' ) {
  540. akismet_submit_spam_comment( $comment->comment_ID );
  541. } elseif ( $old_status == 'spam' && ( $new_status == 'approved' || $new_status == 'unapproved' ) ) {
  542. akismet_submit_nonspam_comment( $comment->comment_ID );
  543. }
  544. }
  545. function akismet_spamtoham( $comment ) { akismet_submit_nonspam_comment( $comment->comment_ID ); }
  546. if ( function_exists( 'wp_transition_comment_status' ) ) {
  547. add_action( 'transition_comment_status', 'akismet_transition_comment_status', 10, 3 );
  548. } else {
  549. add_action('wp_set_comment_status', 'akismet_set_comment_status', 10, 2);
  550. add_action('edit_comment', 'akismet_submit_spam_comment');
  551. add_filter( 'comment_spam_to_approved', 'akismet_spamtoham' );
  552. add_filter( 'comment_spam_to_unapproved', 'akismet_spamtoham' );
  553. }
  554. // Total spam in queue
  555. // get_option( 'akismet_spam_count' ) is the total caught ever
  556. function akismet_spam_count( $type = false ) {
  557. global $wpdb;
  558. if ( !$type ) { // total
  559. $count = wp_cache_get( 'akismet_spam_count', 'widget' );
  560. if ( false === $count ) {
  561. if ( function_exists('wp_count_comments') ) {
  562. $count = wp_count_comments();
  563. $count = $count->spam;
  564. } else {
  565. $count = (int) $wpdb->get_var("SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_approved = 'spam'");
  566. }
  567. wp_cache_set( 'akismet_spam_count', $count, 'widget', 3600 );
  568. }
  569. return $count;
  570. } elseif ( 'comments' == $type || 'comment' == $type ) { // comments
  571. $type = '';
  572. } else { // pingback, trackback, ...
  573. $type = $wpdb->escape( $type );
  574. }
  575. return (int) $wpdb->get_var("SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_approved = 'spam' AND comment_type='$type'");
  576. }
  577. // WP 2.5+
  578. function akismet_rightnow() {
  579. global $submenu, $wp_db_version;
  580. // clean_url was deprecated in WP 3.0
  581. $esc_url = 'clean_url';
  582. if ( function_exists( 'esc_url' ) )
  583. $esc_url = 'esc_url';
  584. if ( 8645 < $wp_db_version ) // 2.7
  585. $link = 'edit-comments.php?comment_status=spam';
  586. elseif ( isset( $submenu['edit-comments.php'] ) )
  587. $link = 'edit-comments.php?page=akismet-admin';
  588. else
  589. $link = 'edit.php?page=akismet-admin';
  590. if ( $count = get_option('akismet_spam_count') ) {
  591. $intro = sprintf( __ngettext(
  592. '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comment already,',
  593. '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comments already,',
  594. $count
  595. ), 'http://akismet.com/', number_format_i18n( $count ) );
  596. } else {
  597. $intro = sprintf( __('<a href="%1$s">Akismet</a> blocks spam from getting to your blog,'), 'http://akismet.com/' );
  598. }
  599. if ( $queue_count = akismet_spam_count() ) {
  600. $queue_text = sprintf( __ngettext(
  601. 'and there\'s <a href="%2$s">%1$s comment</a> in your spam queue right now.',
  602. 'and there are <a href="%2$s">%1$s comments</a> in your spam queue right now.',
  603. $queue_count
  604. ), number_format_i18n( $queue_count ), clean_url($link) );
  605. } else {
  606. $queue_text = sprintf( __( "but there's nothing in your <a href='%1\$s'>spam queue</a> at the moment." ), $esc_url($link) );
  607. }
  608. // _c was deprecated in WP 2.9.0
  609. if ( function_exists( '_x' ) )
  610. $text = sprintf( _x( '%1$s %2$s', 'akismet_rightnow' ), $intro, $queue_text );
  611. else
  612. $text = sprintf( _c( '%1$s %2$s|akismet_rightnow' ), $intro, $queue_text );
  613. echo "<p class='akismet-right-now'>$text</p>\n";
  614. }
  615. add_action('rightnow_end', 'akismet_rightnow');
  616. // For WP >= 2.5
  617. function akismet_check_for_spam_button($comment_status) {
  618. if ( 'approved' == $comment_status )
  619. return;
  620. if ( function_exists('plugins_url') )
  621. $link = 'admin.php?action=akismet_recheck_queue';
  622. else
  623. $link = 'edit-comments.php?page=akismet-admin&amp;recheckqueue=true&amp;noheader=true';
  624. echo "</div><div class='alignleft'><a class='button-secondary checkforspam' href='$link'>" . __('Check for Spam') . "</a>";
  625. }
  626. add_action('manage_comments_nav', 'akismet_check_for_spam_button');
  627. function akismet_recheck_queue() {
  628. global $wpdb, $akismet_api_host, $akismet_api_port;
  629. if ( ! ( isset( $_GET['recheckqueue'] ) || ( isset( $_REQUEST['action'] ) && 'akismet_recheck_queue' == $_REQUEST['action'] ) ) )
  630. return;
  631. $moderation = $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = '0'", ARRAY_A );
  632. foreach ( (array) $moderation as $c ) {
  633. $c['user_ip'] = $c['comment_author_IP'];
  634. $c['user_agent'] = $c['comment_agent'];
  635. $c['referrer'] = '';
  636. $c['blog'] = get_option('home');
  637. $c['blog_lang'] = get_locale();
  638. $c['blog_charset'] = get_option('blog_charset');
  639. $c['permalink'] = get_permalink($c['comment_post_ID']);
  640. $c['user_role'] = '';
  641. if ( isset( $c['user_ID'] ) )
  642. $c['user_role'] = akismet_get_user_roles($c['user_ID']);
  643. $id = (int) $c['comment_ID'];
  644. $query_string = '';
  645. foreach ( $c as $key => $data )
  646. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  647. $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
  648. if ( 'true' == $response[1] ) {
  649. if ( function_exists('wp_set_comment_status') )
  650. wp_set_comment_status($id, 'spam');
  651. else
  652. $wpdb->query("UPDATE $wpdb->comments SET comment_approved = 'spam' WHERE comment_ID = $id");
  653. }
  654. }
  655. wp_redirect( $_SERVER['HTTP_REFERER'] );
  656. exit;
  657. }
  658. add_action('admin_action_akismet_recheck_queue', 'akismet_recheck_queue');
  659. function akismet_check_db_comment( $id ) {
  660. global $wpdb, $akismet_api_host, $akismet_api_port;
  661. $id = (int) $id;
  662. $c = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID = '$id'", ARRAY_A );
  663. if ( !$c )
  664. return;
  665. $c['user_ip'] = $c['comment_author_IP'];
  666. $c['user_agent'] = $c['comment_agent'];
  667. $c['referrer'] = '';
  668. $c['blog'] = get_option('home');
  669. $c['blog_lang'] = get_locale();
  670. $c['blog_charset'] = get_option('blog_charset');
  671. $c['permalink'] = get_permalink($c['comment_post_ID']);
  672. $id = $c['comment_ID'];
  673. $query_string = '';
  674. foreach ( $c as $key => $data )
  675. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  676. $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
  677. return $response[1];
  678. }
  679. // Widget stuff
  680. function widget_akismet_register() {
  681. if ( function_exists('register_sidebar_widget') ) :
  682. function widget_akismet($args) {
  683. extract($args);
  684. $options = get_option('widget_akismet');
  685. $count = number_format_i18n(get_option('akismet_spam_count'));
  686. ?>
  687. <?php echo $before_widget; ?>
  688. <?php echo $before_title . $options['title'] . $after_title; ?>
  689. <div id="akismetwrap"><div id="akismetstats"><a id="aka" href="http://akismet.com" title=""><?php printf( __( '%1$s %2$sspam comments%3$s %4$sblocked by%5$s<br />%6$sAkismet%7$s' ), '<span id="akismet1"><span id="akismetcount">' . $count . '</span>', '<span id="akismetsc">', '</span></span>', '<span id="akismet2"><span id="akismetbb">', '</span>', '<span id="akismeta">', '</span></span>' ); ?></a></div></div>
  690. <?php echo $after_widget; ?>
  691. <?php
  692. }
  693. function widget_akismet_style() {
  694. $plugin_dir = '/wp-content/plugins';
  695. if ( defined( 'PLUGINDIR' ) )
  696. $plugin_dir = '/' . PLUGINDIR;
  697. ?>
  698. <style type="text/css">
  699. #aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
  700. #aka:hover{border:none;text-decoration:none}
  701. #aka:hover #akismet1{display:none}
  702. #aka:hover #akismet2,#akismet1{display:block}
  703. #akismet2{display:none;padding-top:2px}
  704. #akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
  705. #akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
  706. #akismetwrap #akismetstats{background:url(<?php echo get_option('siteurl'), $plugin_dir; ?>/akismet/akismet.gif) no-repeat top left;border:none;color:#fff;font:11px 'Trebuchet MS','Myriad Pro',sans-serif;height:40px;line-height:100%;overflow:hidden;padding:8px 0 0;text-align:center;width:120px}
  707. </style>
  708. <?php
  709. }
  710. function widget_akismet_control() {
  711. $options = $newoptions = get_option('widget_akismet');
  712. if ( isset( $_POST['akismet-submit'] ) && $_POST["akismet-submit"] ) {
  713. $newoptions['title'] = strip_tags(stripslashes($_POST["akismet-title"]));
  714. if ( empty($newoptions['title']) ) $newoptions['title'] = __('Spam Blocked');
  715. }
  716. if ( $options != $newoptions ) {
  717. $options = $newoptions;
  718. update_option('widget_akismet', $options);
  719. }
  720. $title = htmlspecialchars($options['title'], ENT_QUOTES);
  721. ?>
  722. <p><label for="akismet-title"><?php _e('Title:'); ?> <input style="width: 250px;" id="akismet-title" name="akismet-title" type="text" value="<?php echo $title; ?>" /></label></p>
  723. <input type="hidden" id="akismet-submit" name="akismet-submit" value="1" />
  724. <?php
  725. }
  726. if ( function_exists( 'wp_register_sidebar_widget' ) ) {
  727. wp_register_sidebar_widget( 'akismet', 'Akismet', 'widget_akismet', null, 'akismet');
  728. wp_register_widget_control( 'akismet', 'Akismet', 'widget_akismet_control', null, 75, 'akismet');
  729. } else {
  730. register_sidebar_widget('Akismet', 'widget_akismet', null, 'akismet');
  731. register_widget_control('Akismet', 'widget_akismet_control', null, 75, 'akismet');
  732. }
  733. if ( is_active_widget('widget_akismet') )
  734. add_action('wp_head', 'widget_akismet_style');
  735. endif;
  736. }
  737. add_action('init', 'widget_akismet_register');
  738. // Counter for non-widget users
  739. function akismet_counter() {
  740. $plugin_dir = '/wp-content/plugins';
  741. if ( defined( 'PLUGINDIR' ) )
  742. $plugin_dir = '/' . PLUGINDIR;
  743. ?>
  744. <style type="text/css">
  745. #akismetwrap #aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
  746. #aka:hover{border:none;text-decoration:none}
  747. #aka:hover #akismet1{display:none}
  748. #aka:hover #akismet2,#akismet1{display:block}
  749. #akismet2{display:none;padding-top:2px}
  750. #akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
  751. #akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
  752. #akismetwrap #akismetstats{background:url(<?php echo get_option('siteurl'), $plugin_dir; ?>/akismet/akismet.gif) no-repeat top left;border:none;color:#fff;font:11px 'Trebuchet MS','Myriad Pro',sans-serif;height:40px;line-height:100%;overflow:hidden;padding:8px 0 0;text-align:center;width:120px}
  753. </style>
  754. <?php
  755. $count = number_format_i18n(get_option('akismet_spam_count'));
  756. ?>
  757. <div id="akismetwrap"><div id="akismetstats"><a id="aka" href="http://akismet.com" title=""><div id="akismet1"><span id="akismetcount"><?php echo $count; ?></span> <span id="akismetsc"><?php _e('spam comments') ?></span></div> <div id="akismet2"><span id="akismetbb"><?php _e('blocked by') ?></span><br /><span id="akismeta">Akismet</span></div></a></div></div>
  758. <?php
  759. }
  760. ?>