PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.2-a.3
Jetpack – WP Security, Backup, Speed, & Growth v16.2-a.3
12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 14.4.2 All 500 releases
jetpack / json-endpoints / class.wpcom-json-api-update-comment-endpoint.php
class.wpcom-json-api-update-comment-endpoint.php
477 lines 15.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
2 /**
3 * Manage comments via the WordPress.com REST API.
4 *
5 * Endpoints;
6 * Create a comment on a post: /sites/%s/posts/%d/replies/new
7 * Create a comment as a reply to another comment: /sites/%s/comments/%d/replies/new
8 * Edit a comment: /sites/%s/comments/%d
9 * Delete a comment: /sites/%s/comments/%d/delete
10 */
11
12 use Automattic\Jetpack\Status;
13
14 if ( ! defined( 'ABSPATH' ) ) {
15 exit( 0 );
16 }
17
18 new WPCOM_JSON_API_Update_Comment_Endpoint(
19 array(
20 'description' => 'Create a comment on a post.',
21 'group' => 'comments',
22 'stat' => 'posts:1:replies:new',
23
24 'method' => 'POST',
25 'path' => '/sites/%s/posts/%d/replies/new',
26 'path_labels' => array(
27 '$site' => '(int|string) Site ID or domain',
28 '$post_ID' => '(int) The post ID',
29 ),
30
31 'request_format' => array(
32 // explicitly document all input.
33 'content' => '(HTML) The comment text.',
34 // @todo Should we open this up to unauthenticated requests too?
35 // 'author' => '(author object) The author of the comment.',
36 ),
37
38 'pass_wpcom_user_details' => true,
39
40 'allow_fallback_to_jetpack_blog_token' => true,
41
42 'example_request' => 'https://public-api.wordpress.com/rest/v1/sites/82974409/posts/843/replies/new/',
43 'example_request_data' => array(
44 'headers' => array(
45 'authorization' => 'Bearer YOUR_API_TOKEN',
46 ),
47 'body' => array(
48 'content' => 'Your reply is very interesting. This is a reply.',
49 ),
50 ),
51 )
52 );
53
54 new WPCOM_JSON_API_Update_Comment_Endpoint(
55 array(
56 'description' => 'Create a comment as a reply to another comment.',
57 'group' => 'comments',
58 'stat' => 'comments:1:replies:new',
59
60 'method' => 'POST',
61 'path' => '/sites/%s/comments/%d/replies/new',
62 'path_labels' => array(
63 '$site' => '(int|string) Site ID or domain',
64 '$comment_ID' => '(int) The comment ID',
65 ),
66
67 'request_format' => array(
68 'content' => '(HTML) The comment text.',
69 // @todo Should we open this up to unauthenticated requests too?
70 // 'author' => '(author object) The author of the comment.',
71 ),
72
73 'pass_wpcom_user_details' => true,
74
75 'allow_fallback_to_jetpack_blog_token' => true,
76
77 'example_request' => 'https://public-api.wordpress.com/rest/v1/sites/82974409/comments/29/replies/new',
78 'example_request_data' => array(
79 'headers' => array(
80 'authorization' => 'Bearer YOUR_API_TOKEN',
81 ),
82 'body' => array(
83 'content' => 'This reply is very interesting. This is editing a comment reply via the API.',
84 ),
85 ),
86 )
87 );
88
89 new WPCOM_JSON_API_Update_Comment_Endpoint(
90 array(
91 'description' => 'Edit a comment.',
92 'group' => 'comments',
93 'stat' => 'comments:1:POST',
94
95 'method' => 'POST',
96 'path' => '/sites/%s/comments/%d',
97 'path_labels' => array(
98 '$site' => '(int|string) Site ID or domain',
99 '$comment_ID' => '(int) The comment ID',
100 ),
101
102 'request_format' => array(
103 'author' => "(string) The comment author's name.",
104 'author_email' => "(string) The comment author's email.",
105 'author_url' => "(string) The comment author's URL.",
106 'content' => '(HTML) The comment text.',
107 'date' => "(ISO 8601 datetime) The comment's creation time.",
108 'status' => array(
109 'approved' => 'Approve the comment.',
110 'unapproved' => 'Remove the comment from public view and send it to the moderation queue.',
111 'spam' => 'Mark the comment as spam.',
112 'unspam' => 'Unmark the comment as spam. Will attempt to set it to the previous status.',
113 'trash' => 'Send a comment to the trash if trashing is enabled (see constant: EMPTY_TRASH_DAYS).',
114 'untrash' => 'Untrash a comment. Only works when the comment is in the trash.',
115 ),
116 ),
117
118 'example_request' => 'https://public-api.wordpress.com/rest/v1/sites/82974409/comments/29',
119 'example_request_data' => array(
120 'headers' => array(
121 'authorization' => 'Bearer YOUR_API_TOKEN',
122 ),
123 'body' => array(
124 'content' => 'This reply is now edited via the API.',
125 'status' => 'approved',
126 ),
127 ),
128 )
129 );
130
131 new WPCOM_JSON_API_Update_Comment_Endpoint(
132 array(
133 'description' => 'Delete a comment.',
134 'group' => 'comments',
135 'stat' => 'comments:1:delete',
136
137 'method' => 'POST',
138 'path' => '/sites/%s/comments/%d/delete',
139 'path_labels' => array(
140 '$site' => '(int|string) Site ID or domain',
141 '$comment_ID' => '(int) The comment ID',
142 ),
143
144 'example_request' => 'https://public-api.wordpress.com/rest/v1/sites/82974409/comments/$comment_ID/delete',
145 'example_request_data' => array(
146 'headers' => array(
147 'authorization' => 'Bearer YOUR_API_TOKEN',
148 ),
149 ),
150 )
151 );
152
153 /**
154 * Update comments endpoint class.
155 *
156 * @phan-constructor-used-for-side-effects
157 */
158 class WPCOM_JSON_API_Update_Comment_Endpoint extends WPCOM_JSON_API_Comment_Endpoint {
159 /**
160 * WPCOM_JSON_API_Update_Comment_Endpoint constructor.
161 *
162 * @param array $args - Args.
163 */
164 public function __construct( $args ) {
165 parent::__construct( $args );
166 if ( $this->api->ends_with( $this->path, '/delete' ) ) {
167 $this->comment_object_format['status']['deleted'] = 'The comment has been deleted permanently.';
168 }
169 }
170
171 /**
172 * Update comment API callback.
173 *
174 * /sites/%s/posts/%d/replies/new -> $blog_id, $post_id
175 * /sites/%s/comments/%d/replies/new -> $blog_id, $comment_id
176 * /sites/%s/comments/%d -> $blog_id, $comment_id
177 * /sites/%s/comments/%d/delete -> $blog_id, $comment_id
178 *
179 * @param string $path API path.
180 * @param int $blog_id The blog ID.
181 * @param int $object_id The object ID.
182 *
183 * @return bool|WP_Error|array
184 */
185 public function callback( $path = '', $blog_id = 0, $object_id = 0 ) {
186 if ( $this->api->ends_with( $path, '/new' ) ) {
187 $blog_id = $this->api->switch_to_blog_and_validate_user( $this->api->get_blog_id( $blog_id ), false );
188 } else {
189 $blog_id = $this->api->switch_to_blog_and_validate_user( $this->api->get_blog_id( $blog_id ) );
190 }
191 if ( is_wp_error( $blog_id ) ) {
192 return $blog_id;
193 }
194
195 if ( $this->api->ends_with( $path, '/delete' ) ) {
196 return $this->delete_comment( $path, $blog_id, $object_id );
197 } elseif ( $this->api->ends_with( $path, '/new' ) ) {
198 if ( str_contains( $path, '/posts/' ) ) {
199 return $this->new_comment( $path, $blog_id, $object_id, 0 );
200 } else {
201 return $this->new_comment( $path, $blog_id, 0, $object_id );
202 }
203 }
204
205 return $this->update_comment( $path, $blog_id, $object_id );
206 }
207
208 /**
209 * Add a new comment to a post or as a reply to another comment.
210 *
211 * /sites/%s/posts/%d/replies/new -> $blog_id, $post_id
212 * /sites/%s/comments/%d/replies/new -> $blog_id, $comment_id
213 *
214 * @param string $path API path.
215 * @param int $blog_id The blog ID.
216 * @param int $post_id The post ID.
217 * @param int $comment_parent_id The comment parent ID.
218 *
219 * @return bool|WP_Error|array
220 */
221 public function new_comment( $path, $blog_id, $post_id, $comment_parent_id ) {
222 $comment_parent = null;
223 if ( ! $post_id ) {
224 $comment_parent = get_comment( $comment_parent_id );
225 if ( ! $comment_parent_id || ! $comment_parent || is_wp_error( $comment_parent ) ) {
226 return new WP_Error( 'unknown_comment', 'Unknown comment', 404 );
227 }
228
229 $post_id = $comment_parent->comment_post_ID;
230 }
231
232 $post = get_post( $post_id );
233 if ( ! $post || is_wp_error( $post ) ) {
234 return new WP_Error( 'unknown_post', 'Unknown post', 404 );
235 }
236
237 if (
238 ( new Status() )->is_private_site() &&
239 /**
240 * Filter allowing non-registered users on the site to comment.
241 *
242 * @module json-api
243 *
244 * @since 3.4.0
245 *
246 * @param bool is_user_member_of_blog() Is the user member of the site.
247 */
248 ! apply_filters( 'wpcom_json_api_user_is_member_of_blog', is_user_member_of_blog() ) &&
249 ! is_super_admin()
250 ) {
251 return new WP_Error( 'unauthorized', 'User cannot create comments', 403 );
252 }
253
254 if ( ! comments_open( $post->ID ) && ! current_user_can( 'edit_post', $post->ID ) ) {
255 return new WP_Error( 'unauthorized', 'Comments on this post are closed', 403 );
256 }
257
258 $can_view = $this->user_can_view_post( $post->ID );
259 if ( ! $can_view || is_wp_error( $can_view ) ) {
260 return $can_view;
261 }
262
263 $post_status = get_post_status_object( get_post_status( $post ) );
264 if ( ! $post_status->public && ! $post_status->private ) {
265 return new WP_Error( 'unauthorized', 'Comments on drafts are not allowed', 403 );
266 }
267
268 $args = $this->query_args();
269 $input = $this->input();
270 if ( ! is_array( $input ) || ! $input || ! strlen( $input['content'] ) ) {
271 return new WP_Error( 'invalid_input', 'Invalid request input', 400 );
272 }
273
274 $user = wp_get_current_user();
275 if ( ! $user || is_wp_error( $user ) || ! $user->ID ) {
276 $auth_required = false;
277 if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
278 $auth_required = true;
279 } elseif ( isset( $this->api->token_details['user'] ) ) {
280 $user = (object) $this->api->token_details['user'];
281 foreach ( array( 'display_name', 'user_email', 'user_url' ) as $user_datum ) {
282 if ( ! isset( $user->$user_datum ) ) {
283 $auth_required = true;
284 }
285 }
286 if ( ! isset( $user->ID ) ) {
287 $user->ID = 0;
288 }
289
290 $author = get_user_by( 'id', (int) $user->ID );
291 // If we have a user with an external ID saved, we can use it.
292 if (
293 ! $auth_required
294 && $user->ID
295 && $author
296 ) {
297 $user = $author;
298 }
299 } else {
300 $auth_required = true;
301 }
302
303 if ( $auth_required ) {
304 return new WP_Error( 'authorization_required', 'An active access token must be used to comment.', 403 );
305 }
306 }
307
308 $insert = array(
309 'comment_post_ID' => $post->ID,
310 'user_ID' => $user->ID,
311 'comment_author' => $user->display_name,
312 'comment_author_email' => $user->user_email,
313 'comment_author_url' => $user->user_url,
314 'comment_content' => $input['content'],
315 'comment_parent' => $comment_parent_id,
316 'comment_type' => 'comment',
317 );
318
319 if ( ! empty( $this->api->token_details['user']['user_ip'] ) && filter_var( $this->api->token_details['user']['user_ip'], FILTER_VALIDATE_IP ) ) {
320 $insert['comment_author_IP'] = $this->api->token_details['user']['user_ip'];
321 }
322
323 if ( $comment_parent_id ) {
324 if ( '0' === $comment_parent->comment_approved && current_user_can( 'edit_comment', $comment_parent->comment_ID ) ) {
325 wp_set_comment_status( $comment_parent->comment_ID, 'approve' );
326 }
327 }
328
329 $this->api->trap_wp_die( 'comment_failure' );
330 $comment_id = wp_new_comment( add_magic_quotes( $insert ) );
331 $this->api->trap_wp_die( null );
332
333 $return = $this->get_comment( $comment_id, $args['context'] );
334 if ( ! $return ) {
335 return new WP_Error( 400, __( 'Comment cache problem?', 'jetpack' ) );
336 }
337 if ( is_wp_error( $return ) ) {
338 return $return;
339 }
340
341 /** This action is documented in json-endpoints/class.wpcom-json-api-site-settings-endpoint.php */
342 do_action( 'wpcom_json_api_objects', 'comments' );
343 return $return;
344 }
345
346 /**
347 * Update a comment.
348 *
349 * /sites/%s/comments/%d -> $blog_id, $comment_id
350 *
351 * @param string $path API path.
352 * @param int $blog_id Blog ID.
353 * @param int $comment_id Comment ID.
354 *
355 * @return bool|WP_Error|array
356 */
357 public function update_comment( $path, $blog_id, $comment_id ) {
358 $comment = get_comment( $comment_id );
359 if ( ! $comment || is_wp_error( $comment ) ) {
360 return new WP_Error( 'unknown_comment', 'Unknown comment', 404 );
361 }
362
363 if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) ) {
364 return new WP_Error( 'unauthorized', 'User cannot edit comment', 403 );
365 }
366
367 $args = $this->query_args();
368 $input = $this->input( false );
369 if ( ! is_array( $input ) || ! $input ) {
370 return new WP_Error( 'invalid_input', 'Invalid request input', 400 );
371 }
372
373 $update = array();
374 foreach ( $input as $key => $value ) {
375 $update[ "comment_$key" ] = $value;
376 }
377
378 $comment_status = wp_get_comment_status( $comment->comment_ID );
379 if ( isset( $update['comment_status'] ) ) {
380 switch ( $update['comment_status'] ) {
381 case 'approved':
382 if ( 'approve' !== $comment_status ) {
383 wp_set_comment_status( $comment->comment_ID, 'approve' );
384 }
385 break;
386 case 'unapproved':
387 if ( 'hold' !== $comment_status ) {
388 wp_set_comment_status( $comment->comment_ID, 'hold' );
389 }
390 break;
391 case 'spam':
392 if ( 'spam' !== $comment_status ) {
393 wp_spam_comment( $comment->comment_ID );
394 }
395 break;
396 case 'unspam':
397 if ( 'spam' === $comment_status ) {
398 wp_unspam_comment( $comment->comment_ID );
399 }
400 break;
401 case 'trash':
402 if ( ! EMPTY_TRASH_DAYS ) {
403 return new WP_Error( 'trash_disabled', 'Cannot trash comment', 403 );
404 }
405
406 if ( 'trash' !== $comment_status ) {
407 wp_trash_comment( $comment_id );
408 }
409 break;
410 case 'untrash':
411 if ( 'trash' === $comment_status ) {
412 wp_untrash_comment( $comment->comment_ID );
413 }
414 break;
415 default:
416 $update['comment_approved'] = 1;
417 break;
418 }
419 unset( $update['comment_status'] );
420 }
421
422 if ( ! empty( $update ) ) {
423 $update['comment_ID'] = $comment->comment_ID;
424 wp_update_comment( add_magic_quotes( $update ) );
425 }
426
427 $return = $this->get_comment( $comment->comment_ID, $args['context'] );
428 if ( ! $return || is_wp_error( $return ) ) {
429 return $return;
430 }
431
432 /** This action is documented in json-endpoints/class.wpcom-json-api-site-settings-endpoint.php */
433 do_action( 'wpcom_json_api_objects', 'comments' );
434 return $return;
435 }
436
437 /**
438 * Delete a comment.
439 *
440 * /sites/%s/comments/%d/delete -> $blog_id, $comment_id
441 *
442 * @param string $path API path.
443 * @param int $blog_id Blog ID.
444 * @param int $comment_id Comment ID.
445 *
446 * @return bool|WP_Error|array
447 */
448 public function delete_comment( $path, $blog_id, $comment_id ) {
449 $comment = get_comment( $comment_id );
450 if ( ! $comment || is_wp_error( $comment ) ) {
451 return new WP_Error( 'unknown_comment', 'Unknown comment', 404 );
452 }
453
454 if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) ) { // [sic] There is no delete_comment cap
455 return new WP_Error( 'unauthorized', 'User cannot delete comment', 403 );
456 }
457
458 $args = $this->query_args();
459 $return = $this->get_comment( $comment->comment_ID, $args['context'] );
460 if ( ! $return || is_wp_error( $return ) ) {
461 return $return;
462 }
463
464 /** This action is documented in json-endpoints/class.wpcom-json-api-site-settings-endpoint.php */
465 do_action( 'wpcom_json_api_objects', 'comments' );
466
467 wp_delete_comment( $comment->comment_ID );
468 $status = wp_get_comment_status( $comment->comment_ID );
469 if ( false === $status ) {
470 $return['status'] = 'deleted';
471 return $return;
472 }
473
474 return $this->get_comment( $comment->comment_ID, $args['context'] );
475 }
476 }
477