value ); if ( strlen( $serialized_value ) >= self::MAX_POST_META_LENGTH ) { $meta_value = ''; } return array( $meta_id, $object_id, $meta_key, $meta_value ); } /** * Process content before send. * * @param array $args Arguments of the `wp_insert_post` hook. * * @return array */ public function expand_jetpack_sync_save_post( $args ) { list( $post_id, $post, $update, $previous_state ) = $args; return array( $post_id, $this->filter_post_content_and_add_links( $post ), $update, $previous_state ); } /** * Filter all blacklisted post types. * * @param array $args Hook arguments. * @return array|false Hook arguments, or false if the post type is a blacklisted one. */ public function filter_blacklisted_post_types_deleted( $args ) { // deleted_post is called after the SQL delete but before cache cleanup. // There is the potential we can't detect post_type at this point. if ( ! $this->is_post_type_allowed( $args[0] ) ) { return false; } return $args; } /** * Filter all blacklisted post types. * * @param array $args Hook arguments. * @return array|false Hook arguments, or false if the post type is a blacklisted one. */ public function filter_blacklisted_post_types( $args ) { $post = $args[1]; if ( in_array( $post->post_type, Settings::get_setting( 'post_types_blacklist' ), true ) ) { return false; } return $args; } /** * Filter all meta that is not blacklisted, or is stored for a disallowed post type. * * @param array $args Hook arguments. * @return array|false Hook arguments, or false if meta was filtered. */ public function filter_meta( $args ) { if ( $this->is_post_type_allowed( $args[1] ) && $this->is_whitelisted_post_meta( $args[2] ) ) { return $args; } return false; } /** * Whether a post meta key is whitelisted. * * @param string $meta_key Meta key. * @return boolean Whether the post meta key is whitelisted. */ public function is_whitelisted_post_meta( $meta_key ) { // The _wpas_skip_ meta key is used by Publicize. return in_array( $meta_key, Settings::get_setting( 'post_meta_whitelist' ), true ) || ( 0 === strpos( $meta_key, '_wpas_skip_' ) ); } /** * Whether a post type is allowed. * A post type will be disallowed if it's present in the post type blacklist. * * @param int $post_id ID of the post. * @return boolean Whether the post type is allowed. */ public function is_post_type_allowed( $post_id ) { $post = get_post( (int) $post_id ); if ( isset( $post->post_type ) ) { return ! in_array( $post->post_type, Settings::get_setting( 'post_types_blacklist' ), true ); } return false; } /** * Remove the embed shortcode. * * @global $wp_embed */ public function remove_embed() { global $wp_embed; remove_filter( 'the_content', array( $wp_embed, 'run_shortcode' ), 8 ); // remove the embed shortcode since we would do the part later. remove_shortcode( 'embed' ); // Attempts to embed all URLs in a post. remove_filter( 'the_content', array( $wp_embed, 'autoembed' ), 8 ); } /** * Add the embed shortcode. * * @global $wp_embed */ public function add_embed() { global $wp_embed; add_filter( 'the_content', array( $wp_embed, 'run_shortcode' ), 8 ); // Shortcode placeholder for strip_shortcodes(). add_shortcode( 'embed', '__return_false' ); // Attempts to embed all URLs in a post. add_filter( 'the_content', array( $wp_embed, 'autoembed' ), 8 ); } /** * Expands wp_insert_post to include filtered content * * @param \WP_Post $post_object Post object. */ public function filter_post_content_and_add_links( $post_object ) { global $post; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited $post = $post_object; // Return non existant post. $post_type = get_post_type_object( $post->post_type ); if ( empty( $post_type ) || ! is_object( $post_type ) ) { $non_existant_post = new \stdClass(); $non_existant_post->ID = $post->ID; $non_existant_post->post_modified = $post->post_modified; $non_existant_post->post_modified_gmt = $post->post_modified_gmt; $non_existant_post->post_status = 'jetpack_sync_non_registered_post_type'; $non_existant_post->post_type = $post->post_type; return $non_existant_post; } /** * Filters whether to prevent sending post data to .com * * Passing true to the filter will prevent the post data from being sent * to the WordPress.com. * Instead we pass data that will still enable us to do a checksum against the * Jetpacks data but will prevent us from displaying the data on in the API as well as * other services. * * @since 4.2.0 * * @param boolean false prevent post data from being synced to WordPress.com * @param mixed $post \WP_Post object */ if ( apply_filters( 'jetpack_sync_prevent_sending_post_data', false, $post ) ) { // We only send the bare necessary object to be able to create a checksum. $blocked_post = new \stdClass(); $blocked_post->ID = $post->ID; $blocked_post->post_modified = $post->post_modified; $blocked_post->post_modified_gmt = $post->post_modified_gmt; $blocked_post->post_status = 'jetpack_sync_blocked'; $blocked_post->post_type = $post->post_type; return $blocked_post; } // lets not do oembed just yet. $this->remove_embed(); if ( 0 < strlen( $post->post_password ) ) { $post->post_password = 'auto-' . wp_generate_password( 10, false ); } // Explicitly omit post_content when it exceeds limit. // Large content will cause OOM issues and break Sync. if ( strlen( $post->post_content ) >= self::MAX_POST_CONTENT_LENGTH ) { $post->post_content = ''; } /** This filter is already documented in core. wp-includes/post-template.php */ if ( Settings::get_setting( 'render_filtered_content' ) && $post_type->public ) { global $shortcode_tags; /** * Filter prevents some shortcodes from expanding. * * Since we can can expand some type of shortcode better on the .com side and make the * expansion more relevant to contexts. For example [galleries] and subscription emails * * @since 4.5.0 * * @param array of shortcode tags to remove. */ $shortcodes_to_remove = apply_filters( 'jetpack_sync_do_not_expand_shortcodes', array( 'gallery', 'slideshow', ) ); $removed_shortcode_callbacks = array(); foreach ( $shortcodes_to_remove as $shortcode ) { if ( isset( $shortcode_tags[ $shortcode ] ) ) { $removed_shortcode_callbacks[ $shortcode ] = $shortcode_tags[ $shortcode ]; } } array_map( 'remove_shortcode', array_keys( $removed_shortcode_callbacks ) ); $post->post_content_filtered = apply_filters( 'the_content', $post->post_content ); $post->post_excerpt_filtered = apply_filters( 'the_excerpt', $post->post_excerpt ); foreach ( $removed_shortcode_callbacks as $shortcode => $callback ) { add_shortcode( $shortcode, $callback ); } } $this->add_embed(); if ( has_post_thumbnail( $post->ID ) ) { $image_attributes = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' ); if ( is_array( $image_attributes ) && isset( $image_attributes[0] ) ) { $post->featured_image = $image_attributes[0]; } } $post->permalink = get_permalink( $post->ID ); $post->shortlink = wp_get_shortlink( $post->ID ); if ( function_exists( 'amp_get_permalink' ) ) { $post->amp_permalink = amp_get_permalink( $post->ID ); } return $post; } /** * Handle transition from another post status to a published one. * * @param string $new_status New post status. * @param string $old_status Old post status. * @param \WP_Post $post Post object. */ public function save_published( $new_status, $old_status, $post ) { if ( 'publish' === $new_status && 'publish' !== $old_status ) { $this->just_published[ $post->ID ] = true; } $this->previous_status[ $post->ID ] = $old_status; } /** * When publishing or updating a post, the Gutenberg editor sends two requests: * 1. sent to WP REST API endpoint `wp-json/wp/v2/posts/$id` * 2. sent to wp-admin/post.php `?post=$id&action=edit&classic-editor=1&meta_box=1` * * The 2nd request is to update post meta, which is not supported on WP REST API. * When syncing post data, we will include if this was a meta box update. * * @todo Implement nonce verification. * * @return boolean Whether this is a Gutenberg meta box update. */ public function is_gutenberg_meta_box_update() { // phpcs:disable WordPress.Security.NonceVerification.Missing, WordPress.Security.NonceVerification.Recommended return ( isset( $_POST['action'], $_GET['classic-editor'], $_GET['meta_box'] ) && 'editpost' === $_POST['action'] && '1' === $_GET['classic-editor'] && '1' === $_GET['meta_box'] // phpcs:enable WordPress.Security.NonceVerification.Missing, WordPress.Security.NonceVerification.Recommended ); } /** * Handler for the wp_insert_post hook. * Called upon creation of a new post. * * @param int $post_ID Post ID. * @param \WP_Post $post Post object. * @param boolean $update Whether this is an existing post being updated or not. */ public function wp_insert_post( $post_ID, $post = null, $update = null ) { if ( ! is_numeric( $post_ID ) || is_null( $post ) ) { return; } // Workaround for https://github.com/woocommerce/woocommerce/issues/18007. if ( $post && 'shop_order' === $post->post_type ) { $post = get_post( $post_ID ); } $previous_status = isset( $this->previous_status[ $post_ID ] ) ? $this->previous_status[ $post_ID ] : self::DEFAULT_PREVIOUS_STATE; $just_published = isset( $this->just_published[ $post_ID ] ) ? $this->just_published[ $post_ID ] : false; $state = array( 'is_auto_save' => (bool) Jetpack_Constants::get_constant( 'DOING_AUTOSAVE' ), 'previous_status' => $previous_status, 'just_published' => $just_published, 'is_gutenberg_meta_box_update' => $this->is_gutenberg_meta_box_update(), ); /** * Filter that is used to add to the post flags ( meta data ) when a post gets published * * @since 5.8.0 * * @param int $post_ID the post ID * @param mixed $post \WP_Post object * @param bool $update Whether this is an existing post being updated or not. * @param mixed $state state * * @module sync */ do_action( 'jetpack_sync_save_post', $post_ID, $post, $update, $state ); unset( $this->previous_status[ $post_ID ] ); } /** * Handler for the wp_after_insert_post hook. * Called after creation/update of a new post. * * @param int $post_ID Post ID. * @param \WP_Post $post Post object. **/ public function wp_after_insert_post( $post_ID, $post ) { if ( ! is_numeric( $post_ID ) || is_null( $post ) ) { return; } // Workaround for https://github.com/woocommerce/woocommerce/issues/18007. if ( $post && 'shop_order' === $post->post_type ) { $post = get_post( $post_ID ); } $this->send_published( $post_ID, $post ); } /** * Send a published post for sync. * * @param int $post_ID Post ID. * @param \WP_Post $post Post object. */ public function send_published( $post_ID, $post ) { if ( ! isset( $this->just_published[ $post_ID ] ) ) { return; } // Post revisions cause race conditions where this send_published add the action before the actual post gets synced. if ( wp_is_post_autosave( $post ) || wp_is_post_revision( $post ) ) { return; } $post_flags = array( 'post_type' => $post->post_type, ); $author_user_object = get_user_by( 'id', $post->post_author ); if ( $author_user_object ) { $roles = new Roles(); $post_flags['author'] = array( 'id' => $post->post_author, 'wpcom_user_id' => get_user_meta( $post->post_author, 'wpcom_user_id', true ), 'display_name' => $author_user_object->display_name, 'email' => $author_user_object->user_email, 'translated_role' => $roles->translate_user_to_role( $author_user_object ), ); } /** * Filter that is used to add to the post flags ( meta data ) when a post gets published * * @since 4.4.0 * * @param mixed array post flags that are added to the post * @param mixed $post \WP_Post object */ $flags = apply_filters( 'jetpack_published_post_flags', $post_flags, $post ); // Only Send Pulished Post event if post_type is not blacklisted. if ( ! in_array( $post->post_type, Settings::get_setting( 'post_types_blacklist' ), true ) ) { /** * Action that gets synced when a post type gets published. * * @since 4.4.0 * * @param int $post_ID * @param mixed array $flags post flags that are added to the post */ do_action( 'jetpack_published_post', $post_ID, $flags ); } unset( $this->just_published[ $post_ID ] ); /** * Send additional sync action for Activity Log when post is a Customizer publish */ if ( 'customize_changeset' === $post->post_type ) { $post_content = json_decode( $post->post_content, true ); foreach ( $post_content as $key => $value ) { // Skip if it isn't a widget. if ( 'widget_' !== substr( $key, 0, strlen( 'widget_' ) ) ) { continue; } // Change key from "widget_archives[2]" to "archives-2". $key = str_replace( 'widget_', '', $key ); $key = str_replace( '[', '-', $key ); $key = str_replace( ']', '', $key ); global $wp_registered_widgets; if ( isset( $wp_registered_widgets[ $key ] ) ) { $widget_data = array( 'name' => $wp_registered_widgets[ $key ]['name'], 'id' => $key, 'title' => $value['value']['title'], ); do_action( 'jetpack_widget_edited', $widget_data ); } } } } /** * Expand post IDs to post objects within a hook before they are serialized and sent to the server. * * @access public * * @param array $args The hook parameters. * @return array $args The expanded hook parameters. */ public function expand_post_ids( $args ) { list( $post_ids, $previous_interval_end) = $args; $posts = array_filter( array_map( array( 'WP_Post', 'get_instance' ), $post_ids ) ); $posts = array_map( array( $this, 'filter_post_content_and_add_links' ), $posts ); $posts = array_values( $posts ); // Reindex in case posts were deleted. return array( $posts, $this->get_metadata( $post_ids, 'post', Settings::get_setting( 'post_meta_whitelist' ) ), $this->get_term_relationships( $post_ids ), $previous_interval_end, ); } /** * Gets a list of minimum and maximum object ids for each batch based on the given batch size. * * @access public * * @param int $batch_size The batch size for objects. * @param string|bool $where_sql The sql where clause minus 'WHERE', or false if no where clause is needed. * * @return array|bool An array of min and max ids for each batch. FALSE if no table can be found. */ public function get_min_max_object_ids_for_batches( $batch_size, $where_sql = false ) { return parent::get_min_max_object_ids_for_batches( $batch_size, $this->get_where_sql( $where_sql ) ); } }