true ) ); // All public post stati $post_stati[] = 'private'; // Content from private stati will be redacted Jetpack_Sync::sync_posts( __FILE__, array( 'post_types' => get_post_types( array( 'public' => true ) ), // All public post types 'post_stati' => $post_stati, ) ); // Generate the tracking code after wp() has queried for posts. add_action( 'template_redirect', 'stats_template_redirect', 1 ); add_action( 'wp_head', 'stats_admin_bar_head', 100 ); add_action( 'wp_head', 'stats_hide_smile_css' ); add_action( 'jetpack_admin_menu', 'stats_admin_menu' ); // Map stats caps add_filter( 'map_meta_cap', 'stats_map_meta_caps', 10, 4 ); if ( isset( $_GET['oldwidget'] ) ) { // Old one. add_action( 'wp_dashboard_setup', 'stats_register_dashboard_widget' ); } else { add_action( 'admin_init', 'stats_merged_widget_admin_init' ); } add_filter( 'jetpack_xmlrpc_methods', 'stats_xmlrpc_methods' ); add_filter( 'pre_option_db_version', 'stats_ignore_db_version' ); } /** * Delay conditional for current_user_can to after init. */ function stats_merged_widget_admin_init() { if ( current_user_can( 'view_stats' ) ) { add_action( 'load-index.php', 'stats_enqueue_dashboard_head' ); add_action( 'wp_dashboard_setup', 'stats_register_widget_control_callback' ); // hacky but works add_action( 'jetpack_dashboard_widget', 'stats_jetpack_dashboard_widget' ); } } function stats_enqueue_dashboard_head() { add_action( 'admin_head', 'stats_dashboard_head' ); } /** * Prevent sparkline img requests being redirected to upgrade.php. * See wp-admin/admin.php where it checks $wp_db_version. */ function stats_ignore_db_version( $version ) { if ( is_admin() && isset( $_GET['page'] ) && $_GET['page'] == 'stats' && isset( $_GET['chart'] ) && strpos($_GET['chart'], 'admin-bar-hours') === 0 ) { global $wp_db_version; return $wp_db_version; } return $version; } /** * Maps view_stats cap to read cap as needed * * @return array Possibly mapped capabilities for meta capability */ function stats_map_meta_caps( $caps, $cap, $user_id, $args ) { // Map view_stats to exists if ( 'view_stats' == $cap ) { $user = new WP_User( $user_id ); $user_role = array_shift( $user->roles ); $stats_roles = stats_get_option( 'roles' ); // Is the users role in the available stats roles? if ( is_array( $stats_roles ) && in_array( $user_role, $stats_roles ) ) { $caps = array( 'read' ); } } return $caps; } function stats_template_redirect() { global $current_user, $stats_footer; if ( is_feed() || is_robots() || is_trackback() || is_preview() ) return; // Should we be counting this user's views? if ( !empty( $current_user->ID ) ) { $count_roles = stats_get_option( 'count_roles' ); if ( ! array_intersect( $current_user->roles, $count_roles ) ) return; } add_action( 'wp_footer', 'stats_footer', 101 ); add_action( 'wp_head', 'stats_add_shutdown_action' ); $script = set_url_scheme( '//stats.wp.com/e-' . gmdate( 'YW' ) . '.js' ); $data = stats_build_view_data(); $data_stats_array = stats_array( $data ); $stats_footer = << END; } function stats_build_view_data() { global $wp_the_query; $blog = Jetpack_Options::get_option( 'id' ); $tz = get_option( 'gmt_offset' ); $v = 'ext'; $blog_url = parse_url( site_url() ); $srv = $blog_url['host']; $j = sprintf( '%s:%s', JETPACK__API_VERSION, JETPACK__VERSION ); if ( $wp_the_query->is_single || $wp_the_query->is_page || $wp_the_query->is_posts_page ) { // Store and reset the queried_object and queried_object_id // Otherwise, redirect_canonical() will redirect to home_url( '/' ) for show_on_front = page sites where home_url() is not all lowercase. // Repro: // 1. Set home_url = http://ExamPle.com/ // 2. Set show_on_front = page // 3. Set page_on_front = something // 4. Visit http://example.com/ $queried_object = ( isset( $wp_the_query->queried_object ) ) ? $wp_the_query->queried_object : null; $queried_object_id = ( isset( $wp_the_query->queried_object_id ) ) ? $wp_the_query->queried_object_id : null; $post = $wp_the_query->get_queried_object_id(); $wp_the_query->queried_object = $queried_object; $wp_the_query->queried_object_id = $queried_object_id; } else { $post = '0'; } return compact( 'v', 'j', 'blog', 'post', 'tz', 'srv' ); } function stats_add_shutdown_action() { // just in case wp_footer isn't in your theme add_action( 'shutdown', 'stats_footer', 101 ); } function stats_footer() { global $stats_footer; print $stats_footer; $stats_footer = ''; } function stats_get_options() { $options = get_option( 'stats_options' ); if ( !isset( $options['version'] ) || $options['version'] < STATS_VERSION ) $options = stats_upgrade_options( $options ); return $options; } function stats_get_option( $option ) { $options = stats_get_options(); if ( $option == 'blog_id' ) return Jetpack_Options::get_option( 'id' ); if ( isset( $options[$option] ) ) return $options[$option]; return null; } function stats_set_option( $option, $value ) { $options = stats_get_options(); $options[$option] = $value; stats_set_options($options); } function stats_set_options($options) { update_option( 'stats_options', $options ); } function stats_upgrade_options( $options ) { $defaults = array( 'admin_bar' => true, 'roles' => array( 'administrator' ), 'count_roles' => array(), 'blog_id' => Jetpack_Options::get_option( 'id' ), 'do_not_track' => true, // @todo 'hide_smile' => true, ); if ( isset( $options['reg_users'] ) ) { if ( ! function_exists( 'get_editable_roles' ) ) require_once( ABSPATH . 'wp-admin/includes/user.php' ); if ( $options['reg_users'] ) $options['count_roles'] = array_keys( get_editable_roles() ); unset( $options['reg_users'] ); } if ( is_array( $options ) && !empty( $options ) ) $new_options = array_merge( $defaults, $options ); else $new_options = $defaults; $new_options['version'] = STATS_VERSION; stats_set_options( $new_options ); stats_update_blog(); return $new_options; } function stats_array( $kvs ) { /** * Filter the options added to the JavaScript Stats tracking code. * * @module stats * * @since 1.1.0 * * @param array $kvs Array of options about the site and page you're on. */ $kvs = apply_filters( 'stats_array', $kvs ); $kvs = array_map( 'addslashes', $kvs ); foreach ( $kvs as $k => $v ) $jskvs[] = "$k:'$v'"; return join( ',', $jskvs ); } /** * Admin Pages */ function stats_admin_menu() { global $pagenow; // If we're at an old Stats URL, redirect to the new one. // Don't even bother with caps, menu_page_url(), etc. Just do it. if ( 'index.php' == $pagenow && isset( $_GET['page'] ) && 'stats' == $_GET['page'] ) { $redirect_url = str_replace( array( '/wp-admin/index.php?', '/wp-admin/?' ), '/wp-admin/admin.php?', $_SERVER['REQUEST_URI'] ); $relative_pos = strpos( $redirect_url, '/wp-admin/' ); if ( false !== $relative_pos ) { wp_safe_redirect( admin_url( substr( $redirect_url, $relative_pos + 10 ) ) ); exit; } } $hook = add_submenu_page( 'jetpack', __( 'Site Stats', 'jetpack' ), __( 'Site Stats', 'jetpack' ), 'view_stats', 'stats', 'stats_reports_page' ); add_action( "load-$hook", 'stats_reports_load' ); } function stats_admin_path() { return Jetpack::module_configuration_url( __FILE__ ); } function stats_reports_load() { wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'postbox' ); wp_enqueue_script( 'underscore' ); add_action( 'admin_print_styles', 'stats_reports_css' ); if ( isset( $_GET['nojs'] ) && $_GET['nojs'] ) { $parsed = parse_url( admin_url() ); // Remember user doesn't want JS setcookie( 'stnojs', '1', time() + 172800, $parsed['path'] ); // 2 days } if ( isset( $_COOKIE['stnojs'] ) && $_COOKIE['stnojs'] ) { // Detect if JS is on. If so, remove cookie so next page load is via JS add_action( 'admin_print_footer_scripts', 'stats_js_remove_stnojs_cookie' ); } else if ( !isset( $_GET['noheader'] ) && empty( $_GET['nojs'] ) ) { // Normal page load. Load page content via JS. add_action( 'admin_print_footer_scripts', 'stats_js_load_page_via_ajax' ); } } function stats_reports_css() { ?>

