function akismet_rightnow()
{
    global $submenu, $wp_db_version;
    if (8645 < $wp_db_version) {
        // 2.7
        $link = 'edit-comments.php?comment_status=spam';
    } elseif (isset($submenu['edit-comments.php'])) {
        $link = 'edit-comments.php?page=akismet-admin';
    } else {
        $link = 'edit.php?page=akismet-admin';
    }
    if ($count = get_option('akismet_spam_count')) {
        $intro = sprintf(__ngettext('<a href="%1$s">Akismet</a> has protected your site from %2$s spam comment already,', '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comments already,', $count), 'http://akismet.com/', number_format_i18n($count));
    } else {
        $intro = sprintf(__('<a href="%1$s">Akismet</a> blocks spam from getting to your blog,'), 'http://akismet.com/');
    }
    if ($queue_count = akismet_spam_count()) {
        $queue_text = sprintf(__ngettext('and there\'s <a href="%2$s">%1$s comment</a> in your spam queue right now.', 'and there are <a href="%2$s">%1$s comments</a> in your spam queue right now.', $queue_count), number_format_i18n($queue_count), clean_url($link));
    } else {
        $queue_text = sprintf(__("but there's nothing in your <a href='%1\$s'>spam queue</a> at the moment."), clean_url($link));
    }
    $text = sprintf(_c('%1$s %2$s|akismet_rightnow'), $intro, $queue_text);
    echo "<p class='akismet-right-now'>{$text}</p>\n";
}
Example #2
0
function akismet_caught()
{
    global $wpdb, $comment, $akismet_caught, $akismet_nonce;
    akismet_recheck_queue();
    if (isset($_POST['submit']) && 'recover' == $_POST['action'] && !empty($_POST['not_spam'])) {
        check_admin_referer($akismet_nonce);
        if (function_exists('current_user_can') && !current_user_can('moderate_comments')) {
            die(__('You do not have sufficient permission to moderate comments.'));
        }
        $i = 0;
        foreach ($_POST['not_spam'] as $comment) {
            $comment = (int) $comment;
            if (function_exists('wp_set_comment_status')) {
                wp_set_comment_status($comment, 'approve');
            } else {
                $wpdb->query("UPDATE {$wpdb->comments} SET comment_approved = '1' WHERE comment_ID = '{$comment}'");
            }
            akismet_submit_nonspam_comment($comment);
            ++$i;
        }
        $to = add_query_arg('recovered', $i, $_SERVER['HTTP_REFERER']);
        wp_safe_redirect($to);
        exit;
    }
    if ('delete' == $_POST['action']) {
        check_admin_referer($akismet_nonce);
        if (function_exists('current_user_can') && !current_user_can('moderate_comments')) {
            die(__('You do not have sufficient permission to moderate comments.'));
        }
        $delete_time = $wpdb->escape($_POST['display_time']);
        $comment_ids = $wpdb->get_col("SELECT comment_id FROM {$wpdb->comments} WHERE comment_approved = 'spam' AND '{$delete_time}' > comment_date_gmt");
        if (!empty($comment_ids)) {
            do_action('delete_comment', $comment_ids);
            $wpdb->query("DELETE FROM {$wpdb->comments} WHERE comment_id IN ( " . implode(', ', $comment_ids) . " )");
            wp_cache_delete('akismet_spam_count', 'widget');
        }
        $to = add_query_arg('deleted', 'all', $_SERVER['HTTP_REFERER']);
        wp_safe_redirect($to);
        exit;
    }
    if (isset($_GET['recovered'])) {
        $i = (int) $_GET['recovered'];
        echo '<div class="updated"><p>' . sprintf(__('%1$s comments recovered.'), $i) . "</p></div>";
    }
    if (isset($_GET['deleted'])) {
        echo '<div class="updated"><p>' . __('All spam deleted.') . '</p></div>';
    }
    if (isset($GLOBALS['submenu']['edit-comments.php'])) {
        $link = 'edit-comments.php';
    } else {
        $link = 'edit.php';
    }
    ?>
<style type="text/css">
.akismet-tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	clear: both;
	border-bottom: 1px solid #ccc;
	height: 31px;
	margin-bottom: 20px;
	background: #ddd;
	border-top: 1px solid #bdbdbd;
}
.akismet-tabs li {
	float: left;
	margin: 5px 0 0 20px;
}
.akismet-tabs a {
	display: block;
	padding: 4px .5em 3px;
	border-bottom: none;
	color: #036;
}
.akismet-tabs .active a {
	background: #fff;
	border: 1px solid #ccc;
	border-bottom: none;
	color: #000;
	font-weight: bold;
	padding-bottom: 4px;
}
#akismetsearch {
	float: right;
	margin-top: -.5em;
}

