blob: 9f5d3b86afe32142bcd341081662f37d4de569b5 [file] [log] [blame]
thatcher1419f362006-01-17 23:56:12 +00001<?php
bdashe1974712007-06-04 09:41:09 +00002if ($_SERVER["REQUEST_METHOD"] != "POST") {
3 header('Allow: POST');
4 header("HTTP/1.1 405 Method Not Allowed");
5 header("Content-type: text/plain");
6 exit;
7}
thatcher1419f362006-01-17 23:56:12 +00008require( dirname(__FILE__) . '/wp-config.php' );
9
bdashe1974712007-06-04 09:41:09 +000010nocache_headers();
11
thatcher1419f362006-01-17 23:56:12 +000012$comment_post_ID = (int) $_POST['comment_post_ID'];
13
14$status = $wpdb->get_row("SELECT post_status, comment_status FROM $wpdb->posts WHERE ID = '$comment_post_ID'");
15
16if ( empty($status->comment_status) ) {
17 do_action('comment_id_not_found', $comment_post_ID);
18 exit;
19} elseif ( 'closed' == $status->comment_status ) {
20 do_action('comment_closed', $comment_post_ID);
bdashe1974712007-06-04 09:41:09 +000021 wp_die( __('Sorry, comments are closed for this item.') );
thatcher1419f362006-01-17 23:56:12 +000022} elseif ( 'draft' == $status->post_status ) {
23 do_action('comment_on_draft', $comment_post_ID);
24 exit;
25}
26
bdashe1974712007-06-04 09:41:09 +000027$comment_author = trim(strip_tags($_POST['author']));
thatcher1419f362006-01-17 23:56:12 +000028$comment_author_email = trim($_POST['email']);
29$comment_author_url = trim($_POST['url']);
30$comment_content = trim($_POST['comment']);
31
32// If the user is logged in
bdashe1974712007-06-04 09:41:09 +000033$user = wp_get_current_user();
34if ( $user->ID ) {
35 $comment_author = $wpdb->escape($user->display_name);
36 $comment_author_email = $wpdb->escape($user->user_email);
37 $comment_author_url = $wpdb->escape($user->user_url);
38 if ( current_user_can('unfiltered_html') ) {
39 if ( wp_create_nonce('unfiltered-html-comment_' . $comment_post_ID) != $_POST['_wp_unfiltered_html_comment'] ) {
40 kses_remove_filters(); // start with a clean slate
41 kses_init_filters(); // set up the filters
42 }
43 }
44} else {
thatcher1419f362006-01-17 23:56:12 +000045 if ( get_option('comment_registration') )
bdashe1974712007-06-04 09:41:09 +000046 wp_die( __('Sorry, you must be logged in to post a comment.') );
47}
thatcher1419f362006-01-17 23:56:12 +000048
49$comment_type = '';
50
bdashe1974712007-06-04 09:41:09 +000051if ( get_option('require_name_email') && !$user->ID ) {
thatcher1419f362006-01-17 23:56:12 +000052 if ( 6 > strlen($comment_author_email) || '' == $comment_author )
bdashe1974712007-06-04 09:41:09 +000053 wp_die( __('Error: please fill the required fields (name, email).') );
thatcher1419f362006-01-17 23:56:12 +000054 elseif ( !is_email($comment_author_email))
bdashe1974712007-06-04 09:41:09 +000055 wp_die( __('Error: please enter a valid email address.') );
thatcher1419f362006-01-17 23:56:12 +000056}
57
58if ( '' == $comment_content )
bdashe1974712007-06-04 09:41:09 +000059 wp_die( __('Error: please type a comment.') );
thatcher1419f362006-01-17 23:56:12 +000060
61$commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'user_ID');
62
bdashe1974712007-06-04 09:41:09 +000063$comment_id = wp_new_comment( $commentdata );
thatcher1419f362006-01-17 23:56:12 +000064
bdashe1974712007-06-04 09:41:09 +000065$comment = get_comment($comment_id);
66if ( !$user->ID ) :
67 setcookie('comment_author_' . COOKIEHASH, $comment->comment_author, time() + 30000000, COOKIEPATH, COOKIE_DOMAIN);
68 setcookie('comment_author_email_' . COOKIEHASH, $comment->comment_author_email, time() + 30000000, COOKIEPATH, COOKIE_DOMAIN);
69 setcookie('comment_author_url_' . COOKIEHASH, clean_url($comment->comment_author_url), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN);
70endif;
thatcher1419f362006-01-17 23:56:12 +000071
bdashe1974712007-06-04 09:41:09 +000072$location = ( empty($_POST['redirect_to']) ? get_permalink($comment_post_ID) : $_POST['redirect_to'] ) . '#comment-' . $comment_id;
73$location = apply_filters('comment_post_redirect', $location, $comment);
thatcher1419f362006-01-17 23:56:12 +000074
75wp_redirect($location);
bdashe1974712007-06-04 09:41:09 +000076
77?>