81 lines
1.9 KiB
PHP
81 lines
1.9 KiB
PHP
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
|
|
|
|
/**
|
|
* The Get comment backup endpoint class.
|
|
*
|
|
* /sites/%s/comments/%d/backup -> $blog_id, $comment_id
|
|
*/
|
|
class Jetpack_JSON_API_Get_Comment_Backup_Endpoint extends Jetpack_JSON_API_Endpoint {
|
|
|
|
/**
|
|
* Needed capabilities.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $needed_capabilities = array(); // This endpoint is only accessible using a site token
|
|
|
|
/**
|
|
* The comment ID.
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $comment_id;
|
|
|
|
/**
|
|
* Validate input
|
|
*
|
|
* @param int $comment_id - the comment ID.
|
|
*
|
|
* @return bool|WP_Error
|
|
*/
|
|
public function validate_input( $comment_id ) {
|
|
if ( empty( $comment_id ) || ! is_numeric( $comment_id ) ) {
|
|
return new WP_Error( 'comment_id_not_specified', __( 'You must specify a Comment ID', 'jetpack' ), 400 );
|
|
}
|
|
|
|
$this->comment_id = (int) $comment_id;
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* The result.
|
|
*
|
|
* @return array|WP_Error
|
|
*/
|
|
protected function result() {
|
|
// Disable Sync as this is a read-only operation and triggered by sync activity.
|
|
\Automattic\Jetpack\Sync\Actions::mark_sync_read_only();
|
|
|
|
$comment = get_comment( $this->comment_id );
|
|
if ( empty( $comment ) ) {
|
|
return new WP_Error( 'comment_not_found', __( 'Comment not found', 'jetpack' ), 404 );
|
|
}
|
|
|
|
$allowed_keys = array(
|
|
'comment_ID',
|
|
'comment_post_ID',
|
|
'comment_author',
|
|
'comment_author_email',
|
|
'comment_author_url',
|
|
'comment_author_IP',
|
|
'comment_date',
|
|
'comment_date_gmt',
|
|
'comment_content',
|
|
'comment_karma',
|
|
'comment_approved',
|
|
'comment_agent',
|
|
'comment_type',
|
|
'comment_parent',
|
|
'user_id',
|
|
);
|
|
|
|
$comment = array_intersect_key( $comment->to_array(), array_flip( $allowed_keys ) );
|
|
$comment_meta = get_comment_meta( $comment['comment_ID'] );
|
|
|
|
return array(
|
|
'comment' => $comment,
|
|
'meta' => is_array( $comment_meta ) ? $comment_meta : array(),
|
|
);
|
|
}
|
|
}
|