#akismetsearch p {
	margin: 0;
	padding: 0;
}
</style>
<div class="wrap">
<h2><?php 
    _e('Caught Spam');
    ?>
</h2>
<?php 
    $count = get_option('akismet_spam_count');
    if ($count) {
        ?>
<p><?php 
        printf(__('Akismet has caught <strong>%1$s spam</strong> for you since you first installed it.'), number_format_i18n($count));
        ?>
</p>
<?php 
    }
    $spam_count = akismet_spam_count();
    if (0 == $spam_count) {
        echo '<p>' . __('You have no spam currently in the queue. Must be your lucky day. :)') . '</p>';
        echo '</div>';
    } else {
        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>';
        if (!isset($_POST['s'])) {
            ?>
<form method="post" action="<?php 
            echo attribute_escape(add_query_arg('noheader', 'true'));
            ?>
">
<?php 
            akismet_nonce_field($akismet_nonce);
            ?>
<input type="hidden" name="action" value="delete" />
<?php 
            printf(__('There are currently %1$s comments identified as spam.'), $spam_count);
            ?>
&nbsp; &nbsp; <input type="submit" class="button delete" name="Submit" value="<?php 
            _e('Delete all');
            ?>
" />
<input type="hidden" name="display_time" value="<?php 
            echo current_time('mysql', 1);
            ?>
" />
</form>
<?php 
        }
        ?>
</div>
<div class="wrap">
<?php 
        if (isset($_POST['s'])) {
            ?>
<h2><?php 
            _e('Search');
            ?>
</h2>
<?php 
        } else {
            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>';
        }
        if (isset($_POST['s'])) {
            $s = $wpdb->escape($_POST['s']);
            $comments = $wpdb->get_results("SELECT * FROM {$wpdb->comments}  WHERE\r\n\t\t(comment_author LIKE '%{$s}%' OR\r\n\t\tcomment_author_email LIKE '%{$s}%' OR\r\n\t\tcomment_author_url LIKE ('%{$s}%') OR\r\n\t\tcomment_author_IP LIKE ('%{$s}%') OR\r\n\t\tcomment_content LIKE ('%{$s}%') ) AND\r\n\t\tcomment_approved = 'spam'\r\n\t\tORDER BY comment_date DESC");
        } else {
            if (isset($_GET['apage'])) {
                $page = (int) $_GET['apage'];
            } else {
                $page = 1;
            }
            if ($page < 2) {
                $page = 1;
            }
            $current_type = false;
            if (isset($_GET['ctype'])) {
                $current_type = preg_replace('|[^a-z]|', '', $_GET['ctype']);
            }
            $comments = akismet_spam_comments($current_type, $page);
            $total = akismet_spam_count($current_type);
            $totals = akismet_spam_totals();
            ?>
<ul class="akismet-tabs">
<li <?php 
            if (!isset($_GET['ctype'])) {
                echo ' class="active"';
            }
            ?>
><a href="edit-comments.php?page=akismet-admin"><?php 
            _e('All');
            ?>
</a></li>
<?php 
            foreach ($totals as $type => $type_count) {
                if ('comment' == $type) {
                    $type = 'comments';
                    $show = __('Comments');
                } else {
                    $show = ucwords($type);
                }
                $type_count = number_format_i18n($type_count);
                $extra = $current_type === $type ? ' class="active"' : '';
                echo "<li {$extra}><a href='edit-comments.php?page=akismet-admin&amp;ctype={$type}'>{$show} ({$type_count})</a></li>";
            }
            do_action('akismet_tabs');
            // so plugins can add more tabs easily
            ?>
</ul>
<?php 
        }
        if ($comments) {
            ?>
<form method="post" action="<?php 
            echo attribute_escape("{$link}?page=akismet-admin");
            ?>
" id="akismetsearch">
<p>  <input type="text" name="s" value="<?php 
            if (isset($_POST['s'])) {
                echo attribute_escape($_POST['s']);
            }
            ?>
" size="17" />
  <input type="submit" class="button" name="submit" value="<?php 
            echo attribute_escape(__('Search Spam &raquo;'));
            ?>
"  />  </p>
</form>
<?php 
            if ($total > 50) {
                $total_pages = ceil($total / 50);
                $r = '';
                if (1 < $page) {
                    $args['apage'] = 1 == $page - 1 ? '' : $page - 1;
                    $r .= '<a class="prev" href="' . clean_url(add_query_arg($args)) . '">' . __('&laquo; Previous Page') . '</a>' . "\n";
                }
                if (($total_pages = ceil($total / 50)) > 1) {
                    for ($page_num = 1; $page_num <= $total_pages; $page_num++) {
                        if ($page == $page_num) {
                            $r .= "<strong>{$page_num}</strong>\n";
                        } else {
                            $p = false;
                            if ($page_num < 3 || $page_num >= $page - 3 && $page_num <= $page + 3 || $page_num > $total_pages - 3) {
                                $args['apage'] = 1 == $page_num ? '' : $page_num;
                                $r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . $page_num . "</a>\n";
                                $in = true;
                            } elseif ($in == true) {
                                $r .= "...\n";
                                $in = false;
                            }
                        }
                    }
                }
                if ($page * 50 < $total || -1 == $total) {
                    $args['apage'] = $page + 1;
                    $r .= '<a class="next" href="' . clean_url(add_query_arg($args)) . '">' . __('Next Page &raquo;') . '</a>' . "\n";
                }
                echo "<p>{$r}</p>";
                ?>

<?php 
            }
            ?>
<form style="clear: both;" method="post" action="<?php 
            echo attribute_escape(add_query_arg('noheader', 'true'));
            ?>
">
<?php 
            akismet_nonce_field($akismet_nonce);
            ?>
<input type="hidden" name="action" value="recover" />
<ul id="spam-list" class="commentlist" style="list-style: none; margin: 0; padding: 0;">
<?php 
            $i = 0;
            foreach ($comments as $comment) {
                $i++;
                $comment_date = mysql2date(get_option("date_format") . " @ " . get_option("time_format"), $comment->comment_date);
                $post = get_post($comment->comment_post_ID);
                $post_title = $post->post_title;
                if ($i % 2) {
                    $class = 'class="alternate"';
                } else {
                    $class = '';
                }
                echo "\n\t<li id='comment-{$comment->comment_ID}' {$class}>";
                ?>

<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>

<?php 
                comment_text();
                ?>

<p><label for="spam-<?php 
                echo $comment->comment_ID;
                ?>
">
<input type="checkbox" id="spam-<?php 
                echo $comment->comment_ID;
                ?>
" name="not_spam[]" value="<?php 
                echo $comment->comment_ID;
                ?>
" />
<?php 
                _e('Not Spam');
                ?>
</label> &#8212; <?php 
                comment_date('M j, g:i A');
                ?>
 &#8212; [
<?php 
                $post = get_post($comment->comment_post_ID);
                $post_title = wp_specialchars($post->post_title, 'double');
                $post_title = '' == $post_title ? "# {$comment->comment_post_ID}" : $post_title;
                ?>
 <a href="<?php 
                echo get_permalink($comment->comment_post_ID);
                ?>
" title="<?php 
                echo $post_title;
                ?>
"><?php 
                _e('View Post');
                ?>
</a> ] </p>


<?php 
            }
            ?>
</ul>
<?php 
            if ($total > 50) {
                $total_pages = ceil($total / 50);
                $r = '';
                if (1 < $page) {
                    $args['apage'] = 1 == $page - 1 ? '' : $page - 1;
                    $r .= '<a class="prev" href="' . clean_url(add_query_arg($args)) . '">' . __('&laquo; Previous Page') . '</a>' . "\n";
                }
                if (($total_pages = ceil($total / 50)) > 1) {
                    for ($page_num = 1; $page_num <= $total_pages; $page_num++) {
                        if ($page == $page_num) {
                            $r .= "<strong>{$page_num}</strong>\n";
                        } else {
                            $p = false;
                            if ($page_num < 3 || $page_num >= $page - 3 && $page_num <= $page + 3 || $page_num > $total_pages - 3) {
                                $args['apage'] = 1 == $page_num ? '' : $page_num;
                                $r .= '<a class="page-numbers" href="' . clean_url(add_query_arg($args)) . '">' . $page_num . "</a>\n";
                                $in = true;
                            } elseif ($in == true) {
                                $r .= "...\n";
                                $in = false;
                            }
                        }
                    }
                }
                if ($page * 50 < $total || -1 == $total) {
                    $args['apage'] = $page + 1;
                    $r .= '<a class="next" href="' . clean_url(add_query_arg($args)) . '">' . __('Next Page &raquo;') . '</a>' . "\n";
                }
                echo "<p>{$r}</p>";
            }
            ?>
<p class="submit">
<input type="submit" name="submit" value="<?php 
            echo attribute_escape(__('De-spam marked comments &raquo;'));
            ?>
" />
</p>
<p><?php 
            _e('Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better.');
            ?>
</p>
</form>
<?php 
        } else {
            ?>
<p><?php 
            _e('No results found.');
            ?>
</p>
<?php 
        }
        ?>