<?php esc_attr_e( 'Loading…', 'jetpack' ); ?>" />


.

'true', 'proxy' => '', 'page' => 'stats', 'day' => $day, 'blog' => $blog_id, 'charset' => get_option( 'blog_charset' ), 'color' => get_user_option( 'admin_color' ), 'ssl' => is_ssl(), 'j' => sprintf( '%s:%s', JETPACK__API_VERSION, JETPACK__VERSION ), ); if ( get_locale() !== 'en_US' ) { $q['jp_lang'] = get_locale(); } // Only show the main chart, without extra header data, or metaboxes. $q['main_chart_only'] = $main_chart_only; $args = array( 'view' => array( 'referrers', 'postviews', 'searchterms', 'clicks', 'post', 'table' ), 'numdays' => 'int', 'day' => 'date', 'unit' => array( 1, 7, 31, 'human' ), 'humanize' => array( 'true' ), 'num' => 'int', 'summarize' => null, 'post' => 'int', 'width' => 'int', 'height' => 'int', 'data' => 'data', 'blog_subscribers' => 'int', 'comment_subscribers' => null, 'type' => array( 'wpcom', 'email', 'pending' ), 'pagenum' => 'int', ); foreach ( $args as $var => $vals ) { if ( !isset( $_REQUEST[$var] ) ) continue; if ( is_array( $vals ) ) { if ( in_array( $_REQUEST[$var], $vals ) ) $q[$var] = $_REQUEST[$var]; } elseif ( $vals == 'int' ) { $q[$var] = intval( $_REQUEST[$var] ); } elseif ( $vals == 'date' ) { if ( preg_match( '/^\d{4}-\d{2}-\d{2}$/', $_REQUEST[$var] ) ) $q[$var] = $_REQUEST[$var]; } elseif ( $vals == null ) { $q[$var] = ''; } elseif ( $vals == 'data' ) { if ( substr( $_REQUEST[$var], 0, 9 ) == 'index.php' ) $q[$var] = $_REQUEST[$var]; } } if ( isset( $_GET['chart'] ) ) { if ( preg_match( '/^[a-z0-9-]+$/', $_GET['chart'] ) ) { $chart = sanitize_title( $_GET['chart'] ); $url = 'https://' . STATS_DASHBOARD_SERVER . "/wp-includes/charts/{$chart}.php"; } } else { $url = 'https://' . STATS_DASHBOARD_SERVER . "/wp-admin/index.php"; } $url = add_query_arg( $q, $url ); $method = 'GET'; $timeout = 90; $user_id = JETPACK_MASTER_USER; // means send the wp.com user_id $get = Jetpack_Client::remote_request( compact( 'url', 'method', 'timeout', 'user_id' ) ); $get_code = wp_remote_retrieve_response_code( $get ); if ( is_wp_error( $get ) || ( 2 != intval( $get_code / 100 ) && 304 != $get_code ) || empty( $get['body'] ) ) { stats_print_wp_remote_error( $get, $url ); } else { if ( !empty( $get['headers']['content-type'] ) ) { $type = $get['headers']['content-type']; if ( substr( $type, 0, 5 ) == 'image' ) { $img = $get['body']; header( 'Content-Type: ' . $type ); header( 'Content-Length: ' . strlen( $img ) ); echo $img; die(); } } $body = stats_convert_post_titles( $get['body'] ); $body = stats_convert_chart_urls( $body ); $body = stats_convert_image_urls( $body ); $body = stats_convert_admin_urls( $body ); echo $body; } if ( isset( $_GET['noheader'] ) ) die; } function stats_convert_admin_urls( $html ) { return str_replace( 'index.php?page=stats', 'admin.php?page=stats', $html ); } function stats_convert_image_urls( $html ) { $url = set_url_scheme( 'https://' . STATS_DASHBOARD_SERVER ); $html = preg_replace( '|(["\'])(/i/stats.+)\\1|', '$1' . $url . '$2$1', $html ); return $html; } function stats_convert_chart_urls( $html ) { $html = preg_replace_callback( '|https?://[-.a-z0-9]+/wp-includes/charts/([-.a-z0-9]+).php(\??)|', create_function( '$matches', // If there is a query string, change the beginning '?' to a '&' so it fits into the middle of this query string 'return "admin.php?page=stats&noheader&chart=" . $matches[1] . str_replace( "?", "&", $matches[2] );' ), $html ); return $html; } function stats_convert_post_titles( $html ) { global $wpdb, $stats_posts; $pattern = ".*?"; if ( !preg_match_all( "!$pattern!", $html, $matches ) ) return $html; $posts = get_posts( array( 'include' => implode( ',', $matches[1] ), 'post_type' => 'any', 'post_status' => 'any', 'numberposts' => -1, )); foreach ( $posts as $post ) $stats_posts[$post->ID] = $post; $html = preg_replace_callback( "!$pattern!", 'stats_convert_post_title', $html ); return $html; } function stats_convert_post_title( $matches ) { global $stats_posts; $post_id = $matches[1]; if ( isset( $stats_posts[$post_id] ) ) return '' . get_the_title( $post_id ) . ''; return $matches[0]; } function stats_configuration_load() { if ( isset( $_POST['action'] ) && $_POST['action'] == 'save_options' && $_POST['_wpnonce'] == wp_create_nonce( 'stats' ) ) { $options = stats_get_options(); $options['admin_bar'] = isset( $_POST['admin_bar'] ) && $_POST['admin_bar']; $options['hide_smile'] = isset( $_POST['hide_smile'] ) && $_POST['hide_smile']; $options['roles'] = array( 'administrator' ); foreach ( get_editable_roles() as $role => $details ) if ( isset( $_POST["role_$role"] ) && $_POST["role_$role"] ) $options['roles'][] = $role; $options['count_roles'] = array(); foreach ( get_editable_roles() as $role => $details ) if ( isset( $_POST["count_role_$role"] ) && $_POST["count_role_$role"] ) $options['count_roles'][] = $role; stats_set_options( $options ); stats_update_blog(); Jetpack::state( 'message', 'module_configured' ); wp_safe_redirect( Jetpack::module_configuration_url( 'stats' ) ); exit; } } function stats_configuration_head() { ?>

