]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/plugins/akismet/class.akismet-admin.php
WordPress 3.9.2
[autoinstalls/wordpress.git] / wp-content / plugins / akismet / class.akismet-admin.php
1 <?php
2
3 class Akismet_Admin {
4         const NONCE = 'akismet-update-key';
5
6         private static $initiated = false;
7         private static $notices = array();
8
9         public static function init() {
10                 if ( ! self::$initiated ) {
11                         self::init_hooks();
12                 }
13
14                 if ( isset( $_POST['action'] ) && $_POST['action'] == 'enter-key' ) {
15                         self::enter_api_key();
16                 }
17         }
18
19         public static function init_hooks() {
20                 // The standalone stats page was removed in 3.0 for an all-in-one config and stats page.
21                 // Redirect any links that might have been bookmarked or in browser history.
22                 if ( isset( $_GET['page'] ) && 'akismet-stats-display' == $_GET['page'] ) {
23                         wp_safe_redirect( esc_url_raw( self::get_page_url( 'stats' ) ), 301 );
24                         die;
25                 }
26
27                 self::$initiated = true;
28
29                 add_action( 'admin_init', array( 'Akismet_Admin', 'admin_init' ) );
30                 add_action( 'admin_menu', array( 'Akismet_Admin', 'admin_menu' ), 5 ); # Priority 5, so it's called before Jetpack's admin_menu.
31                 add_action( 'admin_notices', array( 'Akismet_Admin', 'display_notice' ) );
32                 add_action( 'admin_enqueue_scripts', array( 'Akismet_Admin', 'load_resources' ) );
33                 add_action( 'activity_box_end', array( 'Akismet_Admin', 'dashboard_stats' ) );
34                 add_action( 'rightnow_end', array( 'Akismet_Admin', 'rightnow_stats' ) );
35                 add_action( 'manage_comments_nav', array( 'Akismet_Admin', 'check_for_spam_button' ) );
36                 add_action( 'admin_action_akismet_recheck_queue', array( 'Akismet_Admin', 'recheck_queue' ) );
37                 add_action( 'wp_ajax_akismet_recheck_queue', array( 'Akismet_Admin', 'recheck_queue' ) );
38                 add_action( 'wp_ajax_comment_author_deurl', array( 'Akismet_Admin', 'remove_comment_author_url' ) );
39                 add_action( 'wp_ajax_comment_author_reurl', array( 'Akismet_Admin', 'add_comment_author_url' ) );
40
41                 add_filter( 'plugin_action_links', array( 'Akismet_Admin', 'plugin_action_links' ), 10, 2 );
42                 add_filter( 'comment_row_actions', array( 'Akismet_Admin', 'comment_row_action' ), 10, 2 );
43                 add_filter( 'comment_text', array( 'Akismet_Admin', 'text_add_link_class' ) );
44                 
45                 add_filter( 'plugin_action_links_'.plugin_basename( plugin_dir_path( __FILE__ ) . 'akismet.php'), array( 'Akismet_Admin', 'admin_plugin_settings_link' ) );
46                 
47                 add_filter( 'wxr_export_skip_commentmeta', array( 'Akismet_Admin', 'exclude_commentmeta_from_export' ), 10, 3 );
48         }
49
50         public static function admin_init() {
51                 load_plugin_textdomain( 'akismet' );
52                 add_meta_box( 'akismet-status', __('Comment History', 'akismet'), array( 'Akismet_Admin', 'comment_status_meta_box' ), 'comment', 'normal' );
53         }
54
55         public static function admin_menu() {
56                 if ( class_exists( 'Jetpack' ) )
57                         add_action( 'jetpack_admin_menu', array( 'Akismet_Admin', 'load_menu' ) );
58                 else
59                         self::load_menu();
60         }
61
62         public static function admin_head() {
63                 if ( !current_user_can( 'manage_options' ) )
64                         return;
65         }
66         
67         public static function admin_plugin_settings_link( $links ) { 
68                 $settings_link = '<a href="'.esc_url( self::get_page_url() ).'">'.__('Settings', 'akismet').'</a>';
69                 array_unshift( $links, $settings_link ); 
70                 return $links; 
71         }
72
73         public static function load_menu() {
74                 if ( class_exists( 'Jetpack' ) )
75                         $hook = add_submenu_page( 'jetpack', __( 'Akismet' , 'akismet'), __( 'Akismet' , 'akismet'), 'manage_options', 'akismet-key-config', array( 'Akismet_Admin', 'display_page' ) );
76                 else
77                         $hook = add_options_page( __('Akismet', 'akismet'), __('Akismet', 'akismet'), 'manage_options', 'akismet-key-config', array( 'Akismet_Admin', 'display_page' ) );
78
79                 if ( version_compare( $GLOBALS['wp_version'], '3.3', '>=' ) ) {
80                         add_action( "load-$hook", array( 'Akismet_Admin', 'admin_help' ) );
81                 }
82         }
83
84         public static function load_resources() {
85                 global $hook_suffix;
86
87                 if ( in_array( $hook_suffix, array(
88                         'index.php', # dashboard
89                         'edit-comments.php',
90                         'comment.php',
91                         'post.php',
92                         'settings_page_akismet-key-config',
93                         'jetpack_page_akismet-key-config',
94                 ) ) ) {
95                         wp_register_style( 'akismet.css', AKISMET__PLUGIN_URL . '_inc/akismet.css', array(), AKISMET_VERSION );
96                         wp_enqueue_style( 'akismet.css');
97
98                         wp_register_script( 'akismet.js', AKISMET__PLUGIN_URL . '_inc/akismet.js', array('jquery','postbox'), AKISMET_VERSION );
99                         wp_enqueue_script( 'akismet.js' );
100                         wp_localize_script( 'akismet.js', 'WPAkismet', array(
101                                 'comment_author_url_nonce' => wp_create_nonce( 'comment_author_url_nonce' ),
102                                 'strings' => array(
103                                         'Remove this URL' => __( 'Remove this URL' , 'akismet'),
104                                         'Removing...'     => __( 'Removing...' , 'akismet'),
105                                         'URL removed'     => __( 'URL removed' , 'akismet'),
106                                         '(undo)'          => __( '(undo)' , 'akismet'),
107                                         'Re-adding...'    => __( 'Re-adding...' , 'akismet'),
108                                 )
109                         ) );
110                 }
111         }
112
113         /**
114          * Add help to the Akismet page
115          *
116          * @return false if not the Akismet page
117          */
118         public static function admin_help() {
119                 $current_screen = get_current_screen();
120
121                 // Screen Content
122                 if ( current_user_can( 'manage_options' ) ) {
123                         if ( !Akismet::get_api_key() || ( isset( $_GET['view'] ) && $_GET['view'] == 'start' ) ) {
124                                 //setup page
125                                 $current_screen->add_help_tab(
126                                         array(
127                                                 'id'            => 'overview',
128                                                 'title'         => __( 'Overview' , 'akismet'),
129                                                 'content'       =>
130                                                         '<p><strong>' . esc_html__( 'Akismet Setup' , 'akismet') . '</strong></p>' .
131                                                         '<p>' . esc_html__( 'Akismet filters out your comment and trackback spam for you, so you can focus on more important things.' , 'akismet') . '</p>' .
132                                                         '<p>' . esc_html__( 'On this page, you are able to setup the Akismet plugin.' , 'akismet') . '</p>',
133                                         )
134                                 );
135
136                                 $current_screen->add_help_tab(
137                                         array(
138                                                 'id'            => 'setup-signup',
139                                                 'title'         => __( 'New to Akismet' , 'akismet'),
140                                                 'content'       =>
141                                                         '<p><strong>' . esc_html__( 'Akismet Setup' , 'akismet') . '</strong></p>' .
142                                                         '<p>' . esc_html__( 'You need to enter an API key to activate the Akismet service on your site.' , 'akismet') . '</p>' .
143                                                         '<p>' . sprintf( __( 'Signup for an account on %s to get an API Key.' , 'akismet'), '<a href="https://akismet.com/plugin-signup/" target="_blank">Akismet.com</a>' ) . '</p>',
144                                         )
145                                 );
146
147                                 $current_screen->add_help_tab(
148                                         array(
149                                                 'id'            => 'setup-manual',
150                                                 'title'         => __( 'Enter an API Key' , 'akismet'),
151                                                 'content'       =>
152                                                         '<p><strong>' . esc_html__( 'Akismet Setup' , 'akismet') . '</strong></p>' .
153                                                         '<p>' . esc_html__( 'If you already have an API key' , 'akismet') . '</p>' .
154                                                         '<ol>' .
155                                                                 '<li>' . esc_html__( 'Copy and paste the API key into the text field.' , 'akismet') . '</li>' .
156                                                                 '<li>' . esc_html__( 'Click the Use this Key button.' , 'akismet') . '</li>' .
157                                                         '</ol>',
158                                         )
159                                 );
160                         }
161                         elseif ( isset( $_GET['view'] ) && $_GET['view'] == 'stats' ) {
162                                 //stats page
163                                 $current_screen->add_help_tab(
164                                         array(
165                                                 'id'            => 'overview',
166                                                 'title'         => __( 'Overview' , 'akismet'),
167                                                 'content'       =>
168                                                         '<p><strong>' . esc_html__( 'Akismet Stats' , 'akismet') . '</strong></p>' .
169                                                         '<p>' . esc_html__( 'Akismet filters out your comment and trackback spam for you, so you can focus on more important things.' , 'akismet') . '</p>' .
170                                                         '<p>' . esc_html__( 'On this page, you are able to view stats on spam filtered on your site.' , 'akismet') . '</p>',
171                                         )
172                                 );
173                         }
174                         else {
175                                 //configuration page
176                                 $current_screen->add_help_tab(
177                                         array(
178                                                 'id'            => 'overview',
179                                                 'title'         => __( 'Overview' , 'akismet'),
180                                                 'content'       =>
181                                                         '<p><strong>' . esc_html__( 'Akismet Configuration' , 'akismet') . '</strong></p>' .
182                                                         '<p>' . esc_html__( 'Akismet filters out your comment and trackback spam for you, so you can focus on more important things.' , 'akismet') . '</p>' .
183                                                         '<p>' . esc_html__( 'On this page, you are able to enter/remove an API key, view account information and view spam stats.' , 'akismet') . '</p>',
184                                         )
185                                 );
186
187                                 $current_screen->add_help_tab(
188                                         array(
189                                                 'id'            => 'settings',
190                                                 'title'         => __( 'Settings' , 'akismet'),
191                                                 'content'       =>
192                                                         '<p><strong>' . esc_html__( 'Akismet Configuration' , 'akismet') . '</strong></p>' .
193                                                         '<p><strong>' . esc_html__( 'API Key' , 'akismet') . '</strong> - ' . esc_html__( 'Enter/remove an API key.' , 'akismet') . '</p>' .
194                                                         '<p><strong>' . esc_html__( 'Comments' , 'akismet') . '</strong> - ' . esc_html__( 'Show the number of approved comments beside each comment author in the comments list page.' , 'akismet') . '</p>' .
195                                                         '<p><strong>' . esc_html__( 'Strictness' , 'akismet') . '</strong> - ' . esc_html__( 'Choose to either discard the worst spam automatically or to always put all spam in spam folder.' , 'akismet') . '</p>',
196                                         )
197                                 );
198
199                                 $current_screen->add_help_tab(
200                                         array(
201                                                 'id'            => 'account',
202                                                 'title'         => __( 'Account' , 'akismet'),
203                                                 'content'       =>
204                                                         '<p><strong>' . esc_html__( 'Akismet Configuration' , 'akismet') . '</strong></p>' .
205                                                         '<p><strong>' . esc_html__( 'Subscription Type' , 'akismet') . '</strong> - ' . esc_html__( 'The Akismet subscription plan' , 'akismet') . '</p>' .
206                                                         '<p><strong>' . esc_html__( 'Status' , 'akismet') . '</strong> - ' . esc_html__( 'The subscription status - active, cancelled or suspended' , 'akismet') . '</p>',
207                                         )
208                                 );
209                         }
210                 }
211
212                 // Help Sidebar
213                 $current_screen->set_help_sidebar(
214                         '<p><strong>' . esc_html__( 'For more information:' , 'akismet') . '</strong></p>' .
215                         '<p><a href="https://akismet.com/faq/" target="_blank">'     . esc_html__( 'Akismet FAQ' , 'akismet') . '</a></p>' .
216                         '<p><a href="https://akismet.com/support/" target="_blank">' . esc_html__( 'Akismet Support' , 'akismet') . '</a></p>'
217                 );
218         }
219
220         public static function enter_api_key() {
221                 if ( function_exists('current_user_can') && !current_user_can('manage_options') )
222                         die(__('Cheatin&#8217; uh?', 'akismet'));
223
224                 if ( !wp_verify_nonce( $_POST['_wpnonce'], self::NONCE ) )
225                         return false;
226
227                 foreach( array( 'akismet_strictness', 'akismet_show_user_comments_approved' ) as $option ) {
228                         update_option( $option, isset( $_POST[$option] ) && (int) $_POST[$option] == 1 ? '1' : '0' );
229                 }
230
231                 if ( defined( 'WPCOM_API_KEY' ) )
232                         return false; //shouldn't have option to save key if already defined
233
234                 $new_key = preg_replace( '/[^a-h0-9]/i', '', $_POST['key'] );
235                 $old_key = Akismet::get_api_key();
236
237                 if ( empty( $new_key ) ) {
238                         if ( !empty( $old_key ) ) {
239                                 delete_option( 'wordpress_api_key' );
240                                 self::$notices[] = 'new-key-empty';
241                         }
242                 }
243                 elseif ( $new_key != $old_key ) {
244                         self::save_key( $new_key );
245                 }
246
247                 return true;
248         }
249
250         public static function save_key( $api_key ) {
251                 $key_status = Akismet::verify_key( $api_key );
252
253                 if ( $key_status == 'valid' ) {
254                         $akismet_user = self::get_akismet_user( $api_key );
255                         
256                         if ( $akismet_user ) {                          
257                                 if ( in_array( $akismet_user->status, array( 'active', 'active-dunning', 'no-sub' ) ) )
258                                         update_option( 'wordpress_api_key', $api_key );
259                                 
260                                 if (  $akismet_user->status == 'active' )
261                                         self::$notices['status'] = 'new-key-valid';
262                                 else
263                                         self::$notices['status'] = $akismet_user->status;
264                         }
265                         else
266                                 self::$notices['status'] = 'new-key-invalid';
267                 }
268                 elseif ( in_array( $key_status, array( 'invalid', 'failed' ) ) )
269                         self::$notices['status'] = 'new-key-'.$key_status;
270         }
271
272         public static function dashboard_stats() {
273                 if ( !function_exists('did_action') || did_action( 'rightnow_end' ) )
274                         return; // We already displayed this info in the "Right Now" section
275
276                 if ( !$count = get_option('akismet_spam_count') )
277                         return;
278
279                 global $submenu;
280
281                 echo '<h3>' . esc_html( _x( 'Spam', 'comments' , 'akismet') ) . '</h3>';
282
283                 echo '<p>'.sprintf( _n(
284                                 '<a href="%1$s">Akismet</a> has protected your site from <a href="%2$s">%3$s spam comment</a>.',
285                                 '<a href="%1$s">Akismet</a> has protected your site from <a href="%2$s">%3$s spam comments</a>.',
286                                 $count
287                         , 'akismet'), 'https://akismet.com/wordpress/', esc_url( add_query_arg( array( 'page' => 'akismet-admin' ), admin_url( isset( $submenu['edit-comments.php'] ) ? 'edit-comments.php' : 'edit.php' ) ) ), number_format_i18n($count) ).'</p>';
288         }
289
290         // WP 2.5+
291         public static function rightnow_stats() {
292                 global $submenu, $wp_db_version;
293
294                 if ( 8645 < $wp_db_version  ) // 2.7
295                         $link = add_query_arg( array( 'comment_status' => 'spam' ), admin_url( 'edit-comments.php' ) );
296                 elseif ( isset( $submenu['edit-comments.php'] ) )
297                         $link = add_query_arg( array( 'page' => 'akismet-admin' ), admin_url( 'edit-comments.php' ) );
298                 else
299                         $link = add_query_arg( array( 'page' => 'akismet-admin' ), admin_url( 'edit.php' ) );
300
301                 if ( $count = get_option('akismet_spam_count') ) {
302                         $intro = sprintf( _n(
303                                 '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comment already. ',
304                                 '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comments already. ',
305                                 $count
306                         , 'akismet'), 'https://akismet.com/wordpress/', number_format_i18n( $count ) );
307                 } else {
308                         $intro = sprintf( __('<a href="%s">Akismet</a> blocks spam from getting to your blog. ', 'akismet'), 'https://akismet.com/wordpress/' );
309                 }
310
311                 $link = function_exists( 'esc_url' ) ? esc_url( $link ) : clean_url( $link );
312                 if ( $queue_count = self::get_spam_count() ) {
313                         $queue_text = sprintf( _n(
314                                 'There&#8217;s <a href="%2$s">%1$s comment</a> in your spam queue right now.',
315                                 'There are <a href="%2$s">%1$s comments</a> in your spam queue right now.',
316                                 $queue_count
317                         , 'akismet'), number_format_i18n( $queue_count ), $link );
318                 } else {
319                         $queue_text = sprintf( __( "There&#8217;s nothing in your <a href='%s'>spam queue</a> at the moment." , 'akismet'), $link );
320                 }
321
322                 $text = $intro . '<br />' . $queue_text;
323                 echo "<p class='akismet-right-now'>$text</p>\n";
324         }
325
326         public static function check_for_spam_button( $comment_status ) {
327                 if ( 'approved' == $comment_status )
328                         return;
329
330                 if ( function_exists('plugins_url') )
331                         $link = add_query_arg( array( 'action' => 'akismet_recheck_queue' ), admin_url( 'admin.php' ) );
332                 else
333                         $link = add_query_arg( array( 'page' => 'akismet-admin', 'recheckqueue' => 'true', 'noheader' => 'true' ), admin_url( 'edit-comments.php' ) );
334
335                 echo '</div><div class="alignleft"><a class="button-secondary checkforspam" href="' . esc_url( $link ) . '">' . esc_html__('Check for Spam', 'akismet') . '</a><span class="checkforspam-spinner"></span>';
336         }
337
338         public static function recheck_queue() {
339                 global $wpdb;
340
341                 Akismet::fix_scheduled_recheck();
342
343                 if ( ! ( isset( $_GET['recheckqueue'] ) || ( isset( $_REQUEST['action'] ) && 'akismet_recheck_queue' == $_REQUEST['action'] ) ) )
344                         return;
345
346                 $paginate = '';
347                 if ( isset( $_POST['limit'] ) && isset( $_POST['offset'] ) ) {
348                         $paginate = $wpdb->prepare( " LIMIT %d OFFSET %d", array( $_POST['limit'], $_POST['offset'] ) );
349                 }
350                 $moderation = $wpdb->get_results( "SELECT * FROM {$wpdb->comments} WHERE comment_approved = '0'{$paginate}", ARRAY_A );
351
352                 foreach ( (array) $moderation as $c ) {
353                         $c['user_ip']      = $c['comment_author_IP'];
354                         $c['user_agent']   = $c['comment_agent'];
355                         $c['referrer']     = '';
356                         $c['blog']         = get_bloginfo('url');
357                         $c['blog_lang']    = get_locale();
358                         $c['blog_charset'] = get_option('blog_charset');
359                         $c['permalink']    = get_permalink($c['comment_post_ID']);
360
361                         $c['user_role'] = '';
362                         if ( isset( $c['user_ID'] ) )
363                                 $c['user_role'] = Akismet::get_user_roles($c['user_ID']);
364
365                         if ( Akismet::is_test_mode() )
366                                 $c['is_test'] = 'true';
367
368                         add_comment_meta( $c['comment_ID'], 'akismet_rechecking', true );
369
370                         $response = Akismet::http_post( build_query( $c ), 'comment-check' );
371                         if ( 'true' == $response[1] ) {
372                                 wp_set_comment_status( $c['comment_ID'], 'spam' );
373                                 update_comment_meta( $c['comment_ID'], 'akismet_result', 'true' );
374                                 delete_comment_meta( $c['comment_ID'], 'akismet_error' );
375                                 delete_comment_meta( $c['comment_ID'], 'akismet_delayed_moderation_email' );
376                                 Akismet::update_comment_history( $c['comment_ID'], __('Akismet re-checked and caught this comment as spam', 'akismet'), 'check-spam' );
377
378                         } elseif ( 'false' == $response[1] ) {
379                                 update_comment_meta( $c['comment_ID'], 'akismet_result', 'false' );
380                                 delete_comment_meta( $c['comment_ID'], 'akismet_error' );
381                                 delete_comment_meta( $c['comment_ID'], 'akismet_delayed_moderation_email' );
382                                 Akismet::update_comment_history( $c['comment_ID'], __('Akismet re-checked and cleared this comment', 'akismet'), 'check-ham' );
383                         // abnormal result: error
384                         } else {
385                                 update_comment_meta( $c['comment_ID'], 'akismet_result', 'error' );
386                                 Akismet::update_comment_history( $c['comment_ID'], sprintf( __('Akismet was unable to re-check this comment (response: %s)', 'akismet'), substr($response[1], 0, 50)), 'check-error' );
387                         }
388
389                         delete_comment_meta( $c['comment_ID'], 'akismet_rechecking' );
390                 }
391                 if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
392                         wp_send_json( array(
393                                 'processed' => count((array) $moderation),
394                         ));
395                 }
396                 else {
397                         $redirect_to = isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : admin_url( 'edit-comments.php' );
398                         wp_safe_redirect( $redirect_to );
399                         exit;
400                 }
401         }
402
403         // Adds an 'x' link next to author URLs, clicking will remove the author URL and show an undo link
404         public static function remove_comment_author_url() {
405                 if ( !empty( $_POST['id'] ) && check_admin_referer( 'comment_author_url_nonce' ) ) {
406                         $comment = get_comment( intval( $_POST['id'] ), ARRAY_A );
407                         if ( $comment && current_user_can( 'edit_comment', $comment['comment_ID'] ) ) {
408                                 $comment['comment_author_url'] = '';
409                                 do_action( 'comment_remove_author_url' );
410                                 print( wp_update_comment( $comment ) );
411                                 die();
412                         }
413                 }
414         }
415
416         public static function add_comment_author_url() {
417                 if ( !empty( $_POST['id'] ) && !empty( $_POST['url'] ) && check_admin_referer( 'comment_author_url_nonce' ) ) {
418                         $comment = get_comment( intval( $_POST['id'] ), ARRAY_A );
419                         if ( $comment && current_user_can( 'edit_comment', $comment['comment_ID'] ) ) {
420                                 $comment['comment_author_url'] = esc_url( $_POST['url'] );
421                                 do_action( 'comment_add_author_url' );
422                                 print( wp_update_comment( $comment ) );
423                                 die();
424                         }
425                 }
426         }
427
428         public static function comment_row_action( $a, $comment ) {
429
430                 // failsafe for old WP versions
431                 if ( !function_exists('add_comment_meta') )
432                         return $a;
433
434                 $akismet_result = get_comment_meta( $comment->comment_ID, 'akismet_result', true );
435                 $akismet_error  = get_comment_meta( $comment->comment_ID, 'akismet_error', true );
436                 $user_result    = get_comment_meta( $comment->comment_ID, 'akismet_user_result', true);
437                 $comment_status = wp_get_comment_status( $comment->comment_ID );
438                 $desc = null;
439                 if ( $akismet_error ) {
440                         $desc = __( 'Awaiting spam check' , 'akismet');
441                 } elseif ( !$user_result || $user_result == $akismet_result ) {
442                         // Show the original Akismet result if the user hasn't overridden it, or if their decision was the same
443                         if ( $akismet_result == 'true' && $comment_status != 'spam' && $comment_status != 'trash' )
444                                 $desc = __( 'Flagged as spam by Akismet' , 'akismet');
445                         elseif ( $akismet_result == 'false' && $comment_status == 'spam' )
446                                 $desc = __( 'Cleared by Akismet' , 'akismet');
447                 } else {
448                         $who = get_comment_meta( $comment->comment_ID, 'akismet_user', true );
449                         if ( $user_result == 'true' )
450                                 $desc = sprintf( __('Flagged as spam by %s', 'akismet'), $who );
451                         else
452                                 $desc = sprintf( __('Un-spammed by %s', 'akismet'), $who );
453                 }
454
455                 // add a History item to the hover links, just after Edit
456                 if ( $akismet_result ) {
457                         $b = array();
458                         foreach ( $a as $k => $item ) {
459                                 $b[ $k ] = $item;
460                                 if (
461                                         $k == 'edit'
462                                         || ( $k == 'unspam' && $GLOBALS['wp_version'] >= 3.4 )
463                                 ) {
464                                         $b['history'] = '<a href="comment.php?action=editcomment&amp;c='.$comment->comment_ID.'#akismet-status" title="'. esc_attr__( 'View comment history' , 'akismet') . '"> '. esc_html__('History', 'akismet') . '</a>';
465                                 }
466                         }
467
468                         $a = $b;
469                 }
470
471                 if ( $desc )
472                         echo '<span class="akismet-status" commentid="'.$comment->comment_ID.'"><a href="comment.php?action=editcomment&amp;c='.$comment->comment_ID.'#akismet-status" title="' . esc_attr__( 'View comment history' , 'akismet') . '">'.esc_html( $desc ).'</a></span>';
473
474                 $show_user_comments = apply_filters( 'akismet_show_user_comments_approved', get_option('akismet_show_user_comments_approved') );
475                 $show_user_comments = $show_user_comments === 'false' ? false : $show_user_comments; //option used to be saved as 'false' / 'true'
476                 
477                 if ( $show_user_comments ) {
478                         $comment_count = Akismet::get_user_comments_approved( $comment->user_id, $comment->comment_author_email, $comment->comment_author, $comment->comment_author_url );
479                         $comment_count = intval( $comment_count );
480                         echo '<span class="akismet-user-comment-count" commentid="'.$comment->comment_ID.'" style="display:none;"><br><span class="akismet-user-comment-counts">'. sprintf( esc_html( _n( '%s approved', '%s approved', $comment_count , 'akismet') ), number_format_i18n( $comment_count ) ) . '</span></span>';
481                 }
482
483                 return $a;
484         }
485
486         public static function comment_status_meta_box( $comment ) {
487                 $history = Akismet::get_comment_history( $comment->comment_ID );
488
489                 if ( $history ) {
490                         echo '<div class="akismet-history" style="margin: 13px;">';
491                         foreach ( $history as $row ) {
492                                 $time = date( 'D d M Y @ h:i:m a', $row['time'] ) . ' GMT';
493                                 echo '<div style="margin-bottom: 13px;"><span style="color: #999;" alt="' . $time . '" title="' . $time . '">' . sprintf( esc_html__('%s ago', 'akismet'), human_time_diff( $row['time'] ) ) . '</span> - ';
494                                 echo esc_html( $row['message'] ) . '</div>';
495                         }
496                         echo '</div>';
497                 }
498         }
499
500         public static function plugin_action_links( $links, $file ) {
501                 if ( $file == plugin_basename( AKISMET__PLUGIN_URL . '/akismet.php' ) ) {
502                         $links[] = '<a href="' . esc_url( self::get_page_url() ) . '">'.esc_html__( 'Settings' , 'akismet').'</a>';
503                 }
504
505                 return $links;
506         }
507
508         public static function text_add_link_callback( $m ) {
509                 // bare link?
510                 if ( $m[4] == $m[2] )
511                         return '<a '.$m[1].' href="'.$m[2].'" '.$m[3].' class="comment-link">'.$m[4].'</a>';
512                 else
513                         return '<span title="'.$m[2].'" class="comment-link"><a '.$m[1].' href="'.$m[2].'" '.$m[3].' class="comment-link">'.$m[4].'</a></span>';
514         }
515
516         public static function text_add_link_class( $comment_text ) {
517                 return preg_replace_callback( '#<a ([^>]*)href="([^"]+)"([^>]*)>(.*?)</a>#i', array( 'Akismet_Admin', 'text_add_link_callback' ), $comment_text );
518         }
519
520         // Total spam in queue
521         // get_option( 'akismet_spam_count' ) is the total caught ever
522         public static function get_spam_count( $type = false ) {
523                 global $wpdb;
524
525                 if ( !$type ) { // total
526                         $count = wp_cache_get( 'akismet_spam_count', 'widget' );
527                         if ( false === $count ) {
528                                 if ( function_exists('wp_count_comments') ) {
529                                         $count = wp_count_comments();
530                                         $count = $count->spam;
531                                 } else {
532                                         $count = (int) $wpdb->get_var("SELECT COUNT(comment_ID) FROM {$wpdb->comments} WHERE comment_approved = 'spam'");
533                                 }
534                                 wp_cache_set( 'akismet_spam_count', $count, 'widget', 3600 );
535                         }
536                         return $count;
537                 } elseif ( 'comments' == $type || 'comment' == $type ) { // comments
538                         $type = '';
539                 }
540
541                 return (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(comment_ID) FROM {$wpdb->comments} WHERE comment_approved = 'spam' AND comment_type = %s", $type ) );
542         }
543
544         // Check connectivity between the WordPress blog and Akismet's servers.
545         // 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).
546         public static function check_server_ip_connectivity() {
547                 
548                 $servers = $ips = array();
549
550                 // Some web hosts may disable this function
551                 if ( function_exists('gethostbynamel') ) {      
552                         
553                         $ips = gethostbynamel( 'rest.akismet.com' );
554                         if ( $ips && is_array($ips) && count($ips) ) {
555                                 $api_key = Akismet::get_api_key();
556                                 
557                                 foreach ( $ips as $ip ) {
558                                         $response = Akismet::verify_key( $api_key, $ip );
559                                         // even if the key is invalid, at least we know we have connectivity
560                                         if ( $response == 'valid' || $response == 'invalid' )
561                                                 $servers[$ip] = 'connected';
562                                         else
563                                                 $servers[$ip] = $response ? $response : 'unable to connect';
564                                 }
565                         }
566                 }
567                 
568                 return $servers;
569         }
570         
571         // Simpler connectivity check
572         public static function check_server_connectivity($cache_timeout = 86400) {
573                 
574                 $debug = array();
575                 $debug[ 'PHP_VERSION' ]         = PHP_VERSION;
576                 $debug[ 'WORDPRESS_VERSION' ]   = $GLOBALS['wp_version'];
577                 $debug[ 'AKISMET_VERSION' ]     = AKISMET_VERSION;
578                 $debug[ 'AKISMET__PLUGIN_DIR' ] = AKISMET__PLUGIN_DIR;
579                 $debug[ 'SITE_URL' ]            = site_url();
580                 $debug[ 'HOME_URL' ]            = home_url();
581                 
582                 $servers = get_option('akismet_available_servers');
583                 if ( (time() - get_option('akismet_connectivity_time') < $cache_timeout) && $servers !== false ) {
584                         $servers = self::check_server_ip_connectivity();
585                         update_option('akismet_available_servers', $servers);
586                         update_option('akismet_connectivity_time', time());
587                 }
588                         
589                 $response = wp_remote_get( 'http://rest.akismet.com/1.1/test' );
590                 
591                 $debug[ 'gethostbynamel' ]  = function_exists('gethostbynamel') ? 'exists' : 'not here';
592                 $debug[ 'Servers' ]         = $servers;
593                 $debug[ 'Test Connection' ] = $response;
594                 
595                 Akismet::log( $debug );
596                 
597                 if ( $response && 'connected' == wp_remote_retrieve_body( $response ) )
598                         return true;
599                 
600                 return false;
601         }
602
603         // Check the server connectivity and store the available servers in an option. 
604         public static function get_server_connectivity($cache_timeout = 86400) {
605                 return self::check_server_connectivity( $cache_timeout );
606         }
607
608         public static function get_number_spam_waiting() {
609                 global $wpdb;
610                 return (int) $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->commentmeta} WHERE meta_key = 'akismet_error'" );
611         }
612
613         public static function get_page_url( $page = 'config' ) {
614
615                 $args = array( 'page' => 'akismet-key-config' );
616
617                 if ( $page == 'stats' )
618                         $args = array( 'page' => 'akismet-key-config', 'view' => 'stats' );
619                 elseif ( $page == 'delete_key' )
620                         $args = array( 'page' => 'akismet-key-config', 'view' => 'start', 'action' => 'delete-key', '_wpnonce' => wp_create_nonce( self::NONCE ) );
621
622                 $url = add_query_arg( $args, class_exists( 'Jetpack' ) ? admin_url( 'admin.php' ) : admin_url( 'options-general.php' ) );
623
624                 return $url;
625         }
626         
627         public static function get_akismet_user( $api_key ) {
628                 $akismet_user = Akismet::http_post( build_query( array( 'key' => $api_key ) ), 'get-subscription' );
629
630                 if ( ! empty( $akismet_user[1] ) )
631                         $akismet_user = json_decode( $akismet_user[1] );
632                 else
633                         $akismet_user = false;
634                         
635                 return $akismet_user;
636         }
637         
638         public static function get_stats( $api_key ) {
639                 $stat_totals = array();
640
641                 foreach( array( '6-months', 'all' ) as $interval ) {
642                         $response = Akismet::http_post( build_query( array( 'blog' => urlencode( get_bloginfo('url') ), 'key' => $api_key, 'from' => $interval ) ), 'get-stats' );
643
644                         if ( ! empty( $response[1] ) ) {
645                                 $stat_totals[$interval] = json_decode( $response[1] );
646                         }
647                 }
648                 return $stat_totals;
649         }
650         
651         public static function verify_wpcom_key( $api_key, $user_id, $token = '' ) {
652                 $akismet_account = Akismet::http_post( build_query( array(
653                         'user_id'          => $user_id,
654                         'api_key'          => $api_key,
655                         'token'            => $token,
656                         'get_account_type' => 'true'
657                 ) ), 'verify-wpcom-key' );
658
659                 if ( ! empty( $akismet_account[1] ) )
660                         $akismet_account = json_decode( $akismet_account[1] );
661
662                 Akismet::log( compact( 'akismet_account' ) );
663                 
664                 return $akismet_account;
665         }
666
667         public static function display_alert() {
668                 Akismet::view( 'notice', array(
669                         'type' => 'alert',
670                         'code' => (int) get_option( 'akismet_alert_code' ),
671                         'msg'  => get_option( 'akismet_alert_msg' )
672                 ) );
673         }
674
675         public static function display_spam_check_warning() {
676                 Akismet::fix_scheduled_recheck();
677                 
678                 $link_text = apply_filters( 'akismet_spam_check_warning_link_text', sprintf( __( 'Please check your <a href="%s">Akismet configuration</a> and contact your web host if problems persist.', 'akismet'), esc_url( self::get_page_url() ) ) );
679
680                 if ( self::get_number_spam_waiting() > 0 && wp_next_scheduled('akismet_schedule_cron_recheck') > time() )
681                         Akismet::view( 'notice', array( 'type' => 'spam-check', 'link_text' => $link_text ) );
682         }
683
684         public static function display_invalid_version() {
685                 Akismet::view( 'notice', array( 'type' => 'version' ) );
686         }
687
688         public static function display_api_key_warning() {
689                 Akismet::view( 'notice', array( 'type' => 'plugin' ) );
690         }
691
692         public static function display_page() {
693                 if ( !Akismet::get_api_key() || ( isset( $_GET['view'] ) && $_GET['view'] == 'start' ) )
694                         self::display_start_page();
695                 elseif ( isset( $_GET['view'] ) && $_GET['view'] == 'stats' )
696                         self::display_stats_page();
697                 else
698                         self::display_configuration_page();
699         }
700
701         public static function display_start_page() {
702                 if ( isset( $_GET['action'] ) ) {
703                         if ( $_GET['action'] == 'delete-key' ) {
704                                 if ( isset( $_GET['_wpnonce'] ) && wp_verify_nonce( $_GET['_wpnonce'], self::NONCE ) )
705                                         delete_option( 'wordpress_api_key' );
706                         }
707                 }
708
709                 if ( $api_key = Akismet::get_api_key() ) {
710                         self::display_configuration_page();
711                         return;
712                 }
713                 
714                 //the user can choose to auto connect their API key by clicking a button on the akismet done page
715                 //if jetpack, get verified api key by using connected wpcom user id
716                 //if no jetpack, get verified api key by using an akismet token 
717                 
718                 $akismet_user = false;
719                 
720                 if ( isset( $_GET['token'] ) && preg_match('/^(\d+)-[0-9a-f]{20}$/', $_GET['token'] ) )
721                         $akismet_user = self::verify_wpcom_key( '', '', $_GET['token'] );
722                 elseif ( $jetpack_user = self::get_jetpack_user() )
723                         $akismet_user = self::verify_wpcom_key( $jetpack_user['api_key'], $jetpack_user['user_id'] );
724                         
725                 if ( isset( $_GET['action'] ) ) {
726                         if ( $_GET['action'] == 'save-key' ) {
727                                 if ( is_object( $akismet_user ) ) {
728                                         self::save_key( $akismet_user->api_key );
729                                         self::display_notice();
730                                         self::display_configuration_page();
731                                         return;                         
732                                 }
733                         }
734                 }
735
736                 echo '<h2 class="ak-header">'.esc_html__('Akismet', 'akismet').'</h2>';
737
738                 self::display_status();
739
740                 Akismet::view( 'start', compact( 'akismet_user' ) );
741         }
742
743         public static function display_stats_page() {
744                 Akismet::view( 'stats' );
745         }
746
747         public static function display_configuration_page() {
748                 $api_key      = Akismet::get_api_key();
749                 $akismet_user = self::get_akismet_user( $api_key );
750                 $stat_totals  = self::get_stats( $api_key );
751                 
752                 // If unset, create the new strictness option using the old discard option to determine its default
753         if ( get_option( 'akismet_strictness' ) === false )
754                 add_option( 'akismet_strictness', (get_option('akismet_discard_month') === 'true' ? '1' : '0') );
755
756                 if ( empty( self::$notices ) ) {
757                         //show status
758                         if ( ! empty( $stat_totals['all'] ) && isset( $stat_totals['all']->time_saved ) && $akismet_user->status == 'active' && $akismet_user->account_type == 'free-api-key' ) {
759
760                                 $time_saved = false;
761
762                                 if ( $stat_totals['all']->time_saved > 1800 ) {
763                                         $total_in_minutes = round( $stat_totals['all']->time_saved / 60 );
764                                         $total_in_hours   = round( $total_in_minutes / 60 );
765                                         $total_in_days    = round( $total_in_hours / 8 );
766                                         $cleaning_up      = __( 'Cleaning up spam takes time.' , 'akismet');
767
768                                         if ( $total_in_days > 1 )
769                                                 $time_saved = $cleaning_up . ' ' . sprintf( __( 'Since you joined us, Akismet has saved you %s days!' , 'akismet'), number_format_i18n( $total_in_days ) );
770                                         elseif ( $total_in_hours > 1 )
771                                                 $time_saved = $cleaning_up . ' ' . sprintf( __( 'Since you joined us, Akismet has saved you %d hours!' , 'akismet'), $total_in_hours );
772                                         elseif ( $total_in_minutes >= 30 )
773                                                 $time_saved = $cleaning_up . ' ' . sprintf( __( 'Since you joined us, Akismet has saved you %d minutes!' , 'akismet'), $total_in_minutes );
774                                 }
775
776                                 Akismet::view( 'notice', array( 'type' => 'active-notice', 'time_saved' => $time_saved ) );
777                         }
778                         
779                         if ( !empty( $akismet_user->limit_reached ) && in_array( $akismet_user->limit_reached, array( 'yellow', 'red' ) ) ) {
780                                 Akismet::view( 'notice', array( 'type' => 'limit-reached', 'level' => $akismet_user->limit_reached ) );
781                         }
782                 }
783                 
784                 if ( !isset( self::$notices['status'] ) && in_array( $akismet_user->status, array( 'cancelled', 'suspended', 'missing', 'no-sub' ) ) )  
785                         Akismet::view( 'notice', array( 'type' => $akismet_user->status ) );
786
787                 Akismet::log( compact( 'stat_totals', 'akismet_user' ) );
788                 Akismet::view( 'config', compact( 'api_key', 'akismet_user', 'stat_totals' ) );
789         }
790
791         public static function display_notice() {
792                 global $hook_suffix;
793
794                 if ( in_array( $hook_suffix, array( 'jetpack_page_akismet-key-config', 'settings_page_akismet-key-config', 'edit-comments.php' ) ) && (int) get_option( 'akismet_alert_code' ) > 0 ) {
795                         self::display_alert();
796                 }
797                 elseif ( $hook_suffix == 'plugins.php' && !Akismet::get_api_key() ) {
798                         self::display_api_key_warning();
799                 }
800                 elseif ( $hook_suffix == 'edit-comments.php' && wp_next_scheduled( 'akismet_schedule_cron_recheck' ) ) {
801                         self::display_spam_check_warning();
802                 }
803                 elseif ( in_array( $hook_suffix, array( 'jetpack_page_akismet-key-config', 'settings_page_akismet-key-config' ) ) && Akismet::get_api_key() ) {
804                         self::display_status();
805                 }
806         }
807
808         public static function display_status() {
809                 $type = '';
810
811                 if ( !self::get_server_connectivity() )
812                         $type = 'servers-be-down';
813
814                 if ( !empty( $type ) )
815                         Akismet::view( 'notice', compact( 'type' ) );
816                 elseif ( !empty( self::$notices ) ) {
817                         foreach ( self::$notices as $type )
818                                 Akismet::view( 'notice', compact( 'type' ) );
819                 }
820         }
821
822         private static function get_jetpack_user() {
823                 if ( !class_exists('Jetpack') )
824                         return false;
825
826                 Jetpack::load_xml_rpc_client();
827                 $xml = new Jetpack_IXR_ClientMulticall( array( 'user_id' => get_current_user_id() ) );
828
829                 $xml->addCall( 'wpcom.getUserID' );
830                 $xml->addCall( 'akismet.getAPIKey' );
831                 $xml->query();
832
833                 Akismet::log( compact( 'xml' ) );
834
835                 if ( !$xml->isError() ) {
836                         $responses = $xml->getResponse();
837                         if ( count( $responses ) > 1 ) {
838                                 $api_key = array_shift( $responses[0] );
839                                 $user_id = (int) array_shift( $responses[1] );
840                                 return compact( 'api_key', 'user_id' );
841                         }
842                 }
843                 return false;
844         }
845         
846         /**
847          * Some commentmeta isn't useful in an export file. Suppress it (when supported).
848          *
849          * @param bool $exclude
850          * @param string $key The meta key
851          * @param object $meta The meta object
852          * @return bool Whether to exclude this meta entry from the export.
853          */
854         public static function exclude_commentmeta_from_export( $exclude, $key, $meta ) {
855                 if ( in_array( $key, array( 'akismet_as_submitted', 'akismet_rechecking', 'akismet_delayed_moderation_email' ) ) ) {
856                         return true;
857                 }
858                 
859                 return $exclude;
860         }
861 }