]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/plugins/akismet/akismet.php
Wordpress 2.5.1
[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.4
7 Author: Matt Mullenweg
8 Author URI: http://photomatt.net/
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;
331         $count = sprintf(__('Akismet Spam (%s)'), akismet_spam_count());
332         if ( isset( $submenu['edit-comments.php'] ) )
333                 add_submenu_page('edit-comments.php', __('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught' );
334         elseif ( function_exists('add_management_page') )
335                 add_management_page(__('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught');
336 }
337
338 function akismet_caught() {
339         global $wpdb, $comment, $akismet_caught, $akismet_nonce;
340         akismet_recheck_queue();
341         if (isset($_POST['submit']) && 'recover' == $_POST['action'] && ! empty($_POST['not_spam'])) {
342                 check_admin_referer( $akismet_nonce );
343                 if ( function_exists('current_user_can') && !current_user_can('moderate_comments') )
344                         die(__('You do not have sufficient permission to moderate comments.'));
345
346                 $i = 0;
347                 foreach ($_POST['not_spam'] as $comment):
348                         $comment = (int) $comment;
349                         if ( function_exists('wp_set_comment_status') )
350                                 wp_set_comment_status($comment, 'approve');
351                         else
352                                 $wpdb->query("UPDATE $wpdb->comments SET comment_approved = '1' WHERE comment_ID = '$comment'");
353                         akismet_submit_nonspam_comment($comment);
354                         ++$i;
355                 endforeach;
356                 $to = add_query_arg( 'recovered', $i, $_SERVER['HTTP_REFERER'] );
357                 wp_redirect( $to );
358                 exit;
359         }
360         if ('delete' == $_POST['action']) {
361                 check_admin_referer( $akismet_nonce );
362                 if ( function_exists('current_user_can') && !current_user_can('moderate_comments') )
363                         die(__('You do not have sufficient permission to moderate comments.'));
364
365                 $delete_time = $wpdb->escape( $_POST['display_time'] );
366                 $nuked = $wpdb->query( "DELETE FROM $wpdb->comments WHERE comment_approved = 'spam' AND '$delete_time' > comment_date_gmt" );
367                 wp_cache_delete( 'akismet_spam_count', 'widget' );
368                 $to = add_query_arg( 'deleted', 'all', $_SERVER['HTTP_REFERER'] );
369                 wp_redirect( $to );
370                 exit;
371         }
372
373 if ( isset( $_GET['recovered'] ) ) {
374         $i = (int) $_GET['recovered'];
375         echo '<div class="updated"><p>' . sprintf(__('%1$s comments recovered.'), $i) . "</p></div>";
376 }
377
378 if (isset( $_GET['deleted'] ) )
379         echo '<div class="updated"><p>' . __('All spam deleted.') . '</p></div>';
380
381 if ( isset( $GLOBALS['submenu']['edit-comments.php'] ) )
382         $link = 'edit-comments.php';
383 else
384         $link = 'edit.php';
385 ?>
386 <style type="text/css">
387 .akismet-tabs {
388         list-style: none;
389         margin: 0;
390         padding: 0;
391         clear: both;
392         border-bottom: 1px solid #ccc;
393         height: 31px;
394         margin-bottom: 20px;
395         background: #ddd;
396         border-top: 1px solid #bdbdbd;
397 }
398 .akismet-tabs li {
399         float: left;
400         margin: 5px 0 0 20px;
401 }
402 .akismet-tabs a {
403         display: block;
404         padding: 4px .5em 3px;
405         border-bottom: none;
406         color: #036;
407 }
408 .akismet-tabs .active a {
409         background: #fff;
410         border: 1px solid #ccc;
411         border-bottom: none;
412         color: #000;
413         font-weight: bold;
414         padding-bottom: 4px;
415 }
416 #akismetsearch {
417         float: right;
418         margin-top: -.5em;
419 }
420
421 #akismetsearch p {
422         margin: 0;
423         padding: 0;
424 }
425 </style>
426 <div class="wrap">
427 <h2><?php _e('Caught Spam') ?></h2>
428 <?php
429 $count = get_option( 'akismet_spam_count' );
430 if ( $count ) {
431 ?>
432 <p><?php printf(__('Akismet has caught <strong>%1$s spam</strong> for you since you first installed it.'), number_format_i18n($count) ); ?></p>
433 <?php
434 }
435
436 $spam_count = akismet_spam_count();
437
438 if ( 0 == $spam_count ) {
439         echo '<p>'.__('You have no spam currently in the queue. Must be your lucky day. :)').'</p>';
440         echo '</div>';
441 } else {
442         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>';
443 ?>
444 <?php if ( !isset( $_POST['s'] ) ) { ?>
445 <form method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
446 <?php akismet_nonce_field($akismet_nonce) ?>
447 <input type="hidden" name="action" value="delete" />
448 <?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'); ?>" />
449 <input type="hidden" name="display_time" value="<?php echo current_time('mysql', 1); ?>" />
450 </form>
451 <?php } ?>
452 </div>
453 <div class="wrap">
454 <?php if ( isset( $_POST['s'] ) ) { ?>
455 <h2><?php _e('Search'); ?></h2>
456 <?php } else { ?>
457 <?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>'; ?>
458 <?php } ?>
459 <?php
460 if ( isset( $_POST['s'] ) ) {
461         $s = $wpdb->escape($_POST['s']);
462         $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments  WHERE
463                 (comment_author LIKE '%$s%' OR
464                 comment_author_email LIKE '%$s%' OR
465                 comment_author_url LIKE ('%$s%') OR
466                 comment_author_IP LIKE ('%$s%') OR
467                 comment_content LIKE ('%$s%') ) AND
468                 comment_approved = 'spam'
469                 ORDER BY comment_date DESC");
470 } else {
471         if ( isset( $_GET['apage'] ) )
472                 $page = (int) $_GET['apage'];
473         else
474                 $page = 1;
475
476         if ( $page < 2 )
477                 $page = 1;
478
479         $current_type = false;
480         if ( isset( $_GET['ctype'] ) )
481                 $current_type = preg_replace( '|[^a-z]|', '', $_GET['ctype'] );
482
483         $comments = akismet_spam_comments( $current_type );
484         $total = akismet_spam_count( $current_type );
485         $totals = akismet_spam_totals();
486 ?>
487 <ul class="akismet-tabs">
488 <li <?php if ( !isset( $_GET['ctype'] ) ) echo ' class="active"'; ?>><a href="edit-comments.php?page=akismet-admin"><?php _e('All'); ?></a></li>
489 <?php
490 foreach ( $totals as $type => $type_count ) {
491         if ( 'comment' == $type ) {
492                 $type = 'comments';
493                 $show = __('Comments');
494         } else {
495                 $show = ucwords( $type );
496         }
497         $type_count = number_format_i18n( $type_count );
498         $extra = $current_type === $type ? ' class="active"' : '';
499         echo "<li $extra><a href='edit-comments.php?page=akismet-admin&amp;ctype=$type'>$show ($type_count)</a></li>";
500 }
501 do_action( 'akismet_tabs' ); // so plugins can add more tabs easily
502 ?>
503 </ul>
504 <?php
505 }
506
507 if ($comments) {
508 ?>
509 <form method="post" action="<?php echo attribute_escape("$link?page=akismet-admin"); ?>" id="akismetsearch">
510 <p>  <input type="text" name="s" value="<?php if (isset($_POST['s'])) echo attribute_escape($_POST['s']); ?>" size="17" />
511   <input type="submit" class="button" name="submit" value="<?php echo attribute_escape(__('Search Spam &raquo;')) ?>"  />  </p>
512 </form>
513 <?php if ( $total > 50 ) {
514 $total_pages = ceil( $total / 50 );
515 $r = '';
516 if ( 1 < $page ) {
517         $args['apage'] = ( 1 == $page - 1 ) ? '' : $page - 1;
518         $r .=  '<a class="prev" href="' . clean_url(add_query_arg( $args )) . '">'. __('&laquo; Previous Page') .'</a>' . "\n";
519 }
520 if ( ( $total_pages = ceil( $total / 50 ) ) > 1 ) {
521         for ( $page_num = 1; $page_num <= $total_pages; $page_num++ ) :
522                 if ( $page == $page_num ) :
523                         $r .=  "<strong>$page_num</strong>\n";
524                 else :
525                         $p = false;
526                         if ( $page_num < 3 || ( $page_num >= $page - 3 && $page_num <= $page + 3 ) || $page_num > $total_pages - 3 ) :
527                                 $args['apage'] = ( 1 == $page_num ) ? '' : $page_num;
528                                 $r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . ( $page_num ) . "</a>\n";
529                                 $in = true;
530                         elseif ( $in == true ) :
531                                 $r .= "...\n";
532                                 $in = false;
533                         endif;
534                 endif;
535         endfor;
536 }
537 if ( ( $page ) * 50 < $total || -1 == $total ) {
538         $args['apage'] = $page + 1;
539         $r .=  '<a class="next" href="' . clean_url(add_query_arg($args)) . '">'. __('Next Page &raquo;') .'</a>' . "\n";
540 }
541 echo "<p>$r</p>";
542 ?>
543
544 <?php } ?>
545 <form style="clear: both;" method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
546 <?php akismet_nonce_field($akismet_nonce) ?>
547 <input type="hidden" name="action" value="recover" />
548 <ul id="spam-list" class="commentlist" style="list-style: none; margin: 0; padding: 0;">
549 <?php
550 $i = 0;
551 foreach($comments as $comment) {
552         $i++;
553         $comment_date = mysql2date(get_option("date_format") . " @ " . get_option("time_format"), $comment->comment_date);
554         $post = get_post($comment->comment_post_ID);
555         $post_title = $post->post_title;
556         if ($i % 2) $class = 'class="alternate"';
557         else $class = '';
558         echo "\n\t<li id='comment-$comment->comment_ID' $class>";
559         ?>
560
561 <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>
562
563 <?php comment_text() ?>
564
565 <p><label for="spam-<?php echo $comment->comment_ID; ?>">
566 <input type="checkbox" id="spam-<?php echo $comment->comment_ID; ?>" name="not_spam[]" value="<?php echo $comment->comment_ID; ?>" />
567 <?php _e('Not Spam') ?></label> &#8212; <?php comment_date('M j, g:i A');  ?> &#8212; [
568 <?php
569 $post = get_post($comment->comment_post_ID);
570 $post_title = wp_specialchars( $post->post_title, 'double' );
571 $post_title = ('' == $post_title) ? "# $comment->comment_post_ID" : $post_title;
572 ?>
573  <a href="<?php echo get_permalink($comment->comment_post_ID); ?>" title="<?php echo $post_title; ?>"><?php _e('View Post') ?></a> ] </p>
574
575
576 <?php
577 }
578 ?>
579 </ul>
580 <?php if ( $total > 50 ) {
581 $total_pages = ceil( $total / 50 );
582 $r = '';
583 if ( 1 < $page ) {
584         $args['apage'] = ( 1 == $page - 1 ) ? '' : $page - 1;
585         $r .=  '<a class="prev" href="' . clean_url(add_query_arg( $args )) . '">'. __('&laquo; Previous Page') .'</a>' . "\n";
586 }
587 if ( ( $total_pages = ceil( $total / 50 ) ) > 1 ) {
588         for ( $page_num = 1; $page_num <= $total_pages; $page_num++ ) :
589                 if ( $page == $page_num ) :
590                         $r .=  "<strong>$page_num</strong>\n";
591                 else :
592                         $p = false;
593                         if ( $page_num < 3 || ( $page_num >= $page - 3 && $page_num <= $page + 3 ) || $page_num > $total_pages - 3 ) :
594                                 $args['apage'] = ( 1 == $page_num ) ? '' : $page_num;
595                                 $r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . ( $page_num ) . "</a>\n";
596                                 $in = true;
597                         elseif ( $in == true ) :
598                                 $r .= "...\n";
599                                 $in = false;
600                         endif;
601                 endif;
602         endfor;
603 }
604 if ( ( $page ) * 50 < $total || -1 == $total ) {
605         $args['apage'] = $page + 1;
606         $r .=  '<a class="next" href="' . clean_url(add_query_arg($args)) . '">'. __('Next Page &raquo;') .'</a>' . "\n";
607 }
608 echo "<p>$r</p>";
609 }
610 ?>
611 <p class="submit">
612 <input type="submit" name="submit" value="<?php echo attribute_escape(__('De-spam marked comments &raquo;')); ?>" />
613 </p>
614 <p><?php _e('Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better.'); ?></p>
615 </form>
616 <?php
617 } else {
618 ?>
619 <p><?php _e('No results found.'); ?></p>
620 <?php } ?>
621
622 <?php if ( !isset( $_POST['s'] ) ) { ?>
623 <form method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
624 <?php akismet_nonce_field($akismet_nonce) ?>
625 <p><input type="hidden" name="action" value="delete" />
626 <?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')); ?>" />
627 <input type="hidden" name="display_time" value="<?php echo current_time('mysql', 1); ?>" /></p>
628 </form>
629 <?php } ?>
630 </div>
631 <?php
632         }
633 }
634
635 add_action('admin_menu', 'akismet_manage_page');
636
637 // WP < 2.5
638 function akismet_stats() {
639         if ( !function_exists('did_action') || did_action( 'rightnow_end' ) ) // We already displayed this info in the "Right Now" section
640                 return;
641         if ( !$count = get_option('akismet_spam_count') )
642                 return;
643         $path = plugin_basename(__FILE__);
644         echo '<h3>'.__('Spam').'</h3>';
645         global $submenu;
646         if ( isset( $submenu['edit-comments.php'] ) )
647                 $link = 'edit-comments.php';
648         else
649                 $link = 'edit.php';
650         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>';
651 }
652
653 add_action('activity_box_end', 'akismet_stats');
654
655 // WP 2.5+
656 function akismet_rightnow() {
657         global $submenu;
658         if ( isset( $submenu['edit-comments.php'] ) )
659                 $link = 'edit-comments.php';
660         else
661                 $link = 'edit.php';
662
663         if ( $count = get_option('akismet_spam_count') ) {
664                 $intro = sprintf( __ngettext(
665                         '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comment already,',
666                         '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comments already,',
667                         $count
668                 ), 'http://akismet.com/', number_format_i18n( $count ) );
669         } else {
670                 $intro = sprintf( __('<a href="%1$s">Akismet</a> blocks spam from getting to your blog,'), 'http://akismet.com/' );
671         }
672
673         if ( $queue_count = akismet_spam_count() ) {
674                 $queue_text = sprintf( __ngettext(
675                         'and there\'s <a href="%2$s">%1$s comment</a> in your spam queue right now.',
676                         'and there are <a href="%2$s">%1$s comments</a> in your spam queue right now.',
677                         $queue_count
678                 ), number_format_i18n( $queue_count ), clean_url("$link?page=akismet-admin") );
679         } else {
680                 $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") );
681         }
682
683         $text = sprintf( _c( '%1$s %2$s|akismet_rightnow' ), $intro, $queue_text );
684
685         echo "<p class='akismet-right-now'>$text</p>\n";
686 }
687         
688 add_action('rightnow_end', 'akismet_rightnow');
689
690 // For WP <= 2.3.x
691 if ( 'moderation.php' == $pagenow ) {
692         function akismet_recheck_button( $page ) {
693                 global $submenu;
694                 if ( isset( $submenu['edit-comments.php'] ) )
695                         $link = 'edit-comments.php';
696                 else
697                         $link = 'edit.php';
698                 $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>";
699                 $page = str_replace( '<div class="wrap">', '<div class="wrap">' . $button, $page );
700                 return $page;
701         }
702
703         if ( $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '0'" ) )
704                 ob_start( 'akismet_recheck_button' );
705 }
706
707 // For WP >= 2.5
708 function akismet_check_for_spam_button($comment_status) {
709         if ( 'moderated' != $comment_status )
710                 return;
711         $count = wp_count_comments();
712         if ( !empty($count->moderated ) )
713                 echo "<a href='edit-comments.php?page=akismet-admin&amp;recheckqueue=true&amp;noheader=true'>" . __('Check for Spam') . "</a>";
714 }
715 add_action('manage_comments_nav', 'akismet_check_for_spam_button');
716
717 function akismet_recheck_queue() {
718         global $wpdb, $akismet_api_host, $akismet_api_port;
719
720         if ( !isset( $_GET['recheckqueue'] ) )
721                 return;
722
723         $moderation = $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = '0'", ARRAY_A );
724         foreach ( $moderation as $c ) {
725                 $c['user_ip']    = $c['comment_author_IP'];
726                 $c['user_agent'] = $c['comment_agent'];
727                 $c['referrer']   = '';
728                 $c['blog']       = get_option('home');
729                 $id = (int) $c['comment_ID'];
730
731                 $query_string = '';
732                 foreach ( $c as $key => $data )
733                 $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
734
735                 $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
736                 if ( 'true' == $response[1] ) {
737                         $wpdb->query( "UPDATE $wpdb->comments SET comment_approved = 'spam' WHERE comment_ID = $id" );
738                 }
739         }
740         wp_redirect( $_SERVER['HTTP_REFERER'] );
741         exit;
742 }
743
744 function akismet_check_db_comment( $id ) {
745         global $wpdb, $akismet_api_host, $akismet_api_port;
746
747         $id = (int) $id;
748         $c = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID = '$id'", ARRAY_A );
749         if ( !$c )
750                 return;
751
752         $c['user_ip']    = $c['comment_author_IP'];
753         $c['user_agent'] = $c['comment_agent'];
754         $c['referrer']   = '';
755         $c['blog']       = get_option('home');
756         $id = $c['comment_ID'];
757
758         $query_string = '';
759         foreach ( $c as $key => $data )
760         $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
761
762         $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
763         return $response[1];
764 }
765
766 // This option causes tons of FPs, was removed in 2.1
767 function akismet_kill_proxy_check( $option ) { return 0; }
768 add_filter('option_open_proxy_check', 'akismet_kill_proxy_check');
769
770 // Widget stuff
771 function widget_akismet_register() {
772         if ( function_exists('register_sidebar_widget') ) :
773         function widget_akismet($args) {
774                 extract($args);
775                 $options = get_option('widget_akismet');
776                 $count = number_format_i18n(get_option('akismet_spam_count'));
777                 ?>
778                         <?php echo $before_widget; ?>
779                                 <?php echo $before_title . $options['title'] . $after_title; ?>
780                                 <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>
781                         <?php echo $after_widget; ?>
782         <?php
783         }
784
785         function widget_akismet_style() {
786                 ?>
787 <style type="text/css">
788 #aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
789 #aka:hover{border:none;text-decoration:none}
790 #aka:hover #akismet1{display:none}
791 #aka:hover #akismet2,#akismet1{display:block}
792 #akismet2{display:none;padding-top:2px}
793 #akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
794 #akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
795 #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}
796 </style>
797                 <?php
798         }
799
800         function widget_akismet_control() {
801                 $options = $newoptions = get_option('widget_akismet');
802                 if ( $_POST["akismet-submit"] ) {
803                         $newoptions['title'] = strip_tags(stripslashes($_POST["akismet-title"]));
804                         if ( empty($newoptions['title']) ) $newoptions['title'] = 'Spam Blocked';
805                 }
806                 if ( $options != $newoptions ) {
807                         $options = $newoptions;
808                         update_option('widget_akismet', $options);
809                 }
810                 $title = htmlspecialchars($options['title'], ENT_QUOTES);
811         ?>
812                                 <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>
813                                 <input type="hidden" id="akismet-submit" name="akismet-submit" value="1" />
814         <?php
815         }
816
817         register_sidebar_widget('Akismet', 'widget_akismet', null, 'akismet');
818         register_widget_control('Akismet', 'widget_akismet_control', null, 75, 'akismet');
819         if ( is_active_widget('widget_akismet') )
820                 add_action('wp_head', 'widget_akismet_style');
821         endif;
822 }
823
824 add_action('init', 'widget_akismet_register');
825
826 // Counter for non-widget users
827 function akismet_counter() {
828 ?>
829 <style type="text/css">
830 #akismetwrap #aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
831 #aka:hover{border:none;text-decoration:none}
832 #aka:hover #akismet1{display:none}
833 #aka:hover #akismet2,#akismet1{display:block}
834 #akismet2{display:none;padding-top:2px}
835 #akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
836 #akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
837 #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}
838 </style>
839 <?php
840 $count = number_format_i18n(get_option('akismet_spam_count'));
841 ?>
842 <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>
843 <?php
844 }
845
846 ?>