PageRenderTime 50ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/site/wp-content/plugins/jetpack/sync/class.jetpack-sync-module-comments.php

https://bitbucket.org/ericstrom/ballmerpeak
PHP | 188 lines | 128 code | 32 blank | 28 comment | 8 complexity | fd430867c4e406fe2734d3dcd657f2fa MD5 | raw file
  1. <?php
  2. class Jetpack_Sync_Module_Comments extends Jetpack_Sync_Module {
  3. public function name() {
  4. return 'comments';
  5. }
  6. public function get_object_by_id( $object_type, $id ) {
  7. $comment_id = intval( $id );
  8. if ( $object_type === 'comment' && $comment = get_comment( $comment_id ) ) {
  9. return $this->filter_comment( $comment );
  10. }
  11. return false;
  12. }
  13. public function init_listeners( $callable ) {
  14. add_action( 'wp_insert_comment', $callable, 10, 2 );
  15. add_action( 'deleted_comment', $callable );
  16. add_action( 'trashed_comment', $callable );
  17. add_action( 'spammed_comment', $callable );
  18. add_action( 'trashed_post_comments', $callable, 10, 2 );
  19. add_action( 'untrash_post_comments', $callable );
  20. add_action( 'comment_approved_to_unapproved', $callable );
  21. add_action( 'comment_unapproved_to_approved', $callable );
  22. add_action( 'jetpack_modified_comment_contents', $callable, 10, 2 );
  23. add_action( 'untrashed_comment', $callable, 10, 2 );
  24. add_action( 'unspammed_comment', $callable, 10, 2 );
  25. add_filter( 'wp_update_comment_data', array( $this, 'handle_comment_contents_modification' ), 10, 3 );
  26. // even though it's messy, we implement these hooks because
  27. // the edit_comment hook doesn't include the data
  28. // so this saves us a DB read for every comment event
  29. foreach ( array( '', 'trackback', 'pingback' ) as $comment_type ) {
  30. foreach ( array( 'unapproved', 'approved' ) as $comment_status ) {
  31. $comment_action_name = "comment_{$comment_status}_{$comment_type}";
  32. add_action( $comment_action_name, $callable, 10, 2 );
  33. }
  34. }
  35. // listen for meta changes
  36. $this->init_listeners_for_meta_type( 'comment', $callable );
  37. $this->init_meta_whitelist_handler( 'comment', array( $this, 'filter_meta' ) );
  38. }
  39. public function handle_comment_contents_modification( $new_comment, $old_comment, $new_comment_with_slashes ) {
  40. $content_fields = array(
  41. 'comment_author',
  42. 'comment_author_email',
  43. 'comment_author_url',
  44. 'comment_content',
  45. );
  46. $changes = array();
  47. foreach ( $content_fields as $field ) {
  48. if ( $new_comment_with_slashes[$field] != $old_comment[$field] ) {
  49. $changes[$field] = array( $new_comment[$field], $old_comment[$field] );
  50. }
  51. }
  52. if ( ! empty( $changes ) ) {
  53. /**
  54. * Signals to the sync listener that this comment's contents were modified and a sync action
  55. * reflecting the change(s) to the content should be sent
  56. *
  57. * @since 4.9.0
  58. *
  59. * @param int $new_comment['comment_ID'] ID of comment whose content was modified
  60. * @param mixed $changes Array of changed comment fields with before and after values
  61. */
  62. do_action( 'jetpack_modified_comment_contents', $new_comment['comment_ID'], $changes );
  63. }
  64. return $new_comment;
  65. }
  66. public function init_full_sync_listeners( $callable ) {
  67. add_action( 'jetpack_full_sync_comments', $callable ); // also send comments meta
  68. }
  69. public function init_before_send() {
  70. add_filter( 'jetpack_sync_before_send_wp_insert_comment', array( $this, 'expand_wp_insert_comment' ) );
  71. foreach ( array( '', 'trackback', 'pingback' ) as $comment_type ) {
  72. foreach ( array( 'unapproved', 'approved' ) as $comment_status ) {
  73. $comment_action_name = "comment_{$comment_status}_{$comment_type}";
  74. add_filter( 'jetpack_sync_before_send_' . $comment_action_name, array(
  75. $this,
  76. 'expand_wp_insert_comment',
  77. ) );
  78. }
  79. }
  80. // full sync
  81. add_filter( 'jetpack_sync_before_send_jetpack_full_sync_comments', array( $this, 'expand_comment_ids' ) );
  82. }
  83. public function enqueue_full_sync_actions( $config, $max_items_to_enqueue, $state ) {
  84. global $wpdb;
  85. return $this->enqueue_all_ids_as_action( 'jetpack_full_sync_comments', $wpdb->comments, 'comment_ID', $this->get_where_sql( $config ), $max_items_to_enqueue, $state );
  86. }
  87. public function estimate_full_sync_actions( $config ) {
  88. global $wpdb;
  89. $query = "SELECT count(*) FROM $wpdb->comments";
  90. if ( $where_sql = $this->get_where_sql( $config ) ) {
  91. $query .= ' WHERE ' . $where_sql;
  92. }
  93. $count = $wpdb->get_var( $query );
  94. return (int) ceil( $count / self::ARRAY_CHUNK_SIZE );
  95. }
  96. private function get_where_sql( $config ) {
  97. if ( is_array( $config ) ) {
  98. return 'comment_ID IN (' . implode( ',', array_map( 'intval', $config ) ) . ')';
  99. }
  100. return null;
  101. }
  102. public function get_full_sync_actions() {
  103. return array( 'jetpack_full_sync_comments' );
  104. }
  105. public function count_full_sync_actions( $action_names ) {
  106. return $this->count_actions( $action_names, array( 'jetpack_full_sync_comments' ) );
  107. }
  108. function expand_wp_comment_status_change( $args ) {
  109. return array( $args[0], $this->filter_comment( $args[1] ) );
  110. }
  111. function expand_wp_insert_comment( $args ) {
  112. return array( $args[0], $this->filter_comment( $args[1] ) );
  113. }
  114. function filter_comment( $comment ) {
  115. /**
  116. * Filters whether to prevent sending comment data to .com
  117. *
  118. * Passing true to the filter will prevent the comment data from being sent
  119. * to the WordPress.com.
  120. * Instead we pass data that will still enable us to do a checksum against the
  121. * Jetpacks data but will prevent us from displaying the data on in the API as well as
  122. * other services.
  123. * @since 4.2.0
  124. *
  125. * @param boolean false prevent post data from bing synced to WordPress.com
  126. * @param mixed $comment WP_COMMENT object
  127. */
  128. if ( apply_filters( 'jetpack_sync_prevent_sending_comment_data', false, $comment ) ) {
  129. $blocked_comment = new stdClass();
  130. $blocked_comment->comment_ID = $comment->comment_ID;
  131. $blocked_comment->comment_date = $comment->comment_date;
  132. $blocked_comment->comment_date_gmt = $comment->comment_date_gmt;
  133. $blocked_comment->comment_approved = 'jetpack_sync_blocked';
  134. return $blocked_comment;
  135. }
  136. return $comment;
  137. }
  138. // Comment Meta
  139. function is_whitelisted_comment_meta( $meta_key ) {
  140. return in_array( $meta_key, Jetpack_Sync_Settings::get_setting( 'comment_meta_whitelist' ) );
  141. }
  142. function filter_meta( $args ) {
  143. return ( $this->is_whitelisted_comment_meta( $args[2] ) ? $args : false );
  144. }
  145. public function expand_comment_ids( $args ) {
  146. $comment_ids = $args[0];
  147. $comments = get_comments( array(
  148. 'include_unapproved' => true,
  149. 'comment__in' => $comment_ids,
  150. ) );
  151. return array(
  152. $comments,
  153. $this->get_metadata( $comment_ids, 'comment', Jetpack_Sync_Settings::get_setting( 'comment_meta_whitelist' ) ),
  154. );
  155. }
  156. }