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

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

https://gitlab.com/endomorphosis/reservationtelco
PHP | 1176 lines | 968 code | 141 blank | 67 comment | 253 complexity | 279069c8a72401e915bb9e20a088f845 MD5 | raw file
  1. <?php
  2. /*
  3. Plugin Name: Akismet
  4. Plugin URI: http://akismet.com/
  5. Description: Akismet checks your comments against the Akismet web service to see if they look like spam or not. You need a <a href="http://akismet.com/get/">WordPress.com 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>.
  6. Version: 2.2.9
  7. Author: Matt Mullenweg
  8. Author URI: http://ma.tt/
  9. */
  10. define('AKISMET_VERSION', '2.2.9');
  11. // If you hardcode a WP.com API key here, all key config screens will be hidden
  12. if ( defined('WPCOM_API_KEY') )
  13. $wpcom_api_key = constant('WPCOM_API_KEY');
  14. else
  15. $wpcom_api_key = '';
  16. function akismet_init() {
  17. global $wpcom_api_key, $akismet_api_host, $akismet_api_port;
  18. if ( $wpcom_api_key )
  19. $akismet_api_host = $wpcom_api_key . '.rest.akismet.com';
  20. else
  21. $akismet_api_host = get_option('wordpress_api_key') . '.rest.akismet.com';
  22. $akismet_api_port = 80;
  23. add_action('admin_menu', 'akismet_config_page');
  24. add_action('admin_menu', 'akismet_stats_page');
  25. akismet_admin_warnings();
  26. }
  27. add_action('init', 'akismet_init');
  28. function akismet_admin_init() {
  29. if ( function_exists( 'get_plugin_page_hook' ) )
  30. $hook = get_plugin_page_hook( 'akismet-stats-display', 'index.php' );
  31. else
  32. $hook = 'dashboard_page_akismet-stats-display';
  33. add_action('admin_head-'.$hook, 'akismet_stats_script');
  34. }
  35. add_action('admin_init', 'akismet_admin_init');
  36. if ( !function_exists('wp_nonce_field') ) {
  37. function akismet_nonce_field($action = -1) { return; }
  38. $akismet_nonce = -1;
  39. } else {
  40. function akismet_nonce_field($action = -1) { return wp_nonce_field($action); }
  41. $akismet_nonce = 'akismet-update-key';
  42. }
  43. if ( !function_exists('number_format_i18n') ) {
  44. function number_format_i18n( $number, $decimals = null ) { return number_format( $number, $decimals ); }
  45. }
  46. function akismet_config_page() {
  47. if ( function_exists('add_submenu_page') )
  48. add_submenu_page('plugins.php', __('Akismet Configuration'), __('Akismet Configuration'), 'manage_options', 'akismet-key-config', 'akismet_conf');
  49. }
  50. function akismet_conf() {
  51. global $akismet_nonce, $wpcom_api_key;
  52. if ( isset($_POST['submit']) ) {
  53. if ( function_exists('current_user_can') && !current_user_can('manage_options') )
  54. die(__('Cheatin&#8217; uh?'));
  55. check_admin_referer( $akismet_nonce );
  56. $key = preg_replace( '/[^a-h0-9]/i', '', $_POST['key'] );
  57. if ( empty($key) ) {
  58. $key_status = 'empty';
  59. $ms[] = 'new_key_empty';
  60. delete_option('wordpress_api_key');
  61. } else {
  62. $key_status = akismet_verify_key( $key );
  63. }
  64. if ( $key_status == 'valid' ) {
  65. update_option('wordpress_api_key', $key);
  66. $ms[] = 'new_key_valid';
  67. } else if ( $key_status == 'invalid' ) {
  68. $ms[] = 'new_key_invalid';
  69. } else if ( $key_status == 'failed' ) {
  70. $ms[] = 'new_key_failed';
  71. }
  72. if ( isset( $_POST['akismet_discard_month'] ) )
  73. update_option( 'akismet_discard_month', 'true' );
  74. else
  75. update_option( 'akismet_discard_month', 'false' );
  76. } elseif ( isset($_POST['check']) ) {
  77. akismet_get_server_connectivity(0);
  78. }
  79. if ( $key_status != 'valid' ) {
  80. $key = get_option('wordpress_api_key');
  81. if ( empty( $key ) ) {
  82. if ( $key_status != 'failed' ) {
  83. if ( akismet_verify_key( '1234567890ab' ) == 'failed' )
  84. $ms[] = 'no_connection';
  85. else
  86. $ms[] = 'key_empty';
  87. }
  88. $key_status = 'empty';
  89. } else {
  90. $key_status = akismet_verify_key( $key );
  91. }
  92. if ( $key_status == 'valid' ) {
  93. $ms[] = 'key_valid';
  94. } else if ( $key_status == 'invalid' ) {
  95. delete_option('wordpress_api_key');
  96. $ms[] = 'key_empty';
  97. } else if ( !empty($key) && $key_status == 'failed' ) {
  98. $ms[] = 'key_failed';
  99. }
  100. }
  101. $messages = array(
  102. 'new_key_empty' => array('color' => 'aa0', 'text' => __('Your key has been cleared.')),
  103. 'new_key_valid' => array('color' => '2d2', 'text' => __('Your key has been verified. Happy blogging!')),
  104. 'new_key_invalid' => array('color' => 'd22', 'text' => __('The key you entered is invalid. Please double-check it.')),
  105. '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.')),
  106. 'no_connection' => array('color' => 'd22', 'text' => __('There was a problem connecting to the Akismet server. Please check your server configuration.')),
  107. '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/')),
  108. 'key_valid' => array('color' => '2d2', 'text' => __('This key is valid.')),
  109. '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.')));
  110. ?>
  111. <?php if ( !empty($_POST['submit'] ) ) : ?>
  112. <div id="message" class="updated fade"><p><strong><?php _e('Options saved.') ?></strong></p></div>
  113. <?php endif; ?>
  114. <div class="wrap">
  115. <h2><?php _e('Akismet Configuration'); ?></h2>
  116. <div class="narrow">
  117. <form action="" method="post" id="akismet-conf" style="margin: auto; width: 400px; ">
  118. <?php if ( !$wpcom_api_key ) { ?>
  119. <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 a WordPress.com account yet, you can get one at <a href="%2$s">Akismet.com</a>.'), 'http://akismet.com/', 'http://akismet.com/get/'); ?></p>
  120. <?php akismet_nonce_field($akismet_nonce) ?>
  121. <h3><label for="key"><?php _e('WordPress.com API Key'); ?></label></h3>
  122. <?php foreach ( $ms as $m ) : ?>
  123. <p style="padding: .5em; background-color: #<?php echo $messages[$m]['color']; ?>; color: #fff; font-weight: bold;"><?php echo $messages[$m]['text']; ?></p>
  124. <?php endforeach; ?>
  125. <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://faq.wordpress.com/2005/10/19/api-key/">What is this?</a>'); ?>)</p>
  126. <?php if ( $invalid_key ) { ?>
  127. <h3><?php _e('Why might my key be invalid?'); ?></h3>
  128. <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>
  129. <?php } ?>
  130. <?php } ?>
  131. <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>
  132. <p class="submit"><input type="submit" name="submit" value="<?php _e('Update options &raquo;'); ?>" /></p>
  133. </form>
  134. <form action="" method="post" id="akismet-connectivity" style="margin: auto; width: 400px; ">
  135. <h3><?php _e('Server Connectivity'); ?></h3>
  136. <?php
  137. if ( !function_exists('fsockopen') || !function_exists('gethostbynamel') ) {
  138. ?>
  139. <p style="padding: .5em; background-color: #d22; color: #fff; font-weight:bold;"><?php _e('Network functions are disabled.'); ?></p>
  140. <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>
  141. <?php
  142. } else {
  143. $servers = akismet_get_server_connectivity();
  144. $fail_count = count($servers) - count( array_filter($servers) );
  145. if ( is_array($servers) && count($servers) > 0 ) {
  146. // some connections work, some fail
  147. if ( $fail_count > 0 && $fail_count < count($servers) ) { ?>
  148. <p style="padding: .5em; background-color: #aa0; color: #fff; font-weight:bold;"><?php _e('Unable to reach some Akismet servers.'); ?></p>
  149. <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>
  150. <?php
  151. // all connections fail
  152. } elseif ( $fail_count > 0 ) { ?>
  153. <p style="padding: .5em; background-color: #d22; color: #fff; font-weight:bold;"><?php _e('Unable to reach any Akismet servers.'); ?></p>
  154. <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>
  155. <?php
  156. // all connections work
  157. } else { ?>
  158. <p style="padding: .5em; background-color: #2d2; color: #fff; font-weight:bold;"><?php _e('All Akismet servers are available.'); ?></p>
  159. <p><?php _e('Akismet is working correctly. All servers are accessible.'); ?></p>
  160. <?php
  161. }
  162. } else {
  163. ?>
  164. <p style="padding: .5em; background-color: #d22; color: #fff; font-weight:bold;"><?php _e('Unable to find Akismet servers.'); ?></p>
  165. <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>
  166. <?php
  167. }
  168. }
  169. if ( !empty($servers) ) {
  170. ?>
  171. <table style="width: 100%;">
  172. <thead><th><?php _e('Akismet server'); ?></th><th><?php _e('Network Status'); ?></th></thead>
  173. <tbody>
  174. <?php
  175. asort($servers);
  176. foreach ( $servers as $ip => $status ) {
  177. $color = ( $status ? '#2d2' : '#d22');
  178. ?>
  179. <tr>
  180. <td><?php echo htmlspecialchars($ip); ?></td>
  181. <td style="padding: 0 .5em; font-weight:bold; color: #fff; background-color: <?php echo $color; ?>"><?php echo ($status ? __('No problems') : __('Obstructed') ); ?></td>
  182. <?php
  183. }
  184. }
  185. ?>
  186. </tbody>
  187. </table>
  188. <p><?php if ( get_option('akismet_connectivity_time') ) echo sprintf( __('Last checked %s ago.'), human_time_diff( get_option('akismet_connectivity_time') ) ); ?></p>
  189. <p class="submit"><input type="submit" name="check" value="<?php _e('Check network status &raquo;'); ?>" /></p>
  190. </form>
  191. </div>
  192. </div>
  193. <?php
  194. }
  195. function akismet_stats_page() {
  196. if ( function_exists('add_submenu_page') )
  197. add_submenu_page('index.php', __('Akismet Stats'), __('Akismet Stats'), 'manage_options', 'akismet-stats-display', 'akismet_stats_display');
  198. }
  199. function akismet_stats_script() {
  200. ?>
  201. <script type="text/javascript">
  202. function resizeIframe() {
  203. var height = document.documentElement.clientHeight;
  204. height -= document.getElementById('akismet-stats-frame').offsetTop;
  205. height += 100; // magic padding
  206. document.getElementById('akismet-stats-frame').style.height = height +"px";
  207. };
  208. function resizeIframeInit() {
  209. document.getElementById('akismet-stats-frame').onload = resizeIframe;
  210. window.onresize = resizeIframe;
  211. }
  212. addLoadEvent(resizeIframeInit);
  213. </script><?php
  214. }
  215. function akismet_stats_display() {
  216. global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
  217. $blog = urlencode( get_option('home') );
  218. $url = "http://".akismet_get_key().".web.akismet.com/1.0/user-stats.php?blog={$blog}";
  219. ?>
  220. <div class="wrap">
  221. <iframe src="<?php echo $url; ?>" width="100%" height="100%" frameborder="0" id="akismet-stats-frame"></iframe>
  222. </div>
  223. <?php
  224. }
  225. function akismet_get_key() {
  226. global $wpcom_api_key;
  227. if ( !empty($wpcom_api_key) )
  228. return $wpcom_api_key;
  229. return get_option('wordpress_api_key');
  230. }
  231. function akismet_verify_key( $key, $ip = null ) {
  232. global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
  233. $blog = urlencode( get_option('home') );
  234. if ( $wpcom_api_key )
  235. $key = $wpcom_api_key;
  236. $response = akismet_http_post("key=$key&blog=$blog", 'rest.akismet.com', '/1.1/verify-key', $akismet_api_port, $ip);
  237. if ( !is_array($response) || !isset($response[1]) || $response[1] != 'valid' && $response[1] != 'invalid' )
  238. return 'failed';
  239. return $response[1];
  240. }
  241. // Check connectivity between the WordPress blog and Akismet's servers.
  242. // 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).
  243. function akismet_check_server_connectivity() {
  244. global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
  245. $test_host = 'rest.akismet.com';
  246. // Some web hosts may disable one or both functions
  247. if ( !function_exists('fsockopen') || !function_exists('gethostbynamel') )
  248. return array();
  249. $ips = gethostbynamel($test_host);
  250. if ( !$ips || !is_array($ips) || !count($ips) )
  251. return array();
  252. $servers = array();
  253. foreach ( $ips as $ip ) {
  254. $response = akismet_verify_key( akismet_get_key(), $ip );
  255. // even if the key is invalid, at least we know we have connectivity
  256. if ( $response == 'valid' || $response == 'invalid' )
  257. $servers[$ip] = true;
  258. else
  259. $servers[$ip] = false;
  260. }
  261. return $servers;
  262. }
  263. // Check the server connectivity and store the results in an option.
  264. // Cached results will be used if not older than the specified timeout in seconds; use $cache_timeout = 0 to force an update.
  265. // Returns the same associative array as akismet_check_server_connectivity()
  266. function akismet_get_server_connectivity( $cache_timeout = 86400 ) {
  267. $servers = get_option('akismet_available_servers');
  268. if ( (time() - get_option('akismet_connectivity_time') < $cache_timeout) && $servers !== false )
  269. return $servers;
  270. // There's a race condition here but the effect is harmless.
  271. $servers = akismet_check_server_connectivity();
  272. update_option('akismet_available_servers', $servers);
  273. update_option('akismet_connectivity_time', time());
  274. return $servers;
  275. }
  276. // Returns true if server connectivity was OK at the last check, false if there was a problem that needs to be fixed.
  277. function akismet_server_connectivity_ok() {
  278. // skip the check on WPMU because the status page is hidden
  279. global $wpcom_api_key;
  280. if ( $wpcom_api_key )
  281. return true;
  282. $servers = akismet_get_server_connectivity();
  283. return !( empty($servers) || !count($servers) || count( array_filter($servers) ) < count($servers) );
  284. }
  285. function akismet_admin_warnings() {
  286. global $wpcom_api_key;
  287. if ( !get_option('wordpress_api_key') && !$wpcom_api_key && !isset($_POST['submit']) ) {
  288. function akismet_warning() {
  289. echo "
  290. <div id='akismet-warning' class='updated fade'><p><strong>".__('Akismet is almost ready.')."</strong> ".sprintf(__('You must <a href="%1$s">enter your WordPress.com API key</a> for it to work.'), "plugins.php?page=akismet-key-config")."</p></div>
  291. ";
  292. }
  293. add_action('admin_notices', 'akismet_warning');
  294. return;
  295. } elseif ( get_option('akismet_connectivity_time') && empty($_POST) && is_admin() && !akismet_server_connectivity_ok() ) {
  296. function akismet_warning() {
  297. echo "
  298. <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>
  299. ";
  300. }
  301. add_action('admin_notices', 'akismet_warning');
  302. return;
  303. }
  304. }
  305. function akismet_get_host($host) {
  306. // if all servers are accessible, just return the host name.
  307. // if not, return an IP that was known to be accessible at the last check.
  308. if ( akismet_server_connectivity_ok() ) {
  309. return $host;
  310. } else {
  311. $ips = akismet_get_server_connectivity();
  312. // a firewall may be blocking access to some Akismet IPs
  313. if ( count($ips) > 0 && count(array_filter($ips)) < count($ips) ) {
  314. // use DNS to get current IPs, but exclude any known to be unreachable
  315. $dns = (array)gethostbynamel( rtrim($host, '.') . '.' );
  316. $dns = array_filter($dns);
  317. foreach ( $dns as $ip ) {
  318. if ( array_key_exists( $ip, $ips ) && empty( $ips[$ip] ) )
  319. unset($dns[$ip]);
  320. }
  321. // return a random IP from those available
  322. if ( count($dns) )
  323. return $dns[ array_rand($dns) ];
  324. }
  325. }
  326. // if all else fails try the host name
  327. return $host;
  328. }
  329. // return a comma-separated list of role names for the given user
  330. function akismet_get_user_roles($user_id ) {
  331. $roles = false;
  332. if ( !class_exists('WP_User') )
  333. return false;
  334. if ( $user_id > 0 ) {
  335. $comment_user = new WP_User($user_id);
  336. if ( isset($comment_user->roles) )
  337. $roles = join(',', $comment_user->roles);
  338. }
  339. return $roles;
  340. }
  341. // Returns array with headers in $response[0] and body in $response[1]
  342. function akismet_http_post($request, $host, $path, $port = 80, $ip=null) {
  343. global $wp_version;
  344. $akismet_version = constant('AKISMET_VERSION');
  345. $http_request = "POST $path HTTP/1.0\r\n";
  346. $http_request .= "Host: $host\r\n";
  347. $http_request .= "Content-Type: application/x-www-form-urlencoded; charset=" . get_option('blog_charset') . "\r\n";
  348. $http_request .= "Content-Length: " . strlen($request) . "\r\n";
  349. $http_request .= "User-Agent: WordPress/$wp_version | Akismet/$akismet_version\r\n";
  350. $http_request .= "\r\n";
  351. $http_request .= $request;
  352. $http_host = $host;
  353. // use a specific IP if provided - needed by akismet_check_server_connectivity()
  354. if ( $ip && long2ip(ip2long($ip)) ) {
  355. $http_host = $ip;
  356. } else {
  357. $http_host = akismet_get_host($host);
  358. }
  359. $response = '';
  360. if( false != ( $fs = @fsockopen($http_host, $port, $errno, $errstr, 10) ) ) {
  361. fwrite($fs, $http_request);
  362. while ( !feof($fs) )
  363. $response .= fgets($fs, 1160); // One TCP-IP packet
  364. fclose($fs);
  365. $response = explode("\r\n\r\n", $response, 2);
  366. }
  367. return $response;
  368. }
  369. // filter handler used to return a spam result to pre_comment_approved
  370. function akismet_result_spam( $approved ) {
  371. // bump the counter here instead of when the filter is added to reduce the possibility of overcounting
  372. if ( $incr = apply_filters('akismet_spam_count_incr', 1) )
  373. update_option( 'akismet_spam_count', get_option('akismet_spam_count') + $incr );
  374. return 'spam';
  375. }
  376. function akismet_auto_check_comment( $comment ) {
  377. global $akismet_api_host, $akismet_api_port;
  378. $comment['user_ip'] = $_SERVER['REMOTE_ADDR'];
  379. $comment['user_agent'] = $_SERVER['HTTP_USER_AGENT'];
  380. $comment['referrer'] = $_SERVER['HTTP_REFERER'];
  381. $comment['blog'] = get_option('home');
  382. $comment['blog_lang'] = get_locale();
  383. $comment['blog_charset'] = get_option('blog_charset');
  384. $comment['permalink'] = get_permalink($comment['comment_post_ID']);
  385. $comment['user_role'] = akismet_get_user_roles($comment['user_ID']);
  386. $ignore = array( 'HTTP_COOKIE' );
  387. foreach ( $_SERVER as $key => $value )
  388. if ( !in_array( $key, $ignore ) && is_string($value) )
  389. $comment["$key"] = $value;
  390. $query_string = '';
  391. foreach ( $comment as $key => $data )
  392. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  393. $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
  394. if ( 'true' == $response[1] ) {
  395. // akismet_spam_count will be incremented later by akismet_result_spam()
  396. add_filter('pre_comment_approved', 'akismet_result_spam');
  397. do_action( 'akismet_spam_caught' );
  398. $post = get_post( $comment['comment_post_ID'] );
  399. $last_updated = strtotime( $post->post_modified_gmt );
  400. $diff = time() - $last_updated;
  401. $diff = $diff / 86400;
  402. if ( $post->post_type == 'post' && $diff > 30 && get_option( 'akismet_discard_month' ) == 'true' && empty($comment['user_ID']) ) {
  403. // akismet_result_spam() won't be called so bump the counter here
  404. if ( $incr = apply_filters('akismet_spam_count_incr', 1) )
  405. update_option( 'akismet_spam_count', get_option('akismet_spam_count') + $incr );
  406. die;
  407. }
  408. }
  409. akismet_delete_old();
  410. return $comment;
  411. }
  412. function akismet_delete_old() {
  413. global $wpdb;
  414. $now_gmt = current_time('mysql', 1);
  415. $wpdb->query("DELETE FROM $wpdb->comments WHERE DATE_SUB('$now_gmt', INTERVAL 15 DAY) > comment_date_gmt AND comment_approved = 'spam'");
  416. $n = mt_rand(1, 5000);
  417. if ( $n == 11 ) // lucky number
  418. $wpdb->query("OPTIMIZE TABLE $wpdb->comments");
  419. }
  420. function akismet_submit_nonspam_comment ( $comment_id ) {
  421. global $wpdb, $akismet_api_host, $akismet_api_port, $current_user, $current_site;
  422. $comment_id = (int) $comment_id;
  423. $comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID = '$comment_id'");
  424. if ( !$comment ) // it was deleted
  425. return;
  426. $comment->blog = get_option('home');
  427. $comment->blog_lang = get_locale();
  428. $comment->blog_charset = get_option('blog_charset');
  429. $comment->permalink = get_permalink($comment->comment_post_ID);
  430. if ( is_object($current_user) ) {
  431. $comment->reporter = $current_user->user_login;
  432. }
  433. if ( is_object($current_site) ) {
  434. $comment->site_domain = $current_site->domain;
  435. }
  436. $comment->user_role = akismet_get_user_roles($comment->user_ID);
  437. $query_string = '';
  438. foreach ( $comment as $key => $data )
  439. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  440. $response = akismet_http_post($query_string, $akismet_api_host, "/1.1/submit-ham", $akismet_api_port);
  441. }
  442. function akismet_submit_spam_comment ( $comment_id ) {
  443. global $wpdb, $akismet_api_host, $akismet_api_port, $current_user, $current_site;
  444. $comment_id = (int) $comment_id;
  445. $comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID = '$comment_id'");
  446. if ( !$comment ) // it was deleted
  447. return;
  448. if ( 'spam' != $comment->comment_approved )
  449. return;
  450. $comment->blog = get_option('home');
  451. $comment->blog_lang = get_locale();
  452. $comment->blog_charset = get_option('blog_charset');
  453. $comment->permalink = get_permalink($comment->comment_post_ID);
  454. if ( is_object($current_user) ) {
  455. $comment->reporter = $current_user->user_login;
  456. }
  457. if ( is_object($current_site) ) {
  458. $comment->site_domain = $current_site->domain;
  459. }
  460. $comment->user_role = akismet_get_user_roles($comment->user_ID);
  461. $query_string = '';
  462. foreach ( $comment as $key => $data )
  463. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  464. $response = akismet_http_post($query_string, $akismet_api_host, "/1.1/submit-spam", $akismet_api_port);
  465. }
  466. add_action('preprocess_comment', 'akismet_auto_check_comment', 1);
  467. // For old versions of WP only
  468. function akismet_set_comment_status( $comment_id, $status ) {
  469. if ( $status == 'spam' ) {
  470. akismet_submit_spam_comment( $comment_id );
  471. } elseif ( $status == 'approve' ) {
  472. akismet_submit_nonspam_comment( $comment_id );
  473. }
  474. }
  475. // For WP 2.7+
  476. function akismet_transition_comment_status( $new_status, $old_status, $comment ) {
  477. if ( $new_status == $old_status )
  478. return;
  479. if ( $new_status == 'spam' ) {
  480. akismet_submit_spam_comment( $comment->comment_ID );
  481. } elseif ( $old_status == 'spam' && ( $new_status == 'approved' || $new_status == 'unapproved' ) ) {
  482. akismet_submit_nonspam_comment( $comment->comment_ID );
  483. }
  484. }
  485. function akismet_spamtoham( $comment ) { akismet_submit_nonspam_comment( $comment->comment_ID ); }
  486. if ( function_exists( 'wp_transition_comment_status' ) ) {
  487. add_action( 'transition_comment_status', 'akismet_transition_comment_status', 10, 3 );
  488. } else {
  489. add_action('wp_set_comment_status', 'akismet_set_comment_status', 10, 2);
  490. add_action('edit_comment', 'akismet_submit_spam_comment');
  491. add_filter( 'comment_spam_to_approved', 'akismet_spamtoham' );
  492. add_filter( 'comment_spam_to_unapproved', 'akismet_spamtoham' );
  493. }
  494. // Total spam in queue
  495. // get_option( 'akismet_spam_count' ) is the total caught ever
  496. function akismet_spam_count( $type = false ) {
  497. global $wpdb;
  498. if ( !$type ) { // total
  499. $count = wp_cache_get( 'akismet_spam_count', 'widget' );
  500. if ( false === $count ) {
  501. if ( function_exists('wp_count_comments') ) {
  502. $count = wp_count_comments();
  503. $count = $count->spam;
  504. } else {
  505. $count = (int) $wpdb->get_var("SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_approved = 'spam'");
  506. }
  507. wp_cache_set( 'akismet_spam_count', $count, 'widget', 3600 );
  508. }
  509. return $count;
  510. } elseif ( 'comments' == $type || 'comment' == $type ) { // comments
  511. $type = '';
  512. } else { // pingback, trackback, ...
  513. $type = $wpdb->escape( $type );
  514. }
  515. return (int) $wpdb->get_var("SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_approved = 'spam' AND comment_type='$type'");
  516. }
  517. function akismet_spam_comments( $type = false, $page = 1, $per_page = 50 ) {
  518. global $wpdb;
  519. $page = (int) $page;
  520. if ( $page < 2 )
  521. $page = 1;
  522. $per_page = (int) $per_page;
  523. if ( $per_page < 1 )
  524. $per_page = 50;
  525. $start = ( $page - 1 ) * $per_page;
  526. $end = $start + $per_page;
  527. if ( $type ) {
  528. if ( 'comments' == $type || 'comment' == $type )
  529. $type = '';
  530. else
  531. $type = $wpdb->escape( $type );
  532. return $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = 'spam' AND comment_type='$type' ORDER BY comment_date DESC LIMIT $start, $end");
  533. }
  534. // All
  535. return $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = 'spam' ORDER BY comment_date DESC LIMIT $start, $end");
  536. }
  537. // Totals for each comment type
  538. // returns array( type => count, ... )
  539. function akismet_spam_totals() {
  540. global $wpdb;
  541. $totals = $wpdb->get_results( "SELECT comment_type, COUNT(*) AS cc FROM $wpdb->comments WHERE comment_approved = 'spam' GROUP BY comment_type" );
  542. $return = array();
  543. foreach ( $totals as $total )
  544. $return[$total->comment_type ? $total->comment_type : 'comment'] = $total->cc;
  545. return $return;
  546. }
  547. function akismet_manage_page() {
  548. global $wpdb, $submenu, $wp_db_version;
  549. // WP 2.7 has its own spam management page
  550. if ( 8645 <= $wp_db_version )
  551. return;
  552. $count = sprintf(__('Akismet Spam (%s)'), akismet_spam_count());
  553. if ( isset( $submenu['edit-comments.php'] ) )
  554. add_submenu_page('edit-comments.php', __('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught' );
  555. elseif ( function_exists('add_management_page') )
  556. add_management_page(__('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught');
  557. }
  558. function akismet_caught() {
  559. global $wpdb, $comment, $akismet_caught, $akismet_nonce;
  560. akismet_recheck_queue();
  561. if (isset($_POST['submit']) && 'recover' == $_POST['action'] && ! empty($_POST['not_spam'])) {
  562. check_admin_referer( $akismet_nonce );
  563. if ( function_exists('current_user_can') && !current_user_can('moderate_comments') )
  564. die(__('You do not have sufficient permission to moderate comments.'));
  565. $i = 0;
  566. foreach ($_POST['not_spam'] as $comment):
  567. $comment = (int) $comment;
  568. if ( function_exists('wp_set_comment_status') )
  569. wp_set_comment_status($comment, 'approve');
  570. else
  571. $wpdb->query("UPDATE $wpdb->comments SET comment_approved = '1' WHERE comment_ID = '$comment'");
  572. akismet_submit_nonspam_comment($comment);
  573. ++$i;
  574. endforeach;
  575. $to = add_query_arg( 'recovered', $i, $_SERVER['HTTP_REFERER'] );
  576. wp_redirect( $to );
  577. exit;
  578. }
  579. if ('delete' == $_POST['action']) {
  580. check_admin_referer( $akismet_nonce );
  581. if ( function_exists('current_user_can') && !current_user_can('moderate_comments') )
  582. die(__('You do not have sufficient permission to moderate comments.'));
  583. $delete_time = $wpdb->escape( $_POST['display_time'] );
  584. $nuked = $wpdb->query( "DELETE FROM $wpdb->comments WHERE comment_approved = 'spam' AND '$delete_time' > comment_date_gmt" );
  585. wp_cache_delete( 'akismet_spam_count', 'widget' );
  586. $to = add_query_arg( 'deleted', 'all', $_SERVER['HTTP_REFERER'] );
  587. wp_redirect( $to );
  588. exit;
  589. }
  590. if ( isset( $_GET['recovered'] ) ) {
  591. $i = (int) $_GET['recovered'];
  592. echo '<div class="updated"><p>' . sprintf(__('%1$s comments recovered.'), $i) . "</p></div>";
  593. }
  594. if (isset( $_GET['deleted'] ) )
  595. echo '<div class="updated"><p>' . __('All spam deleted.') . '</p></div>';
  596. if ( isset( $GLOBALS['submenu']['edit-comments.php'] ) )
  597. $link = 'edit-comments.php';
  598. else
  599. $link = 'edit.php';
  600. ?>
  601. <style type="text/css">
  602. .akismet-tabs {
  603. list-style: none;
  604. margin: 0;
  605. padding: 0;
  606. clear: both;
  607. border-bottom: 1px solid #ccc;
  608. height: 31px;
  609. margin-bottom: 20px;
  610. background: #ddd;
  611. border-top: 1px solid #bdbdbd;
  612. }
  613. .akismet-tabs li {
  614. float: left;
  615. margin: 5px 0 0 20px;
  616. }
  617. .akismet-tabs a {
  618. display: block;
  619. padding: 4px .5em 3px;
  620. border-bottom: none;
  621. color: #036;
  622. }
  623. .akismet-tabs .active a {
  624. background: #fff;
  625. border: 1px solid #ccc;
  626. border-bottom: none;
  627. color: #000;
  628. font-weight: bold;
  629. padding-bottom: 4px;
  630. }
  631. #akismetsearch {
  632. float: right;
  633. margin-top: -.5em;
  634. }
  635. #akismetsearch p {
  636. margin: 0;
  637. padding: 0;
  638. }
  639. </style>
  640. <div class="wrap">
  641. <h2><?php _e('Caught Spam') ?></h2>
  642. <?php
  643. $count = get_option( 'akismet_spam_count' );
  644. if ( $count ) {
  645. ?>
  646. <p><?php printf(__('Akismet has caught <strong>%1$s spam</strong> for you since you first installed it.'), number_format_i18n($count) ); ?></p>
  647. <?php
  648. }
  649. $spam_count = akismet_spam_count();
  650. if ( 0 == $spam_count ) {
  651. echo '<p>'.__('You have no spam currently in the queue. Must be your lucky day. :)').'</p>';
  652. echo '</div>';
  653. } else {
  654. echo '<p>'.__('You can delete all of the spam from your database with a single click. This operation cannot be undone, so you may wish to check to ensure that no legitimate comments got through first. Spam is automatically deleted after 15 days, so don&#8217;t sweat it.').'</p>';
  655. ?>
  656. <?php if ( !isset( $_POST['s'] ) ) { ?>
  657. <form method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
  658. <?php akismet_nonce_field($akismet_nonce) ?>
  659. <input type="hidden" name="action" value="delete" />
  660. <?php printf(__('There are currently %1$s comments identified as spam.'), $spam_count); ?>&nbsp; &nbsp; <input type="submit" class="button delete" name="Submit" value="<?php _e('Delete all'); ?>" />
  661. <input type="hidden" name="display_time" value="<?php echo current_time('mysql', 1); ?>" />
  662. </form>
  663. <?php } ?>
  664. </div>
  665. <div class="wrap">
  666. <?php if ( isset( $_POST['s'] ) ) { ?>
  667. <h2><?php _e('Search'); ?></h2>
  668. <?php } else { ?>
  669. <?php echo '<p>'.__('These are the latest comments identified as spam by Akismet. If you see any mistakes, simply mark the comment as "not spam" and Akismet will learn from the submission. If you wish to recover a comment from spam, simply select the comment, and click Not Spam. After 15 days we clean out the junk for you.').'</p>'; ?>
  670. <?php } ?>
  671. <?php
  672. if ( isset( $_POST['s'] ) ) {
  673. $s = $wpdb->escape($_POST['s']);
  674. $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE
  675. (comment_author LIKE '%$s%' OR
  676. comment_author_email LIKE '%$s%' OR
  677. comment_author_url LIKE ('%$s%') OR
  678. comment_author_IP LIKE ('%$s%') OR
  679. comment_content LIKE ('%$s%') ) AND
  680. comment_approved = 'spam'
  681. ORDER BY comment_date DESC");
  682. } else {
  683. if ( isset( $_GET['apage'] ) )
  684. $page = (int) $_GET['apage'];
  685. else
  686. $page = 1;
  687. if ( $page < 2 )
  688. $page = 1;
  689. $current_type = false;
  690. if ( isset( $_GET['ctype'] ) )
  691. $current_type = preg_replace( '|[^a-z]|', '', $_GET['ctype'] );
  692. $comments = akismet_spam_comments( $current_type, $page );
  693. $total = akismet_spam_count( $current_type );
  694. $totals = akismet_spam_totals();
  695. ?>
  696. <ul class="akismet-tabs">
  697. <li <?php if ( !isset( $_GET['ctype'] ) ) echo ' class="active"'; ?>><a href="edit-comments.php?page=akismet-admin"><?php _e('All'); ?></a></li>
  698. <?php
  699. foreach ( $totals as $type => $type_count ) {
  700. if ( 'comment' == $type ) {
  701. $type = 'comments';
  702. $show = __('Comments');
  703. } else {
  704. $show = ucwords( $type );
  705. }
  706. $type_count = number_format_i18n( $type_count );
  707. $extra = $current_type === $type ? ' class="active"' : '';
  708. echo "<li $extra><a href='edit-comments.php?page=akismet-admin&amp;ctype=$type'>$show ($type_count)</a></li>";
  709. }
  710. do_action( 'akismet_tabs' ); // so plugins can add more tabs easily
  711. ?>
  712. </ul>
  713. <?php
  714. }
  715. if ($comments) {
  716. ?>
  717. <form method="post" action="<?php echo attribute_escape("$link?page=akismet-admin"); ?>" id="akismetsearch">
  718. <p> <input type="text" name="s" value="<?php if (isset($_POST['s'])) echo attribute_escape($_POST['s']); ?>" size="17" />
  719. <input type="submit" class="button" name="submit" value="<?php echo attribute_escape(__('Search Spam &raquo;')) ?>" /> </p>
  720. </form>
  721. <?php if ( $total > 50 ) {
  722. $total_pages = ceil( $total / 50 );
  723. $r = '';
  724. if ( 1 < $page ) {
  725. $args['apage'] = ( 1 == $page - 1 ) ? '' : $page - 1;
  726. $r .= '<a class="prev" href="' . clean_url(add_query_arg( $args )) . '">'. __('&laquo; Previous Page') .'</a>' . "\n";
  727. }
  728. if ( ( $total_pages = ceil( $total / 50 ) ) > 1 ) {
  729. for ( $page_num = 1; $page_num <= $total_pages; $page_num++ ) :
  730. if ( $page == $page_num ) :
  731. $r .= "<strong>$page_num</strong>\n";
  732. else :
  733. $p = false;
  734. if ( $page_num < 3 || ( $page_num >= $page - 3 && $page_num <= $page + 3 ) || $page_num > $total_pages - 3 ) :
  735. $args['apage'] = ( 1 == $page_num ) ? '' : $page_num;
  736. $r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . ( $page_num ) . "</a>\n";
  737. $in = true;
  738. elseif ( $in == true ) :
  739. $r .= "...\n";
  740. $in = false;
  741. endif;
  742. endif;
  743. endfor;
  744. }
  745. if ( ( $page ) * 50 < $total || -1 == $total ) {
  746. $args['apage'] = $page + 1;
  747. $r .= '<a class="next" href="' . clean_url(add_query_arg($args)) . '">'. __('Next Page &raquo;') .'</a>' . "\n";
  748. }
  749. echo "<p>$r</p>";
  750. ?>
  751. <?php } ?>
  752. <form style="clear: both;" method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
  753. <?php akismet_nonce_field($akismet_nonce) ?>
  754. <input type="hidden" name="action" value="recover" />
  755. <ul id="spam-list" class="commentlist" style="list-style: none; margin: 0; padding: 0;">
  756. <?php
  757. $i = 0;
  758. foreach($comments as $comment) {
  759. $i++;
  760. $comment_date = mysql2date(get_option("date_format") . " @ " . get_option("time_format"), $comment->comment_date);
  761. $post = get_post($comment->comment_post_ID);
  762. $post_title = $post->post_title;
  763. if ($i % 2) $class = 'class="alternate"';
  764. else $class = '';
  765. echo "\n\t<li id='comment-$comment->comment_ID' $class>";
  766. ?>
  767. <p><strong><?php comment_author() ?></strong> <?php if ($comment->comment_author_email) { ?>| <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_url && 'http://' != $comment->comment_author_url) { ?> | <?php comment_author_url_link() ?> <?php } ?>| <?php _e('IP:') ?> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p>
  768. <?php comment_text() ?>
  769. <p><label for="spam-<?php echo $comment->comment_ID; ?>">
  770. <input type="checkbox" id="spam-<?php echo $comment->comment_ID; ?>" name="not_spam[]" value="<?php echo $comment->comment_ID; ?>" />
  771. <?php _e('Not Spam') ?></label> &#8212; <?php comment_date('M j, g:i A'); ?> &#8212; [
  772. <?php
  773. $post = get_post($comment->comment_post_ID);
  774. $post_title = wp_specialchars( $post->post_title, 'double' );
  775. $post_title = ('' == $post_title) ? "# $comment->comment_post_ID" : $post_title;
  776. ?>
  777. <a href="<?php echo get_permalink($comment->comment_post_ID); ?>" title="<?php echo $post_title; ?>"><?php _e('View Post') ?></a> ] </p>
  778. <?php
  779. }
  780. ?>
  781. </ul>
  782. <?php if ( $total > 50 ) {
  783. $total_pages = ceil( $total / 50 );
  784. $r = '';
  785. if ( 1 < $page ) {
  786. $args['apage'] = ( 1 == $page - 1 ) ? '' : $page - 1;
  787. $r .= '<a class="prev" href="' . clean_url(add_query_arg( $args )) . '">'. __('&laquo; Previous Page') .'</a>' . "\n";
  788. }
  789. if ( ( $total_pages = ceil( $total / 50 ) ) > 1 ) {
  790. for ( $page_num = 1; $page_num <= $total_pages; $page_num++ ) :
  791. if ( $page == $page_num ) :
  792. $r .= "<strong>$page_num</strong>\n";
  793. else :
  794. $p = false;
  795. if ( $page_num < 3 || ( $page_num >= $page - 3 && $page_num <= $page + 3 ) || $page_num > $total_pages - 3 ) :
  796. $args['apage'] = ( 1 == $page_num ) ? '' : $page_num;
  797. $r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . ( $page_num ) . "</a>\n";
  798. $in = true;
  799. elseif ( $in == true ) :
  800. $r .= "...\n";
  801. $in = false;
  802. endif;
  803. endif;
  804. endfor;
  805. }
  806. if ( ( $page ) * 50 < $total || -1 == $total ) {
  807. $args['apage'] = $page + 1;
  808. $r .= '<a class="next" href="' . clean_url(add_query_arg($args)) . '">'. __('Next Page &raquo;') .'</a>' . "\n";
  809. }
  810. echo "<p>$r</p>";
  811. }
  812. ?>
  813. <p class="submit">
  814. <input type="submit" name="submit" value="<?php echo attribute_escape(__('De-spam marked comments &raquo;')); ?>" />
  815. </p>
  816. <p><?php _e('Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better.'); ?></p>
  817. </form>
  818. <?php
  819. } else {
  820. ?>
  821. <p><?php _e('No results found.'); ?></p>
  822. <?php } ?>
  823. <?php if ( !isset( $_POST['s'] ) ) { ?>
  824. <form method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
  825. <?php akismet_nonce_field($akismet_nonce) ?>
  826. <p><input type="hidden" name="action" value="delete" />
  827. <?php printf(__('There are currently %1$s comments identified as spam.'), $spam_count); ?>&nbsp; &nbsp; <input type="submit" name="Submit" class="button" value="<?php echo attribute_escape(__('Delete all')); ?>" />
  828. <input type="hidden" name="display_time" value="<?php echo current_time('mysql', 1); ?>" /></p>
  829. </form>
  830. <?php } ?>
  831. </div>
  832. <?php
  833. }
  834. }
  835. add_action('admin_menu', 'akismet_manage_page');
  836. // WP < 2.5
  837. function akismet_stats() {
  838. if ( !function_exists('did_action') || did_action( 'rightnow_end' ) ) // We already displayed this info in the "Right Now" section
  839. return;
  840. if ( !$count = get_option('akismet_spam_count') )
  841. return;
  842. $path = plugin_basename(__FILE__);
  843. echo '<h3>'.__('Spam').'</h3>';
  844. global $submenu;
  845. if ( isset( $submenu['edit-comments.php'] ) )
  846. $link = 'edit-comments.php';
  847. else
  848. $link = 'edit.php';
  849. 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>';
  850. }
  851. add_action('activity_box_end', 'akismet_stats');
  852. // WP 2.5+
  853. function akismet_rightnow() {
  854. global $submenu, $wp_db_version;
  855. if ( 8645 < $wp_db_version ) // 2.7
  856. $link = 'edit-comments.php?comment_status=spam';
  857. elseif ( isset( $submenu['edit-comments.php'] ) )
  858. $link = 'edit-comments.php?page=akismet-admin';
  859. else
  860. $link = 'edit.php?page=akismet-admin';
  861. if ( $count = get_option('akismet_spam_count') ) {
  862. $intro = sprintf( __ngettext(
  863. '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comment already,',
  864. '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comments already,',
  865. $count
  866. ), 'http://akismet.com/', number_format_i18n( $count ) );
  867. } else {
  868. $intro = sprintf( __('<a href="%1$s">Akismet</a> blocks spam from getting to your blog,'), 'http://akismet.com/' );
  869. }
  870. if ( $queue_count = akismet_spam_count() ) {
  871. $queue_text = sprintf( __ngettext(
  872. 'and there\'s <a href="%2$s">%1$s comment</a> in your spam queue right now.',
  873. 'and there are <a href="%2$s">%1$s comments</a> in your spam queue right now.',
  874. $queue_count
  875. ), number_format_i18n( $queue_count ), clean_url($link) );
  876. } else {
  877. $queue_text = sprintf( __( "but there's nothing in your <a href='%1\$s'>spam queue</a> at the moment." ), clean_url($link) );
  878. }
  879. $text = sprintf( _c( '%1$s %2$s|akismet_rightnow' ), $intro, $queue_text );
  880. echo "<p class='akismet-right-now'>$text</p>\n";
  881. }
  882. add_action('rightnow_end', 'akismet_rightnow');
  883. // For WP <= 2.3.x
  884. global $pagenow;
  885. if ( 'moderation.php' == $pagenow ) {
  886. function akismet_recheck_button( $page ) {
  887. global $submenu;
  888. if ( isset( $submenu['edit-comments.php'] ) )
  889. $link = 'edit-comments.php';
  890. else
  891. $link = 'edit.php';
  892. $button = "<a href='$link?page=akismet-admin&amp;recheckqueue=true&amp;noheader=true' style='display: block; width: 100px; position: absolute; right: 7%; padding: 5px; font-size: 14px; text-decoration: underline; background: #fff; border: 1px solid #ccc;'>" . __('Recheck Queue for Spam') . "</a>";
  893. $page = str_replace( '<div class="wrap">', '<div class="wrap">' . $button, $page );
  894. return $page;
  895. }
  896. if ( $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '0'" ) )
  897. ob_start( 'akismet_recheck_button' );
  898. }
  899. // For WP >= 2.5
  900. function akismet_check_for_spam_button($comment_status) {
  901. if ( 'approved' == $comment_status )
  902. return;
  903. if ( function_exists('plugins_url') )
  904. $link = 'admin.php?action=akismet_recheck_queue';
  905. else
  906. $link = 'edit-comments.php?page=akismet-admin&amp;recheckqueue=true&amp;noheader=true';
  907. echo "</div><div class='alignleft'><a class='button-secondary checkforspam' href='$link'>" . __('Check for Spam') . "</a>";
  908. }
  909. add_action('manage_comments_nav', 'akismet_check_for_spam_button');
  910. function akismet_recheck_queue() {
  911. global $wpdb, $akismet_api_host, $akismet_api_port;
  912. if ( ! ( isset( $_GET['recheckqueue'] ) || ( isset( $_REQUEST['action'] ) && 'akismet_recheck_queue' == $_REQUEST['action'] ) ) )
  913. return;
  914. $moderation = $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = '0'", ARRAY_A );
  915. foreach ( (array) $moderation as $c ) {
  916. $c['user_ip'] = $c['comment_author_IP'];
  917. $c['user_agent'] = $c['comment_agent'];
  918. $c['referrer'] = '';
  919. $c['blog'] = get_option('home');
  920. $c['blog_lang'] = get_locale();
  921. $c['blog_charset'] = get_option('blog_charset');
  922. $c['permalink'] = get_permalink($c['comment_post_ID']);
  923. $c['user_role'] = akismet_get_user_roles($c['user_ID']);
  924. $id = (int) $c['comment_ID'];
  925. $query_string = '';
  926. foreach ( $c as $key => $data )
  927. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  928. $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
  929. if ( 'true' == $response[1] ) {
  930. $wpdb->query( "UPDATE $wpdb->comments SET comment_approved = 'spam' WHERE comment_ID = $id" );
  931. }
  932. }
  933. wp_redirect( $_SERVER['HTTP_REFERER'] );
  934. exit;
  935. }
  936. add_action('admin_action_akismet_recheck_queue', 'akismet_recheck_queue');
  937. function akismet_check_db_comment( $id ) {
  938. global $wpdb, $akismet_api_host, $akismet_api_port;
  939. $id = (int) $id;
  940. $c = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID = '$id'", ARRAY_A );
  941. if ( !$c )
  942. return;
  943. $c['user_ip'] = $c['comment_author_IP'];
  944. $c['user_agent'] = $c['comment_agent'];
  945. $c['referrer'] = '';
  946. $c['blog'] = get_option('home');
  947. $c['blog_lang'] = get_locale();
  948. $c['blog_charset'] = get_option('blog_charset');
  949. $c['permalink'] = get_permalink($c['comment_post_ID']);
  950. $id = $c['comment_ID'];
  951. $query_string = '';
  952. foreach ( $c as $key => $data )
  953. $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  954. $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
  955. return $response[1];
  956. }
  957. // This option causes tons of FPs, was removed in 2.1
  958. function akismet_kill_proxy_check( $option ) { return 0; }
  959. add_filter('option_open_proxy_check', 'akismet_kill_proxy_check');
  960. // Widget stuff
  961. function widget_akismet_register() {
  962. if ( function_exists('register_sidebar_widget') ) :
  963. function widget_akismet($args) {
  964. extract($args);
  965. $options = get_option('widget_akismet');
  966. $count = number_format_i18n(get_option('akismet_spam_count'));
  967. ?>
  968. <?php echo $before_widget; ?>
  969. <?php echo $before_title . $options['title'] . $after_title; ?>
  970. <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' ), '<div id="akismet1"><span id="akismetcount">' . $count . '</span>', '<span id="akismetsc">', '</span></div>', '<div id="akismet2"><span id="akismetbb">', '</span>', '<span id="akismeta">', '</span></div>' ); ?></a></div></div>
  971. <?php echo $after_widget; ?>
  972. <?php
  973. }
  974. function widget_akismet_style() {
  975. ?>
  976. <style type="text/css">
  977. #aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
  978. #aka:hover{border:none;text-decoration:none}
  979. #aka:hover #akismet1{display:none}
  980. #aka:hover #akismet2,#akismet1{display:block}
  981. #akismet2{display:none;padding-top:2px}
  982. #akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
  983. #akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
  984. #akismetwrap #akismetstats{background:url(<?php echo get_option('siteurl'); ?>/wp-content/plugins/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}
  985. </style>
  986. <?php
  987. }
  988. function widget_akismet_control() {
  989. $options = $newoptions = get_option('widget_akismet');
  990. if ( $_POST["akismet-submit"] ) {
  991. $newoptions['title'] = strip_tags(stripslashes($_POST["akismet-title"]));
  992. if ( empty($newoptions['title']) ) $newoptions['title'] = 'Spam Blocked';
  993. }
  994. if ( $options != $newoptions ) {
  995. $options = $newoptions;
  996. update_option('widget_akismet', $options);
  997. }
  998. $title = htmlspecialchars($options['title'], ENT_QUOTES);
  999. ?>
  1000. <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>
  1001. <input type="hidden" id="akismet-submit" name="akismet-submit" value="1" />
  1002. <?php
  1003. }
  1004. register_sidebar_widget('Akismet', 'widget_akismet', null, 'akismet');
  1005. register_widget_control('Akismet', 'widget_akismet_control', null, 75, 'akismet');
  1006. if ( is_active_widget('widget_akismet') )
  1007. add_action('wp_head', 'widget_akismet_style');
  1008. endif;
  1009. }
  1010. add_action('init', 'widget_akismet_register');
  1011. // Counter for non-widget users
  1012. function akismet_counter() {
  1013. ?>
  1014. <style type="text/css">
  1015. #akismetwrap #aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
  1016. #aka:hover{border:none;text-decoration:none}
  1017. #aka:hover #akismet1{display:none}
  1018. #aka:hover #akismet2,#akismet1{display:block}
  1019. #akismet2{display:none;padding-top:2px}
  1020. #akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
  1021. #akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
  1022. #akismetwrap #akismetstats{background:url(<?php echo get_option('siteurl'); ?>/wp-content/plugins/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}
  1023. </style>
  1024. <?php
  1025. $count = number_format_i18n(get_option('akismet_spam_count'));
  1026. ?>
  1027. <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>
  1028. <?php
  1029. }
  1030. ?>