]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/plugins/akismet/akismet.php
Wordpress 2.6.2
[autoinstalls/wordpress.git] / wp-content / plugins / akismet / akismet.php
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://wordpress.com/api-keys/">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(); ?></code> in your template. See also: <a href="http://wordpress.org/extend/plugins/stats/">WP Stats plugin</a>.
6 Version: 2.1.8
7 Author: Matt Mullenweg
8 Author URI: http://ma.tt/
9 */
10
11 // If you hardcode a WP.com API key here, all key config screens will be hidden
12 $wpcom_api_key = '';
13
14 function akismet_init() {
15         global $wpcom_api_key, $akismet_api_host, $akismet_api_port;
16
17         if ( $wpcom_api_key )
18                 $akismet_api_host = $wpcom_api_key . '.rest.akismet.com';
19         else
20                 $akismet_api_host = get_option('wordpress_api_key') . '.rest.akismet.com';
21
22         $akismet_api_port = 80;
23         add_action('admin_menu', 'akismet_config_page');
24 }
25 add_action('init', 'akismet_init');
26
27 if ( !function_exists('wp_nonce_field') ) {
28         function akismet_nonce_field($action = -1) { return; }
29         $akismet_nonce = -1;
30 } else {
31         function akismet_nonce_field($action = -1) { return wp_nonce_field($action); }
32         $akismet_nonce = 'akismet-update-key';
33 }
34
35 if ( !function_exists('number_format_i18n') ) {
36         function number_format_i18n( $number, $decimals = null ) { return number_format( $number, $decimals ); }
37 }
38
39 function akismet_config_page() {
40         if ( function_exists('add_submenu_page') )
41                 add_submenu_page('plugins.php', __('Akismet Configuration'), __('Akismet Configuration'), 'manage_options', 'akismet-key-config', 'akismet_conf');
42
43 }
44
45 function akismet_conf() {
46         global $akismet_nonce, $wpcom_api_key;
47
48         if ( isset($_POST['submit']) ) {
49                 if ( function_exists('current_user_can') && !current_user_can('manage_options') )
50                         die(__('Cheatin&#8217; uh?'));
51
52                 check_admin_referer( $akismet_nonce );
53                 $key = preg_replace( '/[^a-h0-9]/i', '', $_POST['key'] );
54
55                 if ( empty($key) ) {
56                         $key_status = 'empty';
57                         $ms[] = 'new_key_empty';
58                         delete_option('wordpress_api_key');
59                 } else {
60                         $key_status = akismet_verify_key( $key );
61                 }
62
63                 if ( $key_status == 'valid' ) {
64                         update_option('wordpress_api_key', $key);
65                         $ms[] = 'new_key_valid';
66                 } else if ( $key_status == 'invalid' ) {
67                         $ms[] = 'new_key_invalid';
68                 } else if ( $key_status == 'failed' ) {
69                         $ms[] = 'new_key_failed';
70                 }
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         }
77
78         if ( $key_status != 'valid' ) {
79                 $key = get_option('wordpress_api_key');
80                 if ( empty( $key ) ) {
81                         if ( $key_status != 'failed' ) {
82                                 if ( akismet_verify_key( '1234567890ab' ) == 'failed' )
83                                         $ms[] = 'no_connection';
84                                 else
85                                         $ms[] = 'key_empty';
86                         }
87                         $key_status = 'empty';
88                 } else {
89                         $key_status = akismet_verify_key( $key );
90                 }
91                 if ( $key_status == 'valid' ) {
92                         $ms[] = 'key_valid';
93                 } else if ( $key_status == 'invalid' ) {
94                         delete_option('wordpress_api_key');
95                         $ms[] = 'key_empty';
96                 } else if ( !empty($key) && $key_status == 'failed' ) {
97                         $ms[] = 'key_failed';
98                 }
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://wordpress.com/profile/')),
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 ) ) : ?>
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">WordPress.com</a>.'), 'http://akismet.com/', 'http://wordpress.com/api-keys/'); ?></p>
120
121 <?php akismet_nonce_field($akismet_nonce) ?>
122 <h3><label for="key"><?php _e('WordPress.com API Key'); ?></label></h3>
123 <?php foreach ( $ms as $m ) : ?>
124         <p style="padding: .5em; background-color: #<?php echo $messages[$m]['color']; ?>; color: #fff; font-weight: bold;"><?php echo $messages[$m]['text']; ?></p>
125 <?php endforeach; ?>
126 <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>
127 <?php if ( $invalid_key ) { ?>
128 <h3><?php _e('Why might my key be invalid?'); ?></h3>
129 <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>
130 <?php } ?>
131 <?php } ?>
132 <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>
133         <p class="submit"><input type="submit" name="submit" value="<?php _e('Update options &raquo;'); ?>" /></p>
134 </form>
135 </div>
136 </div>
137 <?php
138 }
139
140 function akismet_verify_key( $key ) {
141         global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
142         $blog = urlencode( get_option('home') );
143         if ( $wpcom_api_key )
144                 $key = $wpcom_api_key;
145         $response = akismet_http_post("key=$key&blog=$blog", 'rest.akismet.com', '/1.1/verify-key', $akismet_api_port);
146         if ( !is_array($response) || !isset($response[1]) || $response[1] != 'valid' && $response[1] != 'invalid' )
147                 return 'failed';
148         return $response[1];
149 }
150
151 if ( !get_option('wordpress_api_key') && !$wpcom_api_key && !isset($_POST['submit']) ) {
152         function akismet_warning() {
153                 echo "
154                 <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>
155                 ";
156         }
157         add_action('admin_notices', 'akismet_warning');
158         return;
159 }
160
161 // Returns array with headers in $response[0] and body in $response[1]
162 function akismet_http_post($request, $host, $path, $port = 80) {
163         global $wp_version;
164
165         $http_request  = "POST $path HTTP/1.0\r\n";
166         $http_request .= "Host: $host\r\n";
167         $http_request .= "Content-Type: application/x-www-form-urlencoded; charset=" . get_option('blog_charset') . "\r\n";
168         $http_request .= "Content-Length: " . strlen($request) . "\r\n";
169         $http_request .= "User-Agent: WordPress/$wp_version | Akismet/2.0\r\n";
170         $http_request .= "\r\n";
171         $http_request .= $request;
172
173         $response = '';
174         if( false != ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) {
175                 fwrite($fs, $http_request);
176
177                 while ( !feof($fs) )
178                         $response .= fgets($fs, 1160); // One TCP-IP packet
179                 fclose($fs);
180                 $response = explode("\r\n\r\n", $response, 2);
181         }
182         return $response;
183 }
184
185 function akismet_auto_check_comment( $comment ) {
186         global $akismet_api_host, $akismet_api_port;
187
188         $comment['user_ip']    = preg_replace( '/[^0-9., ]/', '', $_SERVER['REMOTE_ADDR'] );
189         $comment['user_agent'] = $_SERVER['HTTP_USER_AGENT'];
190         $comment['referrer']   = $_SERVER['HTTP_REFERER'];
191         $comment['blog']       = get_option('home');
192
193         $ignore = array( 'HTTP_COOKIE' );
194
195         foreach ( $_SERVER as $key => $value )
196                 if ( !in_array( $key, $ignore ) )
197                         $comment["$key"] = $value;
198
199         $query_string = '';
200         foreach ( $comment as $key => $data )
201                 $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
202
203         $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
204         if ( 'true' == $response[1] ) {
205                 add_filter('pre_comment_approved', create_function('$a', 'return \'spam\';'));
206                 update_option( 'akismet_spam_count', get_option('akismet_spam_count') + 1 );
207
208                 do_action( 'akismet_spam_caught' );
209
210                 $post = get_post( $comment['comment_post_ID'] );
211                 $last_updated = strtotime( $post->post_modified_gmt );
212                 $diff = time() - $last_updated;
213                 $diff = $diff / 86400;
214
215                 if ( $post->post_type == 'post' && $diff > 30 && get_option( 'akismet_discard_month' ) == 'true' )
216                         die;
217         }
218         akismet_delete_old();
219         return $comment;
220 }
221
222 function akismet_delete_old() {
223         global $wpdb;
224         $now_gmt = current_time('mysql', 1);
225         $wpdb->query("DELETE FROM $wpdb->comments WHERE DATE_SUB('$now_gmt', INTERVAL 15 DAY) > comment_date_gmt AND comment_approved = 'spam'");
226         $n = mt_rand(1, 5000);
227         if ( $n == 11 ) // lucky number
228                 $wpdb->query("OPTIMIZE TABLE $wpdb->comments");
229 }
230
231 function akismet_submit_nonspam_comment ( $comment_id ) {
232         global $wpdb, $akismet_api_host, $akismet_api_port;
233         $comment_id = (int) $comment_id;
234
235         $comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID = '$comment_id'");
236         if ( !$comment ) // it was deleted
237                 return;
238         $comment->blog = get_option('home');
239         $query_string = '';
240         foreach ( $comment as $key => $data )
241                 $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
242         $response = akismet_http_post($query_string, $akismet_api_host, "/1.1/submit-ham", $akismet_api_port);
243 }
244
245 function akismet_submit_spam_comment ( $comment_id ) {
246         global $wpdb, $akismet_api_host, $akismet_api_port;
247         $comment_id = (int) $comment_id;
248
249         $comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID = '$comment_id'");
250         if ( !$comment ) // it was deleted
251                 return;
252         if ( 'spam' != $comment->comment_approved )
253                 return;
254         $comment->blog = get_option('home');
255         $query_string = '';
256         foreach ( $comment as $key => $data )
257                 $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
258
259         $response = akismet_http_post($query_string, $akismet_api_host, "/1.1/submit-spam", $akismet_api_port);
260 }
261
262 add_action('wp_set_comment_status', 'akismet_submit_spam_comment');
263 add_action('edit_comment', 'akismet_submit_spam_comment');
264 add_action('preprocess_comment', 'akismet_auto_check_comment', 1);
265
266 // Total spam in queue
267 // get_option( 'akismet_spam_count' ) is the total caught ever
268 function akismet_spam_count( $type = false ) {
269         global $wpdb;
270
271         if ( !$type ) { // total
272                 $count = wp_cache_get( 'akismet_spam_count', 'widget' );
273                 if ( false === $count ) {
274                         if ( function_exists('wp_count_comments') ) {
275                                 $count = wp_count_comments();
276                                 $count = $count->spam;
277                         } else {
278                                 $count = (int) $wpdb->get_var("SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_approved = 'spam'");
279                         }
280                         wp_cache_set( 'akismet_spam_count', $count, 'widget', 3600 );
281                 }
282                 return $count;
283         } elseif ( 'comments' == $type || 'comment' == $type ) { // comments
284                 $type = '';
285         } else { // pingback, trackback, ...
286                 $type  = $wpdb->escape( $type );
287         }
288
289         return (int) $wpdb->get_var("SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_approved = 'spam' AND comment_type='$type'");
290 }
291
292 function akismet_spam_comments( $type = false, $page = 1, $per_page = 50 ) {
293         global $wpdb;
294
295         $page = (int) $page;
296         if ( $page < 2 )
297                 $page = 1;
298
299         $per_page = (int) $per_page;
300         if ( $per_page < 1 )
301                 $per_page = 50;
302
303         $start = ( $page - 1 ) * $per_page;
304         $end = $start + $per_page;
305
306         if ( $type ) {
307                 if ( 'comments' == $type || 'comment' == $type )
308                         $type = '';
309                 else
310                         $type = $wpdb->escape( $type );
311                 return $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = 'spam' AND comment_type='$type' ORDER BY comment_date DESC LIMIT $start, $end");
312         }
313
314         // All
315         return $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = 'spam' ORDER BY comment_date DESC LIMIT $start, $end");
316 }
317
318 // Totals for each comment type
319 // returns array( type => count, ... )
320 function akismet_spam_totals() {
321         global $wpdb;
322         $totals = $wpdb->get_results( "SELECT comment_type, COUNT(*) AS cc FROM $wpdb->comments WHERE comment_approved = 'spam' GROUP BY comment_type" );
323         $return = array();
324         foreach ( $totals as $total )
325                 $return[$total->comment_type ? $total->comment_type : 'comment'] = $total->cc;
326         return $return;
327 }
328
329 function akismet_manage_page() {
330         global $wpdb, $submenu, $wp_db_version;
331
332         // WP 2.7 has its own spam management page
333         if ( 8645 <= $wp_db_version )
334                 return;
335
336         $count = sprintf(__('Akismet Spam (%s)'), akismet_spam_count());
337         if ( isset( $submenu['edit-comments.php'] ) )
338                 add_submenu_page('edit-comments.php', __('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught' );
339         elseif ( function_exists('add_management_page') )
340                 add_management_page(__('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught');
341 }
342
343 function akismet_caught() {
344         global $wpdb, $comment, $akismet_caught, $akismet_nonce;
345
346         akismet_recheck_queue();
347         if (isset($_POST['submit']) && 'recover' == $_POST['action'] && ! empty($_POST['not_spam'])) {
348                 check_admin_referer( $akismet_nonce );
349                 if ( function_exists('current_user_can') && !current_user_can('moderate_comments') )
350                         die(__('You do not have sufficient permission to moderate comments.'));
351
352                 $i = 0;
353                 foreach ($_POST['not_spam'] as $comment):
354                         $comment = (int) $comment;
355                         if ( function_exists('wp_set_comment_status') )
356                                 wp_set_comment_status($comment, 'approve');
357                         else
358                                 $wpdb->query("UPDATE $wpdb->comments SET comment_approved = '1' WHERE comment_ID = '$comment'");
359                         akismet_submit_nonspam_comment($comment);
360                         ++$i;
361                 endforeach;
362                 $to = add_query_arg( 'recovered', $i, $_SERVER['HTTP_REFERER'] );
363                 wp_redirect( $to );
364                 exit;
365         }
366         if ('delete' == $_POST['action']) {
367                 check_admin_referer( $akismet_nonce );
368                 if ( function_exists('current_user_can') && !current_user_can('moderate_comments') )
369                         die(__('You do not have sufficient permission to moderate comments.'));
370
371                 $delete_time = $wpdb->escape( $_POST['display_time'] );
372                 $nuked = $wpdb->query( "DELETE FROM $wpdb->comments WHERE comment_approved = 'spam' AND '$delete_time' > comment_date_gmt" );
373                 wp_cache_delete( 'akismet_spam_count', 'widget' );
374                 $to = add_query_arg( 'deleted', 'all', $_SERVER['HTTP_REFERER'] );
375                 wp_redirect( $to );
376                 exit;
377         }
378
379 if ( isset( $_GET['recovered'] ) ) {
380         $i = (int) $_GET['recovered'];
381         echo '<div class="updated"><p>' . sprintf(__('%1$s comments recovered.'), $i) . "</p></div>";
382 }
383
384 if (isset( $_GET['deleted'] ) )
385         echo '<div class="updated"><p>' . __('All spam deleted.') . '</p></div>';
386
387 if ( isset( $GLOBALS['submenu']['edit-comments.php'] ) )
388         $link = 'edit-comments.php';
389 else
390         $link = 'edit.php';
391 ?>
392 <style type="text/css">
393 .akismet-tabs {
394         list-style: none;
395         margin: 0;
396         padding: 0;
397         clear: both;
398         border-bottom: 1px solid #ccc;
399         height: 31px;
400         margin-bottom: 20px;
401         background: #ddd;
402         border-top: 1px solid #bdbdbd;
403 }
404 .akismet-tabs li {
405         float: left;
406         margin: 5px 0 0 20px;
407 }
408 .akismet-tabs a {
409         display: block;
410         padding: 4px .5em 3px;
411         border-bottom: none;
412         color: #036;
413 }
414 .akismet-tabs .active a {
415         background: #fff;
416         border: 1px solid #ccc;
417         border-bottom: none;
418         color: #000;
419         font-weight: bold;
420         padding-bottom: 4px;
421 }
422 #akismetsearch {
423         float: right;
424         margin-top: -.5em;
425 }
426
427 #akismetsearch p {
428         margin: 0;
429         padding: 0;
430 }
431 </style>
432 <div class="wrap">
433 <h2><?php _e('Caught Spam') ?></h2>
434 <?php
435 $count = get_option( 'akismet_spam_count' );
436 if ( $count ) {
437 ?>
438 <p><?php printf(__('Akismet has caught <strong>%1$s spam</strong> for you since you first installed it.'), number_format_i18n($count) ); ?></p>
439 <?php
440 }
441
442 $spam_count = akismet_spam_count();
443
444 if ( 0 == $spam_count ) {
445         echo '<p>'.__('You have no spam currently in the queue. Must be your lucky day. :)').'</p>';
446         echo '</div>';
447 } else {
448         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>';
449 ?>
450 <?php if ( !isset( $_POST['s'] ) ) { ?>
451 <form method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
452 <?php akismet_nonce_field($akismet_nonce) ?>
453 <input type="hidden" name="action" value="delete" />
454 <?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'); ?>" />
455 <input type="hidden" name="display_time" value="<?php echo current_time('mysql', 1); ?>" />
456 </form>
457 <?php } ?>
458 </div>
459 <div class="wrap">
460 <?php if ( isset( $_POST['s'] ) ) { ?>
461 <h2><?php _e('Search'); ?></h2>
462 <?php } else { ?>
463 <?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>'; ?>
464 <?php } ?>
465 <?php
466 if ( isset( $_POST['s'] ) ) {
467         $s = $wpdb->escape($_POST['s']);
468         $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments  WHERE
469                 (comment_author LIKE '%$s%' OR
470                 comment_author_email LIKE '%$s%' OR
471                 comment_author_url LIKE ('%$s%') OR
472                 comment_author_IP LIKE ('%$s%') OR
473                 comment_content LIKE ('%$s%') ) AND
474                 comment_approved = 'spam'
475                 ORDER BY comment_date DESC");
476 } else {
477         if ( isset( $_GET['apage'] ) )
478                 $page = (int) $_GET['apage'];
479         else
480                 $page = 1;
481
482         if ( $page < 2 )
483                 $page = 1;
484
485         $current_type = false;
486         if ( isset( $_GET['ctype'] ) )
487                 $current_type = preg_replace( '|[^a-z]|', '', $_GET['ctype'] );
488
489         $comments = akismet_spam_comments( $current_type, $page );
490         $total = akismet_spam_count( $current_type );
491         $totals = akismet_spam_totals();
492 ?>
493 <ul class="akismet-tabs">
494 <li <?php if ( !isset( $_GET['ctype'] ) ) echo ' class="active"'; ?>><a href="edit-comments.php?page=akismet-admin"><?php _e('All'); ?></a></li>
495 <?php
496 foreach ( $totals as $type => $type_count ) {
497         if ( 'comment' == $type ) {
498                 $type = 'comments';
499                 $show = __('Comments');
500         } else {
501                 $show = ucwords( $type );
502         }
503         $type_count = number_format_i18n( $type_count );
504         $extra = $current_type === $type ? ' class="active"' : '';
505         echo "<li $extra><a href='edit-comments.php?page=akismet-admin&amp;ctype=$type'>$show ($type_count)</a></li>";
506 }
507 do_action( 'akismet_tabs' ); // so plugins can add more tabs easily
508 ?>
509 </ul>
510 <?php
511 }
512
513 if ($comments) {
514 ?>
515 <form method="post" action="<?php echo attribute_escape("$link?page=akismet-admin"); ?>" id="akismetsearch">
516 <p>  <input type="text" name="s" value="<?php if (isset($_POST['s'])) echo attribute_escape($_POST['s']); ?>" size="17" />
517   <input type="submit" class="button" name="submit" value="<?php echo attribute_escape(__('Search Spam &raquo;')) ?>"  />  </p>
518 </form>
519 <?php if ( $total > 50 ) {
520 $total_pages = ceil( $total / 50 );
521 $r = '';
522 if ( 1 < $page ) {
523         $args['apage'] = ( 1 == $page - 1 ) ? '' : $page - 1;
524         $r .=  '<a class="prev" href="' . clean_url(add_query_arg( $args )) . '">'. __('&laquo; Previous Page') .'</a>' . "\n";
525 }
526 if ( ( $total_pages = ceil( $total / 50 ) ) > 1 ) {
527         for ( $page_num = 1; $page_num <= $total_pages; $page_num++ ) :
528                 if ( $page == $page_num ) :
529                         $r .=  "<strong>$page_num</strong>\n";
530                 else :
531                         $p = false;
532                         if ( $page_num < 3 || ( $page_num >= $page - 3 && $page_num <= $page + 3 ) || $page_num > $total_pages - 3 ) :
533                                 $args['apage'] = ( 1 == $page_num ) ? '' : $page_num;
534                                 $r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . ( $page_num ) . "</a>\n";
535                                 $in = true;
536                         elseif ( $in == true ) :
537                                 $r .= "...\n";
538                                 $in = false;
539                         endif;
540                 endif;
541         endfor;
542 }
543 if ( ( $page ) * 50 < $total || -1 == $total ) {
544         $args['apage'] = $page + 1;
545         $r .=  '<a class="next" href="' . clean_url(add_query_arg($args)) . '">'. __('Next Page &raquo;') .'</a>' . "\n";
546 }
547 echo "<p>$r</p>";
548 ?>
549
550 <?php } ?>
551 <form style="clear: both;" method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
552 <?php akismet_nonce_field($akismet_nonce) ?>
553 <input type="hidden" name="action" value="recover" />
554 <ul id="spam-list" class="commentlist" style="list-style: none; margin: 0; padding: 0;">
555 <?php
556 $i = 0;
557 foreach($comments as $comment) {
558         $i++;
559         $comment_date = mysql2date(get_option("date_format") . " @ " . get_option("time_format"), $comment->comment_date);
560         $post = get_post($comment->comment_post_ID);
561         $post_title = $post->post_title;
562         if ($i % 2) $class = 'class="alternate"';
563         else $class = '';
564         echo "\n\t<li id='comment-$comment->comment_ID' $class>";
565         ?>
566
567 <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>
568
569 <?php comment_text() ?>
570
571 <p><label for="spam-<?php echo $comment->comment_ID; ?>">
572 <input type="checkbox" id="spam-<?php echo $comment->comment_ID; ?>" name="not_spam[]" value="<?php echo $comment->comment_ID; ?>" />
573 <?php _e('Not Spam') ?></label> &#8212; <?php comment_date('M j, g:i A');  ?> &#8212; [
574 <?php
575 $post = get_post($comment->comment_post_ID);
576 $post_title = wp_specialchars( $post->post_title, 'double' );
577 $post_title = ('' == $post_title) ? "# $comment->comment_post_ID" : $post_title;
578 ?>
579  <a href="<?php echo get_permalink($comment->comment_post_ID); ?>" title="<?php echo $post_title; ?>"><?php _e('View Post') ?></a> ] </p>
580
581
582 <?php
583 }
584 ?>
585 </ul>
586 <?php if ( $total > 50 ) {
587 $total_pages = ceil( $total / 50 );
588 $r = '';
589 if ( 1 < $page ) {
590         $args['apage'] = ( 1 == $page - 1 ) ? '' : $page - 1;
591         $r .=  '<a class="prev" href="' . clean_url(add_query_arg( $args )) . '">'. __('&laquo; Previous Page') .'</a>' . "\n";
592 }
593 if ( ( $total_pages = ceil( $total / 50 ) ) > 1 ) {
594         for ( $page_num = 1; $page_num <= $total_pages; $page_num++ ) :
595                 if ( $page == $page_num ) :
596                         $r .=  "<strong>$page_num</strong>\n";
597                 else :
598                         $p = false;
599                         if ( $page_num < 3 || ( $page_num >= $page - 3 && $page_num <= $page + 3 ) || $page_num > $total_pages - 3 ) :
600                                 $args['apage'] = ( 1 == $page_num ) ? '' : $page_num;
601                                 $r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . ( $page_num ) . "</a>\n";
602                                 $in = true;
603                         elseif ( $in == true ) :
604                                 $r .= "...\n";
605                                 $in = false;
606                         endif;
607                 endif;
608         endfor;
609 }
610 if ( ( $page ) * 50 < $total || -1 == $total ) {
611         $args['apage'] = $page + 1;
612         $r .=  '<a class="next" href="' . clean_url(add_query_arg($args)) . '">'. __('Next Page &raquo;') .'</a>' . "\n";
613 }
614 echo "<p>$r</p>";
615 }
616 ?>
617 <p class="submit">
618 <input type="submit" name="submit" value="<?php echo attribute_escape(__('De-spam marked comments &raquo;')); ?>" />
619 </p>
620 <p><?php _e('Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better.'); ?></p>
621 </form>
622 <?php
623 } else {
624 ?>
625 <p><?php _e('No results found.'); ?></p>
626 <?php } ?>
627
628 <?php if ( !isset( $_POST['s'] ) ) { ?>
629 <form method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
630 <?php akismet_nonce_field($akismet_nonce) ?>
631 <p><input type="hidden" name="action" value="delete" />
632 <?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')); ?>" />
633 <input type="hidden" name="display_time" value="<?php echo current_time('mysql', 1); ?>" /></p>
634 </form>
635 <?php } ?>
636 </div>
637 <?php
638         }
639 }
640
641 add_action('admin_menu', 'akismet_manage_page');
642
643 // WP < 2.5
644 function akismet_stats() {
645         if ( !function_exists('did_action') || did_action( 'rightnow_end' ) ) // We already displayed this info in the "Right Now" section
646                 return;
647         if ( !$count = get_option('akismet_spam_count') )
648                 return;
649         $path = plugin_basename(__FILE__);
650         echo '<h3>'.__('Spam').'</h3>';
651         global $submenu;
652         if ( isset( $submenu['edit-comments.php'] ) )
653                 $link = 'edit-comments.php';
654         else
655                 $link = 'edit.php';
656         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>';
657 }
658
659 add_action('activity_box_end', 'akismet_stats');
660
661 // WP 2.5+
662 function akismet_rightnow() {
663         global $submenu;
664         if ( isset( $submenu['edit-comments.php'] ) )
665                 $link = 'edit-comments.php';
666         else
667                 $link = 'edit.php';
668
669         if ( $count = get_option('akismet_spam_count') ) {
670                 $intro = sprintf( __ngettext(
671                         '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comment already,',
672                         '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comments already,',
673                         $count
674                 ), 'http://akismet.com/', number_format_i18n( $count ) );
675         } else {
676                 $intro = sprintf( __('<a href="%1$s">Akismet</a> blocks spam from getting to your blog,'), 'http://akismet.com/' );
677         }
678
679         if ( $queue_count = akismet_spam_count() ) {
680                 $queue_text = sprintf( __ngettext(
681                         'and there\'s <a href="%2$s">%1$s comment</a> in your spam queue right now.',
682                         'and there are <a href="%2$s">%1$s comments</a> in your spam queue right now.',
683                         $queue_count
684                 ), number_format_i18n( $queue_count ), clean_url("$link?page=akismet-admin") );
685         } else {
686                 $queue_text = sprintf( __( "but there's nothing in your <a href='%1\$s'>spam queue</a> at the moment." ), clean_url("$link?page=akismet-admin") );
687         }
688
689         $text = sprintf( _c( '%1$s %2$s|akismet_rightnow' ), $intro, $queue_text );
690
691         echo "<p class='akismet-right-now'>$text</p>\n";
692 }
693         
694 add_action('rightnow_end', 'akismet_rightnow');
695
696 // For WP <= 2.3.x
697 if ( 'moderation.php' == $pagenow ) {
698         function akismet_recheck_button( $page ) {
699                 global $submenu;
700                 if ( isset( $submenu['edit-comments.php'] ) )
701                         $link = 'edit-comments.php';
702                 else
703                         $link = 'edit.php';
704                 $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>";
705                 $page = str_replace( '<div class="wrap">', '<div class="wrap">' . $button, $page );
706                 return $page;
707         }
708
709         if ( $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '0'" ) )
710                 ob_start( 'akismet_recheck_button' );
711 }
712
713 // For WP >= 2.5
714 function akismet_check_for_spam_button($comment_status) {
715         if ( 'approved' == $comment_status )
716                 return;
717         if ( function_exists('plugins_url') )
718                 $link = 'admin.php?action=akismet_recheck_queue';
719         else
720                 $link = 'edit-comments.php?page=akismet-admin&amp;recheckqueue=true&amp;noheader=true';
721         echo "</div><div class='alignleft'><a class='button-secondary checkforspam' href='$link'>" . __('Check for Spam') . "</a>";
722 }
723 add_action('manage_comments_nav', 'akismet_check_for_spam_button');
724
725 function akismet_recheck_queue() {
726         global $wpdb, $akismet_api_host, $akismet_api_port;
727
728         if ( ! ( isset( $_GET['recheckqueue'] ) || ( isset( $_REQUEST['action'] ) && 'akismet_recheck_queue' == $_REQUEST['action'] ) ) )
729                 return;
730
731         $moderation = $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = '0'", ARRAY_A );
732         foreach ( (array) $moderation as $c ) {
733                 $c['user_ip']    = $c['comment_author_IP'];
734                 $c['user_agent'] = $c['comment_agent'];
735                 $c['referrer']   = '';
736                 $c['blog']       = get_option('home');
737                 $id = (int) $c['comment_ID'];
738
739                 $query_string = '';
740                 foreach ( $c as $key => $data )
741                 $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
742
743                 $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
744                 if ( 'true' == $response[1] ) {
745                         $wpdb->query( "UPDATE $wpdb->comments SET comment_approved = 'spam' WHERE comment_ID = $id" );
746                 }
747         }
748         wp_redirect( $_SERVER['HTTP_REFERER'] );
749         exit;
750 }
751
752 add_action('admin_action_akismet_recheck_queue', 'akismet_recheck_queue');
753
754 function akismet_check_db_comment( $id ) {
755         global $wpdb, $akismet_api_host, $akismet_api_port;
756
757         $id = (int) $id;
758         $c = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID = '$id'", ARRAY_A );
759         if ( !$c )
760                 return;
761
762         $c['user_ip']    = $c['comment_author_IP'];
763         $c['user_agent'] = $c['comment_agent'];
764         $c['referrer']   = '';
765         $c['blog']       = get_option('home');
766         $id = $c['comment_ID'];
767
768         $query_string = '';
769         foreach ( $c as $key => $data )
770         $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
771
772         $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
773         return $response[1];
774 }
775
776 // This option causes tons of FPs, was removed in 2.1
777 function akismet_kill_proxy_check( $option ) { return 0; }
778 add_filter('option_open_proxy_check', 'akismet_kill_proxy_check');
779
780 // Widget stuff
781 function widget_akismet_register() {
782         if ( function_exists('register_sidebar_widget') ) :
783         function widget_akismet($args) {
784                 extract($args);
785                 $options = get_option('widget_akismet');
786                 $count = number_format_i18n(get_option('akismet_spam_count'));
787                 ?>
788                         <?php echo $before_widget; ?>
789                                 <?php echo $before_title . $options['title'] . $after_title; ?>
790                                 <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>
791                         <?php echo $after_widget; ?>
792         <?php
793         }
794
795         function widget_akismet_style() {
796                 ?>
797 <style type="text/css">
798 #aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
799 #aka:hover{border:none;text-decoration:none}
800 #aka:hover #akismet1{display:none}
801 #aka:hover #akismet2,#akismet1{display:block}
802 #akismet2{display:none;padding-top:2px}
803 #akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
804 #akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
805 #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}
806 </style>
807                 <?php
808         }
809
810         function widget_akismet_control() {
811                 $options = $newoptions = get_option('widget_akismet');
812                 if ( $_POST["akismet-submit"] ) {
813                         $newoptions['title'] = strip_tags(stripslashes($_POST["akismet-title"]));
814                         if ( empty($newoptions['title']) ) $newoptions['title'] = 'Spam Blocked';
815                 }
816                 if ( $options != $newoptions ) {
817                         $options = $newoptions;
818                         update_option('widget_akismet', $options);
819                 }
820                 $title = htmlspecialchars($options['title'], ENT_QUOTES);
821         ?>
822                                 <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>
823                                 <input type="hidden" id="akismet-submit" name="akismet-submit" value="1" />
824         <?php
825         }
826
827         register_sidebar_widget('Akismet', 'widget_akismet', null, 'akismet');
828         register_widget_control('Akismet', 'widget_akismet_control', null, 75, 'akismet');
829         if ( is_active_widget('widget_akismet') )
830                 add_action('wp_head', 'widget_akismet_style');
831         endif;
832 }
833
834 add_action('init', 'widget_akismet_register');
835
836 // Counter for non-widget users
837 function akismet_counter() {
838 ?>
839 <style type="text/css">
840 #akismetwrap #aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
841 #aka:hover{border:none;text-decoration:none}
842 #aka:hover #akismet1{display:none}
843 #aka:hover #akismet2,#akismet1{display:block}
844 #akismet2{display:none;padding-top:2px}
845 #akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
846 #akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
847 #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}
848 </style>
849 <?php
850 $count = number_format_i18n(get_option('akismet_spam_count'));
851 ?>
852 <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>
853 <?php
854 }
855
856 ?>