Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

Fixed Askimet 2.1.1
Monday, December 17th, 2007 at 2:27:36pm MST 

  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.1
  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. function akismet_config_page() {
  36.         if ( function_exists('add_submenu_page') )
  37.                 add_submenu_page('plugins.php', __('Akismet Configuration'), __('Akismet Configuration'), 'manage_options', 'akismet-key-config', 'akismet_conf');
  38.        
  39. }
  40.  
  41. function akismet_conf() {
  42.         global $akismet_nonce, $wpcom_api_key;
  43.  
  44.         if ( isset($_POST['submit']) ) {
  45.                 if ( function_exists('current_user_can') && !current_user_can('manage_options') )
  46.                         die(__('Cheatin&#8217; uh?'));
  47.  
  48.                 check_admin_referer( $akismet_nonce );
  49.                 $key = preg_replace( '/[^a-h0-9]/i', '', $_POST['key'] );
  50.  
  51.                 if ( empty($key) ) {
  52.                         $key_status = 'empty';
  53.                         $ms[] = 'new_key_empty';
  54.                         delete_option('wordpress_api_key');
  55.                 } else {
  56.                         $key_status = akismet_verify_key( $key );
  57.                 }
  58.  
  59.                 if ( $key_status == 'valid' ) {
  60.                         update_option('wordpress_api_key', $key);
  61.                         $ms[] = 'new_key_valid';
  62.                 } else if ( $key_status == 'invalid' ) {
  63.                         $ms[] = 'new_key_invalid';
  64.                 } else if ( $key_status == 'failed' ) {
  65.                         $ms[] = 'new_key_failed';
  66.                 }
  67.  
  68.                 if ( isset( $_POST['akismet_discard_month'] ) )
  69.                         update_option( 'akismet_discard_month', 'true' );
  70.                 else
  71.                         update_option( 'akismet_discard_month', 'false' );
  72.         }
  73.  
  74.         if ( $key_status != 'valid' ) {
  75.                 $key = get_option('wordpress_api_key');
  76.                 if ( empty( $key ) ) {
  77.                         if ( $key_status != 'failed' ) {
  78.                                 if ( akismet_verify_key( '1234567890ab' ) == 'failed' )
  79.                                         $ms[] = 'no_connection';
  80.                                 else
  81.                                         $ms[] = 'key_empty';
  82.                         }
  83.                         $key_status = 'empty';
  84.                 } else {
  85.                         $key_status = akismet_verify_key( $key );
  86.                 }
  87.                 if ( $key_status == 'valid' ) {
  88.                         $ms[] = 'key_valid';
  89.                 } else if ( $key_status == 'invalid' ) {
  90.                         delete_option('wordpress_api_key');
  91.                         $ms[] = 'key_empty';
  92.                 } else if ( !empty($key) && $key_status == 'failed' ) {
  93.                         $ms[] = 'key_failed';
  94.                 }
  95.         }
  96.  
  97.         $messages = array(
  98.                 'new_key_empty' => array('color' => 'aa0', 'text' => __('Your key has been cleared.')),
  99.                 'new_key_valid' => array('color' => '2d2', 'text' => __('Your key has been verified. Happy blogging!')),
  100.                 'new_key_invalid' => array('color' => 'd22', 'text' => __('The key you entered is invalid. Please double-check it.')),
  101.                 '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.')),
  102.                 'no_connection' => array('color' => 'd22', 'text' => __('There was a problem connecting to the Akismet server. Please check your server configuration.')),
  103.                 '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/')),
  104.                 'key_valid' => array('color' => '2d2', 'text' => __('This key is valid.')),
  105.                 '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.')));
  106. ?>
  107. <?php if ( !empty($_POST ) ) : ?>
  108. <div id="message" class="updated fade"><p><strong><?php _e('Options saved.') ?></strong></p></div>
  109. <?php endif; ?>
  110. <div class="wrap">
  111. <h2><?php _e('Akismet Configuration'); ?></h2>
  112. <div class="narrow">
  113. <form action="" method="post" id="akismet-conf" style="margin: auto; width: 400px; ">
  114. <?php if ( !$wpcom_api_key ) { ?>
  115.         <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>
  116.  
  117. <?php akismet_nonce_field($akismet_nonce) ?>
  118. <h3><label for="key"><?php _e('WordPress.com API Key'); ?></label></h3>
  119. <?php foreach ( $ms as $m ) : ?>
  120.         <p style="padding: .5em; background-color: #<?php echo $messages[$m]['color']; ?>; color: #fff; font-weight: bold;"><?php echo $messages[$m]['text']; ?></p>
  121. <?php endforeach; ?>
  122. <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>
  123. <?php if ( $invalid_key ) { ?>
  124. <h3><?php _e('Why might my key be invalid?'); ?></h3>
  125. <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>
  126. <?php } ?>
  127. <?php } ?>
  128. <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>
  129.         <p class="submit"><input type="submit" name="submit" value="<?php _e('Update options &raquo;'); ?>" /></p>
  130. </form>
  131. </div>
  132. </div>
  133. <?php
  134. }
  135.  
  136. function akismet_verify_key( $key ) {
  137.         global $akismet_api_host, $akismet_api_port, $wpcom_api_key;
  138.         $blog = urlencode( get_option('home') );
  139.         if ( $wpcom_api_key )
  140.                 $key = $wpcom_api_key;
  141.         $response = akismet_http_post("key=$key&blog=$blog", 'rest.akismet.com', '/1.1/verify-key', $akismet_api_port);
  142.         if ( !is_array($response) || !isset($response[1]) || $response[1] != 'valid' && $response[1] != 'invalid' )
  143.                 return 'failed';
  144.         return $response[1];
  145. }
  146.  
  147. if ( !get_option('wordpress_api_key') && !$wpcom_api_key && !isset($_POST['submit']) ) {
  148.         function akismet_warning() {
  149.                 echo "
  150.                 <div id='akismet-warning' class='updated fade-ff0000'><p><strong>".__('Akismet is not active.')."</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>
  151.                 <style type='text/css'>
  152.                 #adminmenu { margin-bottom: 5em; }
  153.                 #akismet-warning { position: absolute; top: 7em; }
  154.                 </style>
  155.                 ";
  156.         }
  157.         add_action('admin_footer', '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.                 $post = get_post( $comment['comment_post_ID'] );
  209.                 $last_updated = strtotime( $post->post_modified_gmt );
  210.                 $diff = time() - $last_updated;
  211.                 $diff = $diff / 86400;
  212.  
  213.                 if ( $post->post_type == 'post' && $diff > 30 && get_option( 'akismet_discard_month' ) == 'true' )
  214.                         die;
  215.         }
  216.         akismet_delete_old();
  217.         return $comment;
  218. }
  219.  
  220. function akismet_delete_old() {
  221.         global $wpdb;
  222.         $now_gmt = current_time('mysql', 1);
  223.         $wpdb->query("DELETE FROM $wpdb->comments WHERE DATE_SUB('$now_gmt', INTERVAL 15 DAY) > comment_date_gmt AND comment_approved = 'spam'");
  224.         $n = mt_rand(1, 5000);
  225.         if ( $n == 11 ) // lucky number
  226.                 $wpdb->query("OPTIMIZE TABLE $wpdb->comments");
  227. }
  228.  
  229. function akismet_submit_nonspam_comment ( $comment_id ) {
  230.         global $wpdb, $akismet_api_host, $akismet_api_port;
  231.  
  232.         $comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID = '$comment_id'");
  233.         if ( !$comment ) // it was deleted
  234.                 return;
  235.         $comment->blog = get_option('home');
  236.         $query_string = '';
  237.         foreach ( $comment as $key => $data )
  238.                 $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  239.         $response = akismet_http_post($query_string, $akismet_api_host, "/1.1/submit-ham", $akismet_api_port);
  240. }
  241.  
  242. function akismet_submit_spam_comment ( $comment_id ) {
  243.         global $wpdb, $akismet_api_host, $akismet_api_port;
  244.  
  245.         $comment = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID = '$comment_id'");
  246.         if ( !$comment ) // it was deleted
  247.                 return;
  248.         if ( 'spam' != $comment->comment_approved )
  249.                 return;
  250.         $comment->blog = get_option('home');
  251.         $query_string = '';
  252.         foreach ( $comment as $key => $data )
  253.                 $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  254.  
  255.         $response = akismet_http_post($query_string, $akismet_api_host, "/1.1/submit-spam", $akismet_api_port);
  256. }
  257.  
  258. add_action('wp_set_comment_status', 'akismet_submit_spam_comment');
  259. add_action('edit_comment', 'akismet_submit_spam_comment');
  260. add_action('preprocess_comment', 'akismet_auto_check_comment', 1);
  261.  
  262. function akismet_spam_count() {
  263.         global $wpdb, $comments;
  264.         $count = wp_cache_get( 'akismet_spam_count', 'widget' );
  265.         if ( false === $count ) {
  266.                 $count = $wpdb->get_var("SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_approved = 'spam'");
  267.                 wp_cache_set( 'akismet_spam_count', $count, 'widget', 3600 );
  268.         }
  269.         return $count;
  270. }
  271.  
  272. function akismet_manage_page() {
  273.         global $wpdb, $submenu;
  274.         $count = sprintf(__('Akismet Spam (%s)'), akismet_spam_count());
  275.         if ( isset( $submenu['edit-comments.php'] ) )
  276.                 add_submenu_page('edit-comments.php', __('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught' );
  277.         elseif ( function_exists('add_management_page') )
  278.                 add_management_page(__('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught');
  279. }
  280.  
  281. function akismet_caught() {
  282.         global $wpdb, $comment, $akismet_caught, $akismet_nonce;
  283.         akismet_recheck_queue();
  284.         if (isset($_POST['submit']) && 'recover' == $_POST['action'] && ! empty($_POST['not_spam'])) {
  285.                 check_admin_referer( $akismet_nonce );
  286.                 if ( function_exists('current_user_can') && !current_user_can('moderate_comments') )
  287.                         die(__('You do not have sufficient permission to moderate comments.'));
  288.                
  289.                 $i = 0;
  290.                 foreach ($_POST['not_spam'] as $comment):
  291.                         $comment = (int) $comment;
  292.                         if ( function_exists('wp_set_comment_status') )
  293.                                 wp_set_comment_status($comment, 'approve');
  294.                         else
  295.                                 $wpdb->query("UPDATE $wpdb->comments SET comment_approved = '1' WHERE comment_ID = '$comment'");
  296.                         akismet_submit_nonspam_comment($comment);
  297.                         ++$i;
  298.                 endforeach;
  299.                 $to = add_query_arg( 'recovered', $i, $_SERVER['HTTP_REFERER'] );
  300.                 wp_redirect( $to );
  301.                 exit;
  302.         }
  303.         if ('delete' == $_POST['action']) {
  304.                 check_admin_referer( $akismet_nonce );
  305.                 if ( function_exists('current_user_can') && !current_user_can('moderate_comments') )
  306.                         die(__('You do not have sufficient permission to moderate comments.'));
  307.  
  308.                 $delete_time = addslashes( $_POST['display_time'] );
  309.                 $nuked = $wpdb->query( "DELETE FROM $wpdb->comments WHERE comment_approved = 'spam' AND '$delete_time' > comment_date_gmt" );
  310.                 wp_cache_delete( 'akismet_spam_count', 'widget' );
  311.                 $to = add_query_arg( 'deleted', 'all', $_SERVER['HTTP_REFERER'] );
  312.                 wp_redirect( $to );
  313.                 exit;
  314.         }
  315.  
  316. if ( isset( $_GET['recovered'] ) ) {
  317.         $i = (int) $_GET['recovered'];
  318.         echo '<div class="updated"><p>' . sprintf(__('%1$s comments recovered.'), $i) . "</p></div>";
  319. }
  320.  
  321. if (isset( $_GET['deleted'] ) )
  322.         echo '<div class="updated"><p>' . __('All spam deleted.') . '</p></div>';
  323.  
  324. if ( isset( $GLOBALS['submenu']['edit-comments.php'] ) )
  325.         $link = 'edit-comments.php';
  326. else
  327.         $link = 'edit.php';
  328. ?>
  329. <style type="text/css">
  330. .akismet-tabs {
  331.         list-style: none;
  332.         margin: 0;
  333.         padding: 0;
  334.         clear: both;
  335.         border-bottom: 1px solid #ccc;
  336.         height: 31px;
  337.         margin-bottom: 20px;
  338.         background: #ddd;
  339.         border-top: 1px solid #bdbdbd;
  340. }
  341. .akismet-tabs li {
  342.         float: left;
  343.         margin: 5px 0 0 20px;
  344. }
  345. .akismet-tabs a {
  346.         display: block;
  347.         padding: 4px .5em 3px;
  348.         border-bottom: none;
  349.         color: #036;
  350. }
  351. .akismet-tabs .active a {
  352.         background: #fff;
  353.         border: 1px solid #ccc;
  354.         border-bottom: none;
  355.         color: #000;
  356.         font-weight: bold;
  357.         padding-bottom: 4px;
  358. }
  359. #akismetsearch {
  360.         float: right;
  361.         margin-top: -.5em;
  362. }
  363.  
  364. #akismetsearch p {
  365.         margin: 0;
  366.         padding: 0;
  367. }
  368. </style>
  369. <div class="wrap">
  370. <h2><?php _e('Caught Spam') ?></h2>
  371. <?php
  372. $count = get_option( 'akismet_spam_count' );
  373. if ( $count ) {
  374. ?>
  375. <p><?php printf(__('Akismet has caught <strong>%1$s spam</strong> for you since you first installed it.'), number_format($count) ); ?></p>
  376. <?php
  377. }
  378.  
  379. $gotspam = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = 'spam'" );
  380.  
  381.  
  382. if ( 0 == $gotspam ) {
  383.         echo '<p>'.__('You have no spam currently in the queue. Must be your lucky day. :)').'</p>';
  384.         echo '</div>';
  385. } else {
  386.         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>';
  387. ?>
  388. <?php if ( !isset( $_POST['s'] ) ) { ?>
  389. <form method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
  390. <?php akismet_nonce_field($akismet_nonce) ?>
  391. <input type="hidden" name="action" value="delete" />
  392. <?php printf(__('There are currently %1$s comments identified as spam.'), $spam_count); ?>&nbsp; &nbsp; <input type="submit" class="button" name="Submit" value="<?php _e('Delete all'); ?>" />
  393. <input type="hidden" name="display_time" value="<?php echo current_time('mysql', 1); ?>" />
  394. </form>
  395. <?php } ?>
  396. </div>
  397. <div class="wrap">
  398. <?php if ( isset( $_POST['s'] ) ) { ?>
  399. <h2><?php _e('Search'); ?></h2>
  400. <?php } else { ?>
  401. <?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>'; ?>
  402. <?php } ?>
  403. <?php
  404. if ( isset( $_POST['s'] ) ) {
  405.         $s = $wpdb->escape($_POST['s']);
  406.         $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments  WHERE
  407.                 (comment_author LIKE '%$s%' OR
  408.                 comment_author_email LIKE '%$s%' OR
  409.                 comment_author_url LIKE ('%$s%') OR
  410.                 comment_author_IP LIKE ('%$s%') OR
  411.                 comment_content LIKE ('%$s%') ) AND
  412.                 comment_approved = 'spam'
  413.                 ORDER BY comment_date DESC");
  414. } else {
  415.         if ( isset( $_GET['apage'] ) )
  416.                 $page = (int) $_GET['apage'];
  417.         else
  418.                 $page = 1;
  419.  
  420.         if ( $page < 2 )
  421.                 $page = 1;
  422.  
  423.         $start = ( $page - 1 ) * 50;
  424.         $end = $start + 50;
  425.  
  426.         $where = '';
  427.         if ( isset( $_GET['ctype'] ) ) {
  428.                 $type = preg_replace( '|[^a-z]|', '', $_GET['ctype'] );
  429.                 if ( 'comments' == $type )
  430.                         $type = '';
  431.                 $where = " AND comment_type = '$type' ";
  432.         }
  433.  
  434.         $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_approved = 'spam' $where ORDER BY comment_date DESC LIMIT $start, $end");
  435.         $total = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = 'spam' $where" );
  436.  
  437.         $totals = $wpdb->get_results( "SELECT comment_type, COUNT(*) AS cc FROM $wpdb->comments WHERE comment_approved = 'spam' GROUP BY comment_type" );
  438. ?>
  439. <ul class="akismet-tabs">
  440. <li <?php if ( !isset( $_GET['ctype'] ) ) echo ' class="active"'; ?>><a href="edit-comments.php?page=akismet-admin"><?php _e('All'); ?></a></li>
  441. <?php
  442. foreach ( $totals as $type ) {
  443.         if ( '' == $type->comment_type ) $type->comment_type = 'comments';
  444.         $show = ucwords( $type->comment_type );
  445.         $type->cc = number_format( $type->cc );
  446.         $extra = ( $_GET['ctype'] == $type->comment_type ) ? ' class="active"' : '';
  447.         echo "<li $extra><a href='edit-comments.php?page=akismet-admin&amp;ctype=$type->comment_type'>$show ($type->cc)</a></li>";
  448. }
  449. do_action( 'akismet_tabs' ); // so plugins can add more tabs easily
  450. ?>     
  451. </ul>
  452. <?php
  453. }
  454.  
  455. if ($comments) {
  456. ?>
  457. <form method="post" action="<?php echo attribute_escape("$link?page=akismet-admin"); ?>" id="akismetsearch">
  458. <p>  <input type="text" name="s" value="<?php if (isset($_POST['s'])) echo attribute_escape($_POST['s']); ?>" size="17" />
  459.   <input type="submit" class="button" name="submit" value="<?php echo attribute_escape(__('Search Spam &raquo;')) ?>"  />  </p>
  460. </form>
  461. <?php if ( $total > 50 ) {
  462. $total_pages = ceil( $total / 50 );
  463. $r = '';
  464. if ( 1 < $page ) {
  465.         $args['apage'] = ( 1 == $page - 1 ) ? '' : $page - 1;
  466.         $r .=  '<a class="prev" href="' . clean_url(add_query_arg( $args )) . '">&laquo; '. __('Previous Page') .'</a>' . "\n";
  467. }
  468. if ( ( $total_pages = ceil( $total / 50 ) ) > 1 ) {
  469.         for ( $page_num = 1; $page_num <= $total_pages; $page_num++ ) :
  470.                 if ( $page == $page_num ) :
  471.                         $r .=  "<strong>$page_num</strong>\n";
  472.                 else :
  473.                         $p = false;
  474.                         if ( $page_num < 3 || ( $page_num >= $page - 3 && $page_num <= $page + 3 ) || $page_num > $total_pages - 3 ) :
  475.                                 $args['apage'] = ( 1 == $page_num ) ? '' : $page_num;
  476.                                 $r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . ( $page_num ) . "</a>\n";
  477.                                 $in = true;
  478.                         elseif ( $in == true ) :
  479.                                 $r .= "...\n";
  480.                                 $in = false;
  481.                         endif;
  482.                 endif;
  483.         endfor;
  484. }
  485. if ( ( $page ) * 50 < $total || -1 == $total ) {
  486.         $args['apage'] = $page + 1;
  487.         $r .=  '<a class="next" href="' . clean_url(add_query_arg($args)) . '">'. __('Next Page') .' &raquo;</a>' . "\n";
  488. }
  489. echo "<p>$r</p>";
  490. ?>
  491.  
  492. <?php } ?>
  493. <form style="clear: both;" method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
  494. <?php akismet_nonce_field($akismet_nonce) ?>
  495. <input type="hidden" name="action" value="recover" />
  496. <ul id="spam-list" class="commentlist" style="list-style: none; margin: 0; padding: 0;">
  497. <?php
  498. $i = 0;
  499. foreach($comments as $comment) {
  500.         $i++;
  501.         $comment_date = mysql2date(get_option("date_format") . " @ " . get_option("time_format"), $comment->comment_date);
  502.         $post = get_post($comment->comment_post_ID);
  503.         $post_title = $post->post_title;
  504.         if ($i % 2) $class = 'class="alternate"';
  505.         else $class = '';
  506.         echo "\n\t<li id='comment-$comment->comment_ID' $class>";
  507.         ?>
  508.  
  509. <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>
  510.  
  511. <?php comment_text() ?>
  512.  
  513. <p><label for="spam-<?php echo $comment->comment_ID; ?>">
  514. <input type="checkbox" id="spam-<?php echo $comment->comment_ID; ?>" name="not_spam[]" value="<?php echo $comment->comment_ID; ?>" />
  515. <?php _e('Not Spam') ?></label> &#8212; <?php comment_date('M j, g:i A');  ?> &#8212; [
  516. <?php
  517. $post = get_post($comment->comment_post_ID);
  518. $post_title = wp_specialchars( $post->post_title, 'double' );
  519. $post_title = ('' == $post_title) ? "# $comment->comment_post_ID" : $post_title;
  520. ?>
  521.  <a href="<?php echo get_permalink($comment->comment_post_ID); ?>" title="<?php echo $post_title; ?>"><?php _e('View Post') ?></a> ] </p>
  522.  
  523.  
  524. <?php
  525. }
  526. ?>
  527. </ul>
  528. <?php if ( $total > 50 ) {
  529. $total_pages = ceil( $total / 50 );
  530. $r = '';
  531. if ( 1 < $page ) {
  532.         $args['apage'] = ( 1 == $page - 1 ) ? '' : $page - 1;
  533.         $r .=  '<a class="prev" href="' . clean_url(add_query_arg( $args )) . '">&laquo; '. __('Previous Page') .'</a>' . "\n";
  534. }
  535. if ( ( $total_pages = ceil( $total / 50 ) ) > 1 ) {
  536.         for ( $page_num = 1; $page_num <= $total_pages; $page_num++ ) :
  537.                 if ( $page == $page_num ) :
  538.                         $r .=  "<strong>$page_num</strong>\n";
  539.                 else :
  540.                         $p = false;
  541.                         if ( $page_num < 3 || ( $page_num >= $page - 3 && $page_num <= $page + 3 ) || $page_num > $total_pages - 3 ) :
  542.                                 $args['apage'] = ( 1 == $page_num ) ? '' : $page_num;
  543.                                 $r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . ( $page_num ) . "</a>\n";
  544.                                 $in = true;
  545.                         elseif ( $in == true ) :
  546.                                 $r .= "...\n";
  547.                                 $in = false;
  548.                         endif;
  549.                 endif;
  550.         endfor;
  551. }
  552. if ( ( $page ) * 50 < $total || -1 == $total ) {
  553.         $args['apage'] = $page + 1;
  554.         $r .=  '<a class="next" href="' . clean_url(add_query_arg($args)) . '">'. __('Next Page') .' &raquo;</a>' . "\n";
  555. }
  556. echo "<p>$r</p>";
  557. }
  558. ?>
  559. <p class="submit">
  560. <input type="submit" name="submit" value="<?php echo attribute_escape(__('De-spam marked comments &raquo;')); ?>" />
  561. </p>
  562. <p><?php _e('Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better.'); ?></p>
  563. </form>
  564. <?php
  565. } else {
  566. ?>
  567. <p><?php _e('No results found.'); ?></p>
  568. <?php } ?>
  569.  
  570. <?php if ( !isset( $_POST['s'] ) ) { ?>
  571. <form method="post" action="<?php echo attribute_escape( add_query_arg( 'noheader', 'true' ) ); ?>">
  572. <?php akismet_nonce_field($akismet_nonce) ?>
  573. <p><input type="hidden" name="action" value="delete" />
  574. <?php printf(__('There are currently %1$s comments identified as spam.'), $spam_count); ?>&nbsp; &nbsp; <input type="submit" name="Submit" value="<?php echo attribute_escape(__('Delete all')); ?>" />
  575. <input type="hidden" name="display_time" value="<?php echo current_time('mysql', 1); ?>" /></p>
  576. </form>
  577. <?php } ?>
  578. </div>
  579. <?php
  580.         }
  581. }
  582.  
  583. add_action('admin_menu', 'akismet_manage_page');
  584.  
  585. function akismet_stats() {
  586.         $count = get_option('akismet_spam_count');
  587.         if ( !$count )
  588.                 return;
  589.         $path = plugin_basename(__FILE__);
  590.         echo '<h3>'.__('Spam').'</h3>';
  591.         global $submenu;
  592.         if ( isset( $submenu['edit-comments.php'] ) )
  593.                 $link = 'edit-comments.php';
  594.         else
  595.                 $link = 'edit.php';
  596.         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($count) ).'</p>';
  597. }
  598.  
  599. add_action('activity_box_end', 'akismet_stats');
  600.  
  601.  
  602. if ( 'moderation.php' == $pagenow ) {
  603.         function akismet_recheck_button( $page ) {
  604.                 global $submenu;
  605.                 if ( isset( $submenu['edit-comments.php'] ) )
  606.                         $link = 'edit-comments.php';
  607.                 else
  608.                         $link = 'edit.php';
  609.                 $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>";
  610.                 $page = str_replace( '<div class="wrap">', '<div class="wrap">' . $button, $page );
  611.                 return $page;
  612.         }
  613.  
  614.         if ( $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '0'" ) )
  615.                 ob_start( 'akismet_recheck_button' );
  616. }
  617.  
  618. function akismet_recheck_queue() {
  619.         global $wpdb, $akismet_api_host, $akismet_api_port;
  620.  
  621.         if ( !isset( $_GET['recheckqueue'] ) )
  622.                 return;
  623.  
  624.         $moderation = $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = '0'", ARRAY_A );
  625.         foreach ( $moderation as $c ) {
  626.                 $c['user_ip']    = $c['comment_author_IP'];
  627.                 $c['user_agent'] = $c['comment_agent'];
  628.                 $c['referrer']   = '';
  629.                 $c['blog']       = get_option('home');
  630.                 $id = $c['comment_ID'];
  631.                
  632.                 $query_string = '';
  633.                 foreach ( $c as $key => $data )
  634.                 $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  635.                
  636.                 $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
  637.                 if ( 'true' == $response[1] ) {
  638.                         $wpdb->query( "UPDATE $wpdb->comments SET comment_approved = 'spam' WHERE comment_ID = $id" );
  639.                 }
  640.         }
  641.         wp_redirect( $_SERVER['HTTP_REFERER'] );
  642.         exit;
  643. }
  644.  
  645. function akismet_check_db_comment( $id ) {
  646.         global $wpdb, $akismet_api_host, $akismet_api_port;
  647.  
  648.         $id = (int) $id;
  649.         $c = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID = '$id'", ARRAY_A );
  650.         if ( !$c )
  651.                 return;
  652.  
  653.         $c['user_ip']    = $c['comment_author_IP'];
  654.         $c['user_agent'] = $c['comment_agent'];
  655.         $c['referrer']   = '';
  656.         $c['blog']       = get_option('home');
  657.         $id = $c['comment_ID'];
  658.        
  659.         $query_string = '';
  660.         foreach ( $c as $key => $data )
  661.         $query_string .= $key . '=' . urlencode( stripslashes($data) ) . '&';
  662.        
  663.         $response = akismet_http_post($query_string, $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
  664.         return $response[1];
  665. }
  666.  
  667. // This option causes tons of FPs, was removed in 2.1
  668. function akismet_kill_proxy_check( $option ) { return 0; }
  669. add_filter('option_open_proxy_check', 'akismet_kill_proxy_check');
  670.  
  671. // Widget stuff
  672. function widget_akismet_register() {
  673.         if ( function_exists('register_sidebar_widget') ) :
  674.         function widget_akismet($args) {
  675.                 extract($args);
  676.                 $options = get_option('widget_akismet');
  677.                 $count = number_format(get_option('akismet_spam_count'));
  678.                 $text = __('%d spam comments have been blocked by <a href="http://akismet.com">Akismet</a>.');
  679.                 ?>
  680.                         <?php echo $before_widget; ?>
  681.                                 <?php echo $before_title . $options['title'] . $after_title; ?>
  682.                                 <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>
  683.                         <?php echo $after_widget; ?>
  684.         <?php
  685.         }
  686.        
  687.         function widget_akismet_style() {
  688.                 ?>
  689. <style type="text/css">
  690. #aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
  691. #aka:hover{border:none;text-decoration:none}
  692. #aka:hover #akismet1{display:none}
  693. #aka:hover #akismet2,#akismet1{display:block}
  694. #akismet2{display:none;padding-top:2px}
  695. #akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
  696. #akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
  697. #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}
  698. </style>
  699.                 <?php
  700.         }
  701.  
  702.         function widget_akismet_control() {
  703.                 $options = $newoptions = get_option('widget_akismet');
  704.                 if ( $_POST["akismet-submit"] ) {
  705.                         $newoptions['title'] = strip_tags(stripslashes($_POST["akismet-title"]));
  706.                         if ( empty($newoptions['title']) ) $newoptions['title'] = 'Spam Blocked';
  707.                 }
  708.                 if ( $options != $newoptions ) {
  709.                         $options = $newoptions;
  710.                         update_option('widget_akismet', $options);
  711.                 }
  712.                 $title = htmlspecialchars($options['title'], ENT_QUOTES);
  713.         ?>
  714.                                 <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>
  715.                                 <input type="hidden" id="akismet-submit" name="akismet-submit" value="1" />
  716.         <?php
  717.         }
  718.  
  719.         register_sidebar_widget('Akismet', 'widget_akismet', null, 'akismet');
  720.         register_widget_control('Akismet', 'widget_akismet_control', 300, 75, 'akismet');
  721.         if ( is_active_widget('widget_akismet') )
  722.                 add_action('wp_head', 'widget_akismet_style');
  723.         endif;
  724. }
  725.  
  726. add_action('init', 'widget_akismet_register');
  727.  
  728. // Counter for non-widget users
  729. function akismet_counter() {
  730. ?>
  731. <style type="text/css">
  732. #akismetwrap #aka,#aka:link,#aka:hover,#aka:visited,#aka:active{color:#fff;text-decoration:none}
  733. #aka:hover{border:none;text-decoration:none}
  734. #aka:hover #akismet1{display:none}
  735. #aka:hover #akismet2,#akismet1{display:block}
  736. #akismet2{display:none;padding-top:2px}
  737. #akismeta{font-size:16px;font-weight:bold;line-height:18px;text-decoration:none}
  738. #akismetcount{display:block;font:15px Verdana,Arial,Sans-Serif;font-weight:bold;text-decoration:none}
  739. #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}
  740. </style>
  741. <?php
  742. $count = number_format(get_option('akismet_spam_count'));
  743. ?>
  744. <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>
  745. <?php
  746. }
  747.  
  748. ?>

Paste Details

Tags: akismet

advertising

Update the Post

Either update this post and resubmit it with changes, or make a new post.

You may also comment on this post.

update paste below
details of the post (optional)

Note: Only the paste content is required, though the following information can be useful to others.

Save name / title?

(space separated, optional)



Please note that information posted here will expire by default in one month. If you do not want it to expire, please set the expiry time above. If it is set to expire, web search engines will not be allowed to index it prior to it expiring. Items that are not marked to expire will be indexable by search engines. Be careful with your passwords. All illegal activities will be reported and any information will be handed over to the authorities, so be good.

fantasy-obligation