array(), 'taxonomies' => array(), 'hierarchical' => false, 'public' => false, 'has_archive' => false, 'can_export' => true, ) ); } /** * Stores migration data in the database. * * @since 5.2 * * @param string $option_name Option name. * @param bool $option_value Option value. * * @return int|WP_Error */ function jetpack_store_migration_data( $option_name, $option_value ) { jetpack_register_migration_post_type(); $insert = array( 'post_title' => $option_name, 'post_content_filtered' => $option_value, 'post_type' => 'jetpack_migration', 'post_date' => gmdate( 'Y-m-d H:i:s', time() ), ); $post = get_page_by_title( $option_name, 'OBJECT', 'jetpack_migration' ); if ( null !== $post ) { $insert['ID'] = $post->ID; } return wp_insert_post( $insert, true ); } /** * Retrieves legacy image widget data. * * @since 5.2 * * @param string $option_name Option name. * * @return mixed|null */ function jetpack_get_migration_data( $option_name ) { $post = get_page_by_title( $option_name, 'OBJECT', 'jetpack_migration' ); return null !== $post ? maybe_unserialize( $post->post_content_filtered ) : null; } /** * Prints a TOS blurb used throughout the connection prompts. * * @since 5.3 * * @echo string */ function jetpack_render_tos_blurb() { printf( wp_kses( /* Translators: placeholders are links. */ __( 'By clicking the Set up Jetpack button, you agree to our Terms of Service and to share details with WordPress.com.', 'jetpack' ), array( 'a' => array( 'href' => array(), 'target' => array(), 'rel' => array(), ), 'strong' => true, ) ), esc_url( Redirect::get_url( 'wpcom-tos' ) ), esc_url( Redirect::get_url( 'jetpack-support-what-data-does-jetpack-sync' ) ) ); } /** * Intervene upgrade process so Jetpack themes are downloaded with credentials. * * @since 5.3 * * @param bool $preempt Whether to preempt an HTTP request's return value. Default false. * @param array $r HTTP request arguments. * @param string $url The request URL. * * @return array|bool|WP_Error */ function jetpack_theme_update( $preempt, $r, $url ) { if ( false !== stripos( $url, JETPACK__WPCOM_JSON_API_HOST . '/rest/v1/themes/download' ) ) { $file = $r['filename']; if ( ! $file ) { return new WP_Error( 'problem_creating_theme_file', esc_html__( 'Problem creating file for theme download', 'jetpack' ) ); } $theme = pathinfo( wp_parse_url( $url, PHP_URL_PATH ), PATHINFO_FILENAME ); // Remove filter to avoid endless loop since wpcom_json_api_request_as_blog uses this too. remove_filter( 'pre_http_request', 'jetpack_theme_update' ); $result = Client::wpcom_json_api_request_as_blog( "themes/download/$theme.zip", '1.1', array( 'stream' => true, 'filename' => $file, ) ); if ( 200 !== wp_remote_retrieve_response_code( $result ) ) { return new WP_Error( 'problem_fetching_theme', esc_html__( 'Problem downloading theme', 'jetpack' ) ); } return $result; } return $preempt; } /** * Add the filter when a upgrade is going to be downloaded. * * @since 5.3 * * @param bool $reply Whether to bail without returning the package. Default false. * * @return bool */ function jetpack_upgrader_pre_download( $reply ) { add_filter( 'pre_http_request', 'jetpack_theme_update', 10, 3 ); return $reply; } add_filter( 'upgrader_pre_download', 'jetpack_upgrader_pre_download' ); /** * Wraps data in a way so that we can distinguish between objects and array and also prevent object recursion. * * @since 6.1.0 * * @param array|obj $any Source data to be cleaned up. * @param array $seen_nodes Built array of nodes. * * @return array */ function jetpack_json_wrap( &$any, $seen_nodes = array() ) { if ( is_object( $any ) ) { $input = get_object_vars( $any ); $input['__o'] = 1; } else { $input = &$any; } if ( is_array( $input ) ) { $seen_nodes[] = &$any; $return = array(); foreach ( $input as $k => &$v ) { if ( ( is_array( $v ) || is_object( $v ) ) ) { if ( in_array( $v, $seen_nodes, true ) ) { continue; } $return[ $k ] = jetpack_json_wrap( $v, $seen_nodes ); } else { $return[ $k ] = $v; } } return $return; } return $any; } /** * Checks if the mime_content_type function is available and return it if so. * * The function mime_content_type is enabled by default in PHP, but can be disabled. We attempt to * enforce this via composer.json, but that won't be checked in majority of cases where * this would be happening. * * @since 7.8.0 * * @param string $file File location. * * @return string|false MIME type or false if functionality is not available. */ function jetpack_mime_content_type( $file ) { if ( function_exists( 'mime_content_type' ) ) { return mime_content_type( $file ); } return false; } /** * Checks that the mime type of the specified file is among those in a filterable list of mime types. * * @since 7.8.0 * * @param string $file Path to file to get its mime type. * * @return bool */ function jetpack_is_file_supported_for_sideloading( $file ) { $type = jetpack_mime_content_type( $file ); if ( ! $type ) { return false; } /** * Filter the list of supported mime types for media sideloading. * * @since 4.0.0 * * @module json-api * * @param array $supported_mime_types Array of the supported mime types for media sideloading. */ $supported_mime_types = apply_filters( 'jetpack_supported_media_sideload_types', array( 'image/png', 'image/jpeg', 'image/gif', 'image/bmp', 'video/quicktime', 'video/mp4', 'video/mpeg', 'video/ogg', 'video/3gpp', 'video/3gpp2', 'video/h261', 'video/h262', 'video/h264', 'video/x-msvideo', 'video/x-ms-wmv', 'video/x-ms-asf', ) ); // If the type returned was not an array as expected, then we know we don't have a match. if ( ! is_array( $supported_mime_types ) ) { return false; } return in_array( $type, $supported_mime_types, true ); }