thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 1 | <?php |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 2 | if ($_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 | } |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 8 | require( dirname(__FILE__) . '/wp-config.php' ); |
| 9 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 10 | nocache_headers(); |
| 11 | |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 12 | $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 | |
| 16 | if ( 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); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 21 | wp_die( __('Sorry, comments are closed for this item.') ); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 22 | } elseif ( 'draft' == $status->post_status ) { |
| 23 | do_action('comment_on_draft', $comment_post_ID); |
| 24 | exit; |
| 25 | } |
| 26 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 27 | $comment_author = trim(strip_tags($_POST['author'])); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 28 | $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 |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 33 | $user = wp_get_current_user(); |
| 34 | if ( $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 { |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 45 | if ( get_option('comment_registration') ) |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 46 | wp_die( __('Sorry, you must be logged in to post a comment.') ); |
| 47 | } |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 48 | |
| 49 | $comment_type = ''; |
| 50 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 51 | if ( get_option('require_name_email') && !$user->ID ) { |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 52 | if ( 6 > strlen($comment_author_email) || '' == $comment_author ) |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 53 | wp_die( __('Error: please fill the required fields (name, email).') ); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 54 | elseif ( !is_email($comment_author_email)) |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 55 | wp_die( __('Error: please enter a valid email address.') ); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | if ( '' == $comment_content ) |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 59 | wp_die( __('Error: please type a comment.') ); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 60 | |
| 61 | $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'user_ID'); |
| 62 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 63 | $comment_id = wp_new_comment( $commentdata ); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 64 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 65 | $comment = get_comment($comment_id); |
| 66 | if ( !$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); |
| 70 | endif; |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 71 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 72 | $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); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 74 | |
| 75 | wp_redirect($location); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 76 | |
| 77 | ?> |