<?php 
        if (!isset($_POST['s'])) {
            ?>
<form method="post" action="<?php 
            echo attribute_escape(add_query_arg('noheader', 'true'));
            ?>
">
<?php 
            akismet_nonce_field($akismet_nonce);
            ?>
<p><input type="hidden" name="action" value="delete" />
<?php 
            printf(__('There are currently %1$s comments identified as spam.'), $spam_count);
            ?>
&nbsp; &nbsp; <input type="submit" name="Submit" class="button" value="<?php 
            echo attribute_escape(__('Delete all'));
            ?>
" />
<input type="hidden" name="display_time" value="<?php 
            echo current_time('mysql', 1);
            ?>
" /></p>
</form>
<?php 
        }
        ?>
</div>
<?php 
    }
}
Example #3
0
                        echo '<li><a href="' . $next_link . '">' . $next_caption . '</a></li>' . "\n";
                    }
                    echo '</strong></li>';
                } elseif ($needs_next) {
                    echo '<li><a href="' . $next_link . '" target="_replace">' . $more_caption . '</a></li>' . "\n";
                }
            }
        } else {
            echo '<li>' . __('No comments found.', 'wphone') . "</li>\n";
        }
        if (!$this->iscompat || $offset < $limit) {
            echo "</ul>\n";
        }
    } else {
        $count_info = array();
        $approved_comments = $wpdb->get_results($approved_sql);
        $count_info[10] = $wpdb->get_var("SELECT FOUND_ROWS()");
        $moderation_comments = $wpdb->get_results($moderation_sql);
        $count_info[20] = count($moderation_comments);
        $count_info[30] = function_exists('akismet_spam_count') ? akismet_spam_count() : count($wpdb->get_results($spam_sql));
        // Allows plugin developers to add or overwrite the count info
        $count_info = apply_filters('wphone_commentsmenu_countlist', $count_info);
        if (!$this->iscompat) {
            echo '<h2 class="accessible">' . __('Comments') . "</h2>\n";
        }
        echo '<ul id="commentmenu" title="' . __('Comments') . '"  selected="true">';
        $this->show_submenu('comments', $count_info, TRUE);
        echo "</ul>\n";
    }
}
$this->test_interface('footer');
Example #4
0
function akismet_manage_page()
{
    global $wpdb, $submenu;
    $count = sprintf(__('Akismet Spam (%s)'), akismet_spam_count());
    if (isset($submenu['edit-comments.php'])) {
        add_submenu_page('edit-comments.php', __('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught');
    } elseif (function_exists('add_management_page')) {
        add_management_page(__('Akismet Spam'), $count, 'moderate_comments', 'akismet-admin', 'akismet_caught');
    }
}
function akismet_rightnow()
{
    global $submenu, $wp_db_version;
    if (8645 < $wp_db_version) {
        // 2.7
        $link = add_query_arg(array('comment_status' => 'spam'), admin_url('edit-comments.php'));
    } elseif (isset($submenu['edit-comments.php'])) {
        $link = add_query_arg(array('page' => 'akismet-admin'), admin_url('edit-comments.php'));
    } else {
        $link = add_query_arg(array('page' => 'akismet-admin'), admin_url('edit.php'));
    }
    if ($count = get_option('akismet_spam_count')) {
        $intro = sprintf(_n('<a href="%1$s">Akismet</a> has protected your site from %2$s spam comment already. ', '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comments already. ', $count), 'http://akismet.com/?return=true', number_format_i18n($count));
    } else {
        $intro = sprintf(__('<a href="%1$s">Akismet</a> blocks spam from getting to your blog. '), 'http://akismet.com/?return=true');
    }
    $link = function_exists('esc_url') ? esc_url($link) : clean_url($link);
    if ($queue_count = akismet_spam_count()) {
        $queue_text = sprintf(_n('There\'s <a href="%2$s">%1$s comment</a> in your spam queue right now.', 'There are <a href="%2$s">%1$s comments</a> in your spam queue right now.', $queue_count), number_format_i18n($queue_count), $link);
    } else {
        $queue_text = sprintf(__("There's nothing in your <a href='%1\$s'>spam queue</a> at the moment."), $link);
    }
    $text = $intro . '<br />' . $queue_text;
    echo "<p class='akismet-right-now'>{$text}</p>\n";
}
Example #6
0
function akismet_rightnow()
{
    global $submenu, $wp_db_version;
    $plural_func = '__ngettext';
    if (function_exists('_n')) {
        $plural_func = '_n';
    }
    // clean_url was deprecated in WP 3.0
    $esc_url = 'clean_url';
    if (function_exists('esc_url')) {
        $esc_url = 'esc_url';
    }
    if (8645 < $wp_db_version) {
        // 2.7
        $link = 'edit-comments.php?comment_status=spam';
    } elseif (isset($submenu['edit-comments.php'])) {
        $link = 'edit-comments.php?page=akismet-admin';
    } else {
        $link = 'edit.php?page=akismet-admin';
    }
    if ($count = get_option('akismet_spam_count')) {
        $intro = sprintf($plural_func('<a href="%1$s">Akismet</a> has protected your site from %2$s spam comment already. ', '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comments already. ', $count), 'http://akismet.com/', number_format_i18n($count));
    } else {
        $intro = sprintf(__('<a href="%1$s">Akismet</a> blocks spam from getting to your blog. '), 'http://akismet.com/');
    }
    if ($queue_count = akismet_spam_count()) {
        $queue_text = sprintf($plural_func('There\'s <a href="%2$s">%1$s comment</a> in your spam queue right now.', 'There are <a href="%2$s">%1$s comments</a> in your spam queue right now.', $queue_count), number_format_i18n($queue_count), $esc_url($link));
    } else {
        $queue_text = sprintf(__("There's nothing in your <a href='%1\$s'>spam queue</a> at the moment."), $esc_url($link));
    }
    $text = $intro . '<br />' . $queue_text;
    echo "<p class='akismet-right-now'>{$text}</p>\n";
}