Skip to content

Instantly share code, notes, and snippets.

@rolandinsh
Created May 24, 2013 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rolandinsh/5644457 to your computer and use it in GitHub Desktop.
Save rolandinsh/5644457 to your computer and use it in GitHub Desktop.
Yoast anonymous tracking
<?php
/**
* @package Admin
*/
if ( !defined( 'GAWP_VERSION' ) ) {
header( 'HTTP/1.0 403 Forbidden' );
die;
}
/**
* Class that creates the tracking functionality for WP SEO, as the core class might be used in more plugins,
* it's checked for existence first.
*
* NOTE: this functionality is opt-in. Disabling the tracking in the settings or saying no when asked will cause
* this file to not even be loaded.
*/
if ( !class_exists( 'Yoast_Tracking' ) ) {
class Yoast_Tracking {
/**
* Class constructor
*/
function __construct() {
// The tracking checks daily, but only sends new data every 7 days.
if ( !wp_next_scheduled( 'yoast_tracking' ) ) {
wp_schedule_event( time(), 'daily', 'yoast_tracking' );
}
add_action( 'yoast_tracking', array( $this, 'tracking' ) );
}
/**
* Main tracking function.
*/
function tracking() {
// Start of Metrics
global $blog_id, $wpdb;
$hash = get_option( 'Yoast_Tracking_Hash' );
if ( !isset( $hash ) || !$hash || empty( $hash ) ) {
$hash = md5( site_url() );
update_option( 'Yoast_Tracking_Hash', $hash );
}
$data = get_transient( 'yoast_tracking_cache' );
if ( !$data ) {
$pts = array();
foreach ( get_post_types( array( 'public' => true ) ) as $pt ) {
$count = wp_count_posts( $pt );
$pts[$pt] = $count->publish;
}
$comments_count = wp_count_comments();
// wp_get_theme was introduced in 3.4, for compatibility with older versions, let's do a workaround for now.
if ( function_exists( 'wp_get_theme' ) ) {
$theme_data = wp_get_theme();
$theme = array(
'name' => $theme_data->display( 'Name', false, false ),
'theme_uri' => $theme_data->display( 'ThemeURI', false, false ),
'version' => $theme_data->display( 'Version', false, false ),
'author' => $theme_data->display( 'Author', false, false ),
'author_uri' => $theme_data->display( 'AuthorURI', false, false ),
);
if ( isset( $theme_data->template ) && !empty( $theme_data->template ) && $theme_data->parent() ) {
$theme['template'] = array(
'version' => $theme_data->parent()->display( 'Version', false, false ),
'name' => $theme_data->parent()->display( 'Name', false, false ),
'theme_uri' => $theme_data->parent()->display( 'ThemeURI', false, false ),
'author' => $theme_data->parent()->display( 'Author', false, false ),
'author_uri' => $theme_data->parent()->display( 'AuthorURI', false, false ),
);
} else {
$theme['template'] = '';
}
} else {
$theme_data = (object) get_theme_data( get_stylesheet_directory() . '/style.css' );
$theme = array(
'version' => $theme_data->Version,
'name' => $theme_data->Name,
'author' => $theme_data->Author,
'template' => $theme_data->Template,
);
}
$plugins = array();
foreach ( get_option( 'active_plugins' ) as $plugin_path ) {
if ( !function_exists( 'get_plugin_data' ) )
require_once ABSPATH . 'wp-admin/includes/admin.php';
$plugin_info = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin_path );
$slug = str_replace( '/' . basename( $plugin_path ), '', $plugin_path );
$plugins[$slug] = array(
'version' => $plugin_info['Version'],
'name' => $plugin_info['Name'],
'plugin_uri' => $plugin_info['PluginURI'],
'author' => $plugin_info['AuthorName'],
'author_uri' => $plugin_info['AuthorURI'],
);
}
$data = array(
'site' => array(
'hash' => $hash,
'url' => site_url(),
'name' => get_bloginfo( 'name' ),
'version' => get_bloginfo( 'version' ),
'multisite' => is_multisite(),
'users' => $wpdb->get_var( "SELECT COUNT(*) FROM wp_users INNER JOIN wp_usermeta ON (wp_users.ID = wp_usermeta.user_id) WHERE 1 = 1 AND ( wp_usermeta.meta_key = 'wp_{$blog_id}_capabilities' ) " ),
'lang' => get_locale(),
),
'pts' => $pts,
'comments' => array(
'total' => $comments_count->total_comments,
'approved' => $comments_count->approved,
'spam' => $comments_count->spam,
'pings' => $wpdb->get_var( "SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_type = 'pingback'" ),
),
'options' => apply_filters( 'yoast_tracking_filters', array() ),
'theme' => $theme,
'plugins' => $plugins,
);
$args = array(
'body' => $data
);
wp_remote_post( 'https://tracking.yoast.com/', $args );
// Store for a week, then push data again.
set_transient( 'yoast_tracking_cache', true, 7 * 60 * 60 * 24 );
}
}
}
$yoast_tracking = new Yoast_Tracking;
}
/**
* Adds tracking parameters for Google Analytics settings. Outside of the main class as the class could also be in use in other plugins.
*
* @param array $options
* @return array
*/
function ystga_tracking_additions( $options ) {
$opt = get_option('Yoast_Google_Analytics');
$options['gawp'] = array(
'advanced_settigns' => isset( $opt['advancedsettings'] ) ? 1 : 0,
);
return $options;
}
add_filter( 'yoast_tracking_filters', 'ystga_tracking_additions' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment