PageRenderTime 44ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/htdocs/wp-comments-post.php

https://bitbucket.org/dkrzos/phc
PHP | 99 lines | 71 code | 20 blank | 8 comment | 23 complexity | e3078b7123750960c4bd59d2a5f7c541 MD5 | raw file
Possible License(s): GPL-2.0
  1. <?php
  2. /**
  3. * Handles Comment Post to WordPress and prevents duplicate comment posting.
  4. *
  5. * @package WordPress
  6. */
  7. if ( 'POST' != $_SERVER['REQUEST_METHOD'] ) {
  8. header('Allow: POST');
  9. header('HTTP/1.1 405 Method Not Allowed');
  10. header('Content-Type: text/plain');
  11. exit;
  12. }
  13. /** Sets up the WordPress Environment. */
  14. require( dirname(__FILE__) . '/wp-load.php' );
  15. nocache_headers();
  16. $comment_post_ID = isset($_POST['comment_post_ID']) ? (int) $_POST['comment_post_ID'] : 0;
  17. $post = get_post($comment_post_ID);
  18. if ( empty($post->comment_status) ) {
  19. do_action('comment_id_not_found', $comment_post_ID);
  20. exit;
  21. }
  22. // get_post_status() will get the parent status for attachments.
  23. $status = get_post_status($post);
  24. $status_obj = get_post_status_object($status);
  25. if ( !comments_open($comment_post_ID) ) {
  26. do_action('comment_closed', $comment_post_ID);
  27. wp_die( __('Sorry, comments are closed for this item.') );
  28. } elseif ( 'trash' == $status ) {
  29. do_action('comment_on_trash', $comment_post_ID);
  30. exit;
  31. } elseif ( !$status_obj->public && !$status_obj->private ) {
  32. do_action('comment_on_draft', $comment_post_ID);
  33. exit;
  34. } elseif ( post_password_required($comment_post_ID) ) {
  35. do_action('comment_on_password_protected', $comment_post_ID);
  36. exit;
  37. } else {
  38. do_action('pre_comment_on_post', $comment_post_ID);
  39. }
  40. $comment_author = ( isset($_POST['author']) ) ? trim(strip_tags($_POST['author'])) : null;
  41. $comment_author_email = ( isset($_POST['email']) ) ? trim($_POST['email']) : null;
  42. $comment_author_url = ( isset($_POST['url']) ) ? trim($_POST['url']) : null;
  43. $comment_content = ( isset($_POST['comment']) ) ? trim($_POST['comment']) : null;
  44. // If the user is logged in
  45. $user = wp_get_current_user();
  46. if ( $user->exists() ) {
  47. if ( empty( $user->display_name ) )
  48. $user->display_name=$user->user_login;
  49. $comment_author = $wpdb->escape($user->display_name);
  50. $comment_author_email = $wpdb->escape($user->user_email);
  51. $comment_author_url = $wpdb->escape($user->user_url);
  52. if ( current_user_can('unfiltered_html') ) {
  53. if ( wp_create_nonce('unfiltered-html-comment_' . $comment_post_ID) != $_POST['_wp_unfiltered_html_comment'] ) {
  54. kses_remove_filters(); // start with a clean slate
  55. kses_init_filters(); // set up the filters
  56. }
  57. }
  58. } else {
  59. if ( get_option('comment_registration') || 'private' == $status )
  60. wp_die( __('Sorry, you must be logged in to post a comment.') );
  61. }
  62. $comment_type = '';
  63. if ( get_option('require_name_email') && !$user->exists() ) {
  64. if ( 6 > strlen($comment_author_email) || '' == $comment_author )
  65. wp_die( __('<strong>ERROR</strong>: please fill the required fields (name, email).') );
  66. elseif ( !is_email($comment_author_email))
  67. wp_die( __('<strong>ERROR</strong>: please enter a valid email address.') );
  68. }
  69. if ( '' == $comment_content )
  70. wp_die( __('<strong>ERROR</strong>: please type a comment.') );
  71. $comment_parent = isset($_POST['comment_parent']) ? absint($_POST['comment_parent']) : 0;
  72. $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'comment_parent', 'user_ID');
  73. $comment_id = wp_new_comment( $commentdata );
  74. $comment = get_comment($comment_id);
  75. do_action('set_comment_cookies', $comment, $user);
  76. $location = empty($_POST['redirect_to']) ? get_comment_link($comment_id) : $_POST['redirect_to'] . '#comment-' . $comment_id;
  77. $location = apply_filters('comment_post_redirect', $location, $comment);
  78. wp_safe_redirect( $location );
  79. exit;