PageRenderTime 59ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-comments-post.php

https://gitlab.com/Blueprint-Marketing/WordPress-1
PHP | 154 lines | 73 code | 21 blank | 60 comment | 23 complexity | f7268ccd5aa033f919c2975bc523bd86 MD5 | raw file
  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. /**
  20. * Fires when a comment is attempted on a post that does not exist.
  21. *
  22. * @since unknown
  23. * @param int $comment_post_ID Post ID.
  24. */
  25. do_action( 'comment_id_not_found', $comment_post_ID );
  26. exit;
  27. }
  28. // get_post_status() will get the parent status for attachments.
  29. $status = get_post_status($post);
  30. $status_obj = get_post_status_object($status);
  31. if ( ! comments_open( $comment_post_ID ) ) {
  32. /**
  33. * Fires when a comment is attempted on a post that has comments closed.
  34. *
  35. * @since unknown
  36. * @param int $comment_post_ID Post ID.
  37. */
  38. do_action( 'comment_closed', $comment_post_ID );
  39. wp_die( __('Sorry, comments are closed for this item.') );
  40. } elseif ( 'trash' == $status ) {
  41. /**
  42. * Fires when a comment is attempted on a trashed post.
  43. *
  44. * @since 2.9.0
  45. * @param int $comment_post_ID Post ID.
  46. */
  47. do_action( 'comment_on_trash', $comment_post_ID );
  48. exit;
  49. } elseif ( ! $status_obj->public && ! $status_obj->private ) {
  50. /**
  51. * Fires when a comment is attempted on a post in draft mode.
  52. *
  53. * @since unknown
  54. * @param int $comment_post_ID Post ID.
  55. */
  56. do_action( 'comment_on_draft', $comment_post_ID );
  57. exit;
  58. } elseif ( post_password_required( $comment_post_ID ) ) {
  59. /**
  60. * Fires when a comment is attempted on a password-protected post.
  61. *
  62. * @since unknown
  63. * @param int $comment_post_ID Post ID.
  64. */
  65. do_action( 'comment_on_password_protected', $comment_post_ID );
  66. exit;
  67. } else {
  68. /**
  69. * Fires before a comment is posted.
  70. *
  71. * @since unknown
  72. * @param int $comment_post_ID Post ID.
  73. */
  74. do_action( 'pre_comment_on_post', $comment_post_ID );
  75. }
  76. $comment_author = ( isset($_POST['author']) ) ? trim(strip_tags($_POST['author'])) : null;
  77. $comment_author_email = ( isset($_POST['email']) ) ? trim($_POST['email']) : null;
  78. $comment_author_url = ( isset($_POST['url']) ) ? trim($_POST['url']) : null;
  79. $comment_content = ( isset($_POST['comment']) ) ? trim($_POST['comment']) : null;
  80. // If the user is logged in
  81. $user = wp_get_current_user();
  82. if ( $user->exists() ) {
  83. if ( empty( $user->display_name ) )
  84. $user->display_name=$user->user_login;
  85. $comment_author = wp_slash( $user->display_name );
  86. $comment_author_email = wp_slash( $user->user_email );
  87. $comment_author_url = wp_slash( $user->user_url );
  88. if ( current_user_can( 'unfiltered_html' ) ) {
  89. if ( ! isset( $_POST['_wp_unfiltered_html_comment'] )
  90. || ! wp_verify_nonce( $_POST['_wp_unfiltered_html_comment'], 'unfiltered-html-comment_' . $comment_post_ID )
  91. ) {
  92. kses_remove_filters(); // start with a clean slate
  93. kses_init_filters(); // set up the filters
  94. }
  95. }
  96. } else {
  97. if ( get_option('comment_registration') || 'private' == $status )
  98. wp_die( __('Sorry, you must be logged in to post a comment.') );
  99. }
  100. $comment_type = '';
  101. if ( get_option('require_name_email') && !$user->exists() ) {
  102. if ( 6 > strlen($comment_author_email) || '' == $comment_author )
  103. wp_die( __('<strong>ERROR</strong>: please fill the required fields (name, email).') );
  104. elseif ( !is_email($comment_author_email))
  105. wp_die( __('<strong>ERROR</strong>: please enter a valid email address.') );
  106. }
  107. if ( '' == $comment_content )
  108. wp_die( __('<strong>ERROR</strong>: please type a comment.') );
  109. $comment_parent = isset($_POST['comment_parent']) ? absint($_POST['comment_parent']) : 0;
  110. $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'comment_parent', 'user_ID');
  111. $comment_id = wp_new_comment( $commentdata );
  112. $comment = get_comment($comment_id);
  113. /**
  114. * Perform other actions when comment cookies are set.
  115. *
  116. * @since 3.4.0
  117. *
  118. * @param object $comment Comment object.
  119. * @param WP_User $user User object. The user may not exist.
  120. */
  121. do_action( 'set_comment_cookies', $comment, $user );
  122. $location = empty($_POST['redirect_to']) ? get_comment_link($comment_id) : $_POST['redirect_to'] . '#comment-' . $comment_id;
  123. /**
  124. * The location URI to send commenter after posting.
  125. *
  126. * @since unknown
  127. *
  128. * @param string $location The 'redirect_to' URI sent via $_POST.
  129. * @param object $comment Comment object.
  130. */
  131. $location = apply_filters( 'comment_post_redirect', $location, $comment );
  132. wp_safe_redirect( $location );
  133. exit;