Site Stats to see your stats.', 'jetpack' ), esc_url( menu_page_url( 'stats', false ) ) ); ?>

' />

'', 'proxy'=>'', 'chart'=>'admin-bar-hours-scale' ), $url ) ); $img_src_2x = esc_attr( add_query_arg( array( 'noheader'=>'', 'proxy'=>'', 'chart'=>'admin-bar-hours-scale-2x' ), $url ) ); $alt = esc_attr( __( 'Stats', 'jetpack' ) ); $title = esc_attr( __( 'Views over 48 hours. Click for more Site Stats.', 'jetpack' ) ); $menu = array( 'id' => 'stats', 'title' => "
", 'href' => $url ); $wp_admin_bar->add_menu( $menu ); } function stats_update_blog() { Jetpack::xmlrpc_async_call( 'jetpack.updateBlog', stats_get_blog() ); } function stats_get_blog() { $home = parse_url( trailingslashit( get_option( 'home' ) ) ); $blog = array( 'host' => $home['host'], 'path' => $home['path'], 'blogname' => get_option( 'blogname' ), 'blogdescription' => get_option( 'blogdescription' ), 'siteurl' => get_option( 'siteurl' ), 'gmt_offset' => get_option( 'gmt_offset' ), 'timezone_string' => get_option( 'timezone_string' ), 'stats_version' => STATS_VERSION, 'stats_api' => 'jetpack', 'page_on_front' => get_option( 'page_on_front' ), 'permalink_structure' => get_option( 'permalink_structure' ), 'category_base' => get_option( 'category_base' ), 'tag_base' => get_option( 'tag_base' ), ); $blog = array_merge( stats_get_options(), $blog ); unset( $blog['roles'], $blog['blog_id'] ); return stats_esc_html_deep( $blog ); } /** * Modified from stripslashes_deep() */ function stats_esc_html_deep( $value ) { if ( is_array( $value ) ) { $value = array_map( 'stats_esc_html_deep', $value ); } elseif ( is_object( $value ) ) { $vars = get_object_vars( $value ); foreach ( $vars as $key => $data ) { $value->{$key} = stats_esc_html_deep( $data ); } } elseif ( is_string( $value ) ) { $value = esc_html( $value ); } return $value; } function stats_xmlrpc_methods( $methods ) { $my_methods = array( 'jetpack.getBlog' => 'stats_get_blog', ); return array_merge( $methods, $my_methods ); } function stats_register_dashboard_widget() { if ( ! current_user_can( 'view_stats' ) ) return; // wp_dashboard_empty: we load in the content after the page load via JS wp_add_dashboard_widget( 'dashboard_stats', __( 'Site Stats', 'jetpack' ), 'wp_dashboard_empty', 'stats_dashboard_widget_control' ); add_action( 'admin_head', 'stats_dashboard_head' ); } function stats_dashboard_widget_options() { $defaults = array( 'chart' => 1, 'top' => 1, 'search' => 7 ); if ( ( !$options = get_option( 'stats_dashboard_widget' ) ) || !is_array( $options ) ) $options = array(); // Ignore obsolete option values $intervals = array( 1, 7, 31, 90, 365 ); foreach ( array( 'top', 'search' ) as $key ) if ( isset( $options[$key] ) && !in_array( $options[$key], $intervals ) ) unset( $options[$key] ); return array_merge( $defaults, $options ); } function stats_dashboard_widget_control() { $periods = array( '1' => __( 'day', 'jetpack' ), '7' => __( 'week', 'jetpack' ), '31' => __( 'month', 'jetpack' ), ); $intervals = array( '1' => __( 'the past day', 'jetpack' ), '7' => __( 'the past week', 'jetpack' ), '31' => __( 'the past month', 'jetpack' ), '90' => __( 'the past quarter', 'jetpack' ), '365' => __( 'the past year', 'jetpack' ), ); $defaults = array( 'top' => 1, 'search' => 7, ); $options = stats_dashboard_widget_options(); if ( 'post' == strtolower( $_SERVER['REQUEST_METHOD'] ) && isset( $_POST['widget_id'] ) && 'dashboard_stats' == $_POST['widget_id'] ) { if ( isset( $periods[ $_POST['chart'] ] ) ) $options['chart'] = $_POST['chart']; foreach ( array( 'top', 'search' ) as $key ) { if ( isset( $intervals[ $_POST[$key] ] ) ) $options[$key] = $_POST[$key]; else $options[$key] = $defaults[$key]; } update_option( 'stats_dashboard_widget', $options ); } ?>

.

.

.

'true', 'proxy' => '', 'blog' => $blog_id, 'page' => 'stats', 'chart' => '', 'unit' => $options['chart'], 'color' => get_user_option( 'admin_color' ), 'width' => $_width, 'height' => $_height, 'ssl' => is_ssl(), 'j' => sprintf( '%s:%s', JETPACK__API_VERSION, JETPACK__VERSION ), ); $url = 'https://' . STATS_DASHBOARD_SERVER . "/wp-admin/index.php"; $url = add_query_arg( $q, $url ); $method = 'GET'; $timeout = 90; $user_id = JETPACK_MASTER_USER; $get = Jetpack_Client::remote_request( compact( 'url', 'method', 'timeout', 'user_id' ) ); $get_code = wp_remote_retrieve_response_code( $get ); if ( is_wp_error( $get ) || ( 2 != intval( $get_code / 100 ) && 304 != $get_code ) || empty( $get['body'] ) ) { stats_print_wp_remote_error( $get, $url ); } else { $body = stats_convert_post_titles($get['body']); $body = stats_convert_chart_urls($body); $body = stats_convert_image_urls($body); echo $body; } $post_ids = array(); $csv_end_date = date( 'Y-m-d', current_time( 'timestamp' ) ); $csv_args = array( 'top' => "&limit=8&end=$csv_end_date", 'search' => "&limit=5&end=$csv_end_date" ); /* translators: Stats dashboard widget postviews list: "$post_title $views Views" */ $printf = __( '%1$s %2$s Views' , 'jetpack' ); foreach ( $top_posts = stats_get_csv( 'postviews', "days=$options[top]$csv_args[top]" ) as $i => $post ) { if ( $post['post_id'] == 0 ) { unset( $top_posts[$i] ); continue; } $post_ids[] = $post['post_id']; } // cache get_posts( array( 'include' => join( ',', array_unique( $post_ids ) ) ) ); $searches = array(); foreach ( $search_terms = stats_get_csv( 'searchterms', "days=$options[search]$csv_args[search]" ) as $search_term ) { if ( $search_term['searchterm'] == 'encrypted_search_terms' ) continue; $searches[] = esc_html( $search_term['searchterm'] ); } ?>

