2003-04-01 16:12:34 +02:00
|
|
|
<?php
|
2008-05-25 17:50:15 +02:00
|
|
|
/**
|
|
|
|
* Handles Comment Post to WordPress and prevents duplicate comment posting.
|
|
|
|
*
|
2008-06-20 22:56:40 +02:00
|
|
|
* @package WordPress
|
2008-05-25 17:50:15 +02:00
|
|
|
*/
|
|
|
|
|
2020-01-02 12:42:01 +01:00
|
|
|
if ( 'POST' !== $_SERVER['REQUEST_METHOD'] ) {
|
2016-08-29 14:00:32 +02:00
|
|
|
$protocol = $_SERVER['SERVER_PROTOCOL'];
|
2021-11-10 00:07:01 +01:00
|
|
|
if ( ! in_array( $protocol, array( 'HTTP/1.1', 'HTTP/2', 'HTTP/2.0', 'HTTP/3' ), true ) ) {
|
2016-08-29 14:00:32 +02:00
|
|
|
$protocol = 'HTTP/1.0';
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
header( 'Allow: POST' );
|
|
|
|
header( "$protocol 405 Method Not Allowed" );
|
|
|
|
header( 'Content-Type: text/plain' );
|
2007-07-04 18:12:37 +02:00
|
|
|
exit;
|
2007-03-28 19:34:42 +02:00
|
|
|
}
|
2008-05-25 17:50:15 +02:00
|
|
|
|
|
|
|
/** Sets up the WordPress Environment. */
|
2020-02-06 07:33:11 +01:00
|
|
|
require __DIR__ . '/wp-load.php';
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2005-11-05 23:08:56 +01:00
|
|
|
nocache_headers();
|
|
|
|
|
2021-02-17 14:08:05 +01:00
|
|
|
$comment = wp_handle_comment_submission( wp_unslash( $_POST ) );
|
|
|
|
if ( is_wp_error( $comment ) ) {
|
|
|
|
$data = (int) $comment->get_error_data();
|
|
|
|
if ( ! empty( $data ) ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
wp_die(
|
2021-02-17 14:08:05 +01:00
|
|
|
'<p>' . $comment->get_error_message() . '</p>',
|
|
|
|
__( 'Comment Submission Failure' ),
|
2018-08-17 03:51:36 +02:00
|
|
|
array(
|
2021-02-17 14:08:05 +01:00
|
|
|
'response' => $data,
|
2017-12-01 00:11:00 +01:00
|
|
|
'back_link' => true,
|
|
|
|
)
|
|
|
|
);
|
2021-02-17 14:08:05 +01:00
|
|
|
} else {
|
|
|
|
exit;
|
2014-11-26 21:17:24 +01:00
|
|
|
}
|
2021-02-17 14:08:05 +01:00
|
|
|
}
|
2004-12-16 03:57:05 +01:00
|
|
|
|
2021-02-17 14:08:05 +01:00
|
|
|
$user = wp_get_current_user();
|
|
|
|
$cookies_consent = ( isset( $_POST['wp-comment-cookies-consent'] ) );
|
2013-09-05 18:05:09 +02:00
|
|
|
|
2021-02-17 14:08:05 +01:00
|
|
|
/**
|
2023-06-14 16:11:16 +02:00
|
|
|
* Fires after comment cookies are set.
|
2021-02-17 14:08:05 +01:00
|
|
|
*
|
|
|
|
* @since 3.4.0
|
|
|
|
* @since 4.9.6 The `$cookies_consent` parameter was added.
|
|
|
|
*
|
|
|
|
* @param WP_Comment $comment Comment object.
|
|
|
|
* @param WP_User $user Comment author's user object. The user may not exist.
|
|
|
|
* @param bool $cookies_consent Comment author's consent to store cookies.
|
|
|
|
*/
|
|
|
|
do_action( 'set_comment_cookies', $comment, $user, $cookies_consent );
|
2003-04-07 08:55:21 +02:00
|
|
|
|
2015-10-03 16:47:26 +02:00
|
|
|
$location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) : $_POST['redirect_to'] . '#comment-' . $comment->comment_ID;
|
2013-09-05 18:05:09 +02:00
|
|
|
|
2020-06-02 22:12:07 +02:00
|
|
|
// If user didn't consent to cookies, add specific query arguments to display the awaiting moderation message.
|
|
|
|
if ( ! $cookies_consent && 'unapproved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_author_email ) ) {
|
2019-01-21 02:34:51 +01:00
|
|
|
$location = add_query_arg(
|
|
|
|
array(
|
|
|
|
'unapproved' => $comment->comment_ID,
|
|
|
|
'moderation-hash' => wp_hash( $comment->comment_date_gmt ),
|
|
|
|
),
|
|
|
|
$location
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-09-05 18:05:09 +02:00
|
|
|
/**
|
2016-05-23 18:44:27 +02:00
|
|
|
* Filters the location URI to send the commenter after posting.
|
2013-09-05 18:05:09 +02:00
|
|
|
*
|
2014-02-09 21:12:12 +01:00
|
|
|
* @since 2.0.5
|
2013-09-05 18:05:09 +02:00
|
|
|
*
|
2015-09-03 20:17:24 +02:00
|
|
|
* @param string $location The 'redirect_to' URI sent via $_POST.
|
|
|
|
* @param WP_Comment $comment Comment object.
|
2013-09-05 18:05:09 +02:00
|
|
|
*/
|
|
|
|
$location = apply_filters( 'comment_post_redirect', $location, $comment );
|
2004-10-05 18:22:31 +02:00
|
|
|
|
2012-04-10 19:21:17 +02:00
|
|
|
wp_safe_redirect( $location );
|
2010-12-09 19:02:54 +01:00
|
|
|
exit;
|