' . get_the_title( $post['post_id'] ) . '', number_format_i18n( $post['views'] ) ); ?>

contact support. In your report please include the information below.', 'jetpack' ), 'http://support.wordpress.com/contact/?jetpack=needs-service' ); ?>

	User Agent: ""
	Page URL: "http"
	API URL: ""
get_error_codes() as $code ) {
			foreach ( $get->get_error_messages($code) as $message ) {
				?>
	


	Response code: ""
	Content length: ""

false, 'days' => false, 'limit' => 3, 'post_id' => false, 'summarize' => '' ); $args = wp_parse_args( $args, $defaults ); $args['table'] = $table; $args['blog_id'] = Jetpack_Options::get_option( 'id' ); $stats_csv_url = add_query_arg( $args, 'http://stats.wordpress.com/csv.php' ); $key = md5( $stats_csv_url ); // Get cache $stats_cache = get_option( 'stats_cache' ); if ( !$stats_cache || !is_array( $stats_cache ) ) $stats_cache = array(); // Return or expire this key if ( isset( $stats_cache[$key] ) ) { $time = key( $stats_cache[$key] ); if ( time() - $time < 300 ) return $stats_cache[$key][$time]; unset( $stats_cache[$key] ); } $stats_rows = array(); do { if ( !$stats = stats_get_remote_csv( $stats_csv_url ) ) break; $labels = array_shift( $stats ); if ( 0 === stripos( $labels[0], 'error' ) ) break; $stats_rows = array(); for ( $s = 0; isset( $stats[$s] ); $s++ ) { $row = array(); foreach ( $labels as $col => $label ) $row[$label] = $stats[$s][$col]; $stats_rows[] = $row; } } while( 0 ); // Expire old keys foreach ( $stats_cache as $k => $cache ) if ( !is_array( $cache ) || 300 < time() - key($cache) ) unset( $stats_cache[$k] ); // Set cache $stats_cache[$key] = array( time() => $stats_rows ); update_option( 'stats_cache', $stats_cache ); return $stats_rows; } function stats_get_remote_csv( $url ) { $method = 'GET'; $timeout = 90; $user_id = JETPACK_MASTER_USER; $get = Jetpack_Client::remote_request( compact( 'url', 'method', 'timeout', 'user_id' ) ); $get_code = wp_remote_retrieve_response_code( $get ); if ( is_wp_error( $get ) || ( 2 != intval( $get_code / 100 ) && 304 != $get_code ) || empty( $get['body'] ) ) { return array(); // @todo: return an error? } else { return stats_str_getcsv( $get['body'] ); } } // rather than parsing the csv and its special cases, we create a new file and do fgetcsv on it. function stats_str_getcsv( $csv ) { if ( function_exists( 'str_getcsv' ) ) { $lines = str_getcsv( $csv, "\n" ); return array_map( 'str_getcsv', $lines ); } if ( !$temp = tmpfile() ) // tmpfile() automatically unlinks return false; $data = array(); fwrite( $temp, $csv, strlen( $csv ) ); fseek( $temp, 0 ); while ( false !== $row = fgetcsv( $temp, 2000 ) ) $data[] = $row; fclose( $temp ); return $data; } /** * Abstract out building the rest api stats path. * * @param string $resource * @return string */ function jetpack_stats_api_path( $resource = '' ) { $resource = ltrim( $resource, '/' ); return sprintf( '/sites/%d/stats/%s', stats_get_option( 'blog_id' ), $resource ); } /** * Fetches stats data from the REST API. Caches locally for 5 minutes. * * @link: https://developer.wordpress.com/docs/api/1.1/get/sites/%24site/stats/ * * @param array|string $args The args that are passed to the endpoint * @param string $resource Optional sub-endpoint following /stats/ * @return array|WP_Error */ function stats_get_from_restapi( $args = array(), $resource = '' ) { $endpoint = jetpack_stats_api_path( $resource ); $api_version = '1.1'; $args = wp_parse_args( $args, array() ); $cache_key = md5( implode( '|', array( $endpoint, $api_version, serialize( $args ) ) ) ); // Get cache $stats_cache = Jetpack_Options::get_option( 'restapi_stats_cache', array() ); if ( ! is_array( $stats_cache ) ) { $stats_cache = array(); } // Return or expire this key if ( isset( $stats_cache[ $cache_key ] ) ) { $time = key( $stats_cache[ $cache_key ] ); if ( time() - $time < ( 5 * MINUTE_IN_SECONDS ) ) { $cached_stats = $stats_cache[ $cache_key ][ $time ]; $cached_stats = (object) array_merge( array( 'cached_at' => $time ), (array) $cached_stats ); return $cached_stats; } unset( $stats_cache[ $cache_key ] ); } // Do the dirty work. $response = Jetpack_Client::wpcom_json_api_request_as_blog( $endpoint, $api_version, $args ); if ( 200 !== wp_remote_retrieve_response_code( $response ) ) { // If bad, just return it, don't cache. return $response; } $data = json_decode( wp_remote_retrieve_body( $response ) ); // Expire old keys foreach ( $stats_cache as $k => $cache ) { if ( ! is_array( $cache ) || ( 5 * MINUTE_IN_SECONDS ) < time() - key( $cache ) ) { unset( $stats_cache[ $k ] ); } } // Set cache $stats_cache[ $cache_key ] = array( time() => $data, ); Jetpack_Options::update_option( 'restapi_stats_cache', $stats_cache, false ); return $data; }