/
home
/
assocoweys
/
comgk
/
wp-content
/
plugins
/
google-analytics-dashboard-for-wp
/
lite
/
includes
/
admin
/
Upload File
HOME
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Add ExactMetrics tests to the WP Site Health area. */ /** * Class ExactMetrics_WP_Site_Health_Lite */ class ExactMetrics_WP_Site_Health_Lite { /** * Is the site licensed? * * @var bool */ private $is_licensed; /** * Is the site autherd? * * @var bool */ private $is_authed; /** * Which eCommerce type, if any. * * @var bool|string */ private $ecommerce; /** * ExactMetrics_WP_Site_Health_Lite constructor. */ public function __construct() { add_filter( 'site_status_tests', array( $this, 'add_tests' ) ); add_action( 'wp_ajax_health-check-exactmetrics-test_connection', array( $this, 'test_check_connection' ) ); add_action( 'wp_ajax_health-check-exactmetrics-test_tracking_code', array( $this, 'test_check_tracking_code' ) ); } /** * Add ExactMetrics WP Site Health tests. * * @param array $tests The current filters array. * * @return array */ public function add_tests( $tests ) { $tests['direct']['exactmetrics_auth'] = array( 'label' => __( 'ExactMetrics Authentication', 'google-analytics-dashboard-for-wp' ), 'test' => array( $this, 'test_check_authentication' ), ); $tests['direct']['exactmetrics_automatic_updates'] = array( 'label' => __( 'ExactMetrics Automatic Updates', 'google-analytics-dashboard-for-wp' ), 'test' => array( $this, 'test_check_autoupdates' ), ); if ( $this->is_ecommerce() ) { $tests['direct']['exactmetrics_ecommerce'] = array( 'label' => __( 'ExactMetrics eCommerce', 'google-analytics-dashboard-for-wp' ), 'test' => array( $this, 'test_check_ecommerce' ), ); } if ( $this->uses_amp() ) { $tests['direct']['exactmetrics_amp'] = array( 'label' => __( 'ExactMetrics AMP', 'google-analytics-dashboard-for-wp' ), 'test' => array( $this, 'test_check_amp' ), ); } $tests['async']['exactmetrics_connection'] = array( 'label' => __( 'ExactMetrics Connection', 'google-analytics-dashboard-for-wp' ), 'test' => 'exactmetrics_test_connection', ); if ( $this->is_tracking() ) { $tests['async']['exactmetrics_tracking_code'] = array( 'label' => __( 'ExactMetrics Tracking Code', 'google-analytics-dashboard-for-wp' ), 'test' => 'exactmetrics_test_tracking_code', ); } return $tests; } /** * Checks if the website is being tracked. * * @return bool */ public function is_tracking() { if ( ! isset( $this->is_tracking ) ) { $tracking_id = exactmetrics_get_v4_id(); $this->is_tracking = ! empty( $tracking_id ); } return $this->is_tracking; } /** * Check if any of the supported eCommerce integrations are available. * * @return bool */ public function is_ecommerce() { if ( isset( $this->ecommerce ) ) { return $this->ecommerce; } $this->ecommerce = false; if ( class_exists( 'WooCommerce' ) ) { $this->ecommerce = 'WooCommerce'; } else if ( class_exists( 'Easy_Digital_Downloads' ) ) { $this->ecommerce = 'Easy Digital Downloads'; } else if ( defined( 'MEPR_VERSION' ) && version_compare( MEPR_VERSION, '1.3.43', '>' ) ) { $this->ecommerce = 'MemberPress'; } else if ( function_exists( 'LLMS' ) && version_compare( LLMS()->version, '3.32.0', '>=' ) ) { $this->ecommerce = 'LifterLMS'; } return $this->ecommerce; } /** * Is the site using AMP or has the AMP addon installed? * * @return bool */ public function uses_amp() { return class_exists( 'ExactMetrics_AMP' ) || defined( 'AMP__FILE__' ); } /** * Is Coming Soon / Maintenance / Under Construction mode being activated by another plugin? * * @return bool */ private function is_coming_soon_active() { if ( defined( 'SEED_CSP4_SHORTNAME' ) ) { // SeedProd // https://www.seedprod.com $settings = get_option( 'seed_csp4_settings_content' ); // 0: Disabled // 1: Coming soon mode // 2: Maintenance mode return ! empty( $settings['status'] ); } elseif ( defined( 'WPMM_PATH' ) ) { // WP Maintenance Mode // https://designmodo.com/ $settings = get_option( 'wpmm_settings', array() ); return isset( $settings['general']['status'] ) && 1 === $settings['general']['status']; } elseif ( function_exists( 'csmm_get_options' ) ) { // Minimal Coming Soon & Maintenance Mode // https://comingsoonwp.com/ $settings = csmm_get_options(); return isset( $settings['status'] ) && 1 === $settings['status']; } elseif ( defined( 'WPM_DIR' ) ) { // WP Maintenance // https://fr.wordpress.org/plugins/wp-maintenance/ return '1' === get_option( 'wp_maintenance_active' ); } elseif ( defined( 'ACX_CSMA_CURRENT_VERSION' ) ) { // Under Construction / Maintenance Mode From Acurax // https://www.acurax.com/products/under-construction-maintenance-mode-wordpress-plugin return '1' === get_option( 'acx_csma_activation_status' ); } elseif ( defined( 'SAHU_SO_PLUGIN_URL' ) ) { // Site Offline // https://www.freehtmldesigns.com $settings = maybe_unserialize( get_option( 'sahu_so_dashboard' ) ); return isset( $settings['sahu_so_status'] ) && '1' === $settings['sahu_so_status']; } elseif ( defined( 'CSCS_GENEROPTION_PREFIX' ) ) { // IgniteUp // https://getigniteup.com return '1' === get_option( CSCS_GENEROPTION_PREFIX . 'enable', '' ); } elseif ( method_exists( 'UCP', 'is_construction_mode_enabled' ) ) { // Under Construction by WebFactory Ltd // https://underconstructionpage.com/ return UCP::is_construction_mode_enabled( true ); } elseif ( function_exists( 'mtnc_get_plugin_options' ) ) { // Maintenance by WP Maintenance // https://wordpress.org/plugins/maintenance/ $settings = mtnc_get_plugin_options( true ); return 1 === $settings['state']; } elseif ( class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) { // CMP Coming Soon & Maintenance // https://wordpress.org/plugins/cmp-coming-soon-maintenance/ return get_option( 'niteoCS_status' ); } return false; } /** * Check if ExactMetrics is authenticated and display a specific message. * * @return array */ public function test_check_authentication() { $result = array( 'label' => __( 'Your website is authenticated with ExactMetrics', 'google-analytics-dashboard-for-wp' ), 'status' => 'good', 'badge' => array( 'label' => __( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ), 'color' => 'blue', ), 'description' => __( 'ExactMetrics integrates your WordPress website with Google Analytics.', 'google-analytics-dashboard-for-wp' ), 'actions' => sprintf( '<p><a href="%s" target="_blank" rel="noopener noreferrer">%s</a></p>', add_query_arg( 'page', 'exactmetrics_reports', admin_url( 'admin.php' ) ), __( 'View Reports', 'google-analytics-dashboard-for-wp' ) ), 'test' => 'exactmetrics_auth', ); $this->is_authed = ExactMetrics()->auth->is_authed() || ExactMetrics()->auth->is_network_authed(); if ( ! $this->is_authed ) { if ( '' !== exactmetrics_get_v4_id() ) { // Using Manual V4. $result['status'] = 'recommended'; $result['label'] = __( 'You are using Manual GA4 Measurement ID output', 'google-analytics-dashboard-for-wp' ); $result['description'] = __( 'We highly recommend authenticating with ExactMetrics so that you can access our new reporting area and take advantage of new ExactMetrics features.', 'google-analytics-dashboard-for-wp' ); $result['actions'] = sprintf( '<p><a href="%s" target="_blank" rel="noopener noreferrer">%s</a></p>', add_query_arg( 'page', 'exactmetrics_settings', admin_url( 'admin.php' ) ), __( 'Authenticate now', 'google-analytics-dashboard-for-wp' ) ); } else { // Not authed at all. $result['status'] = 'critical'; $result['label'] = __( 'Please configure your Google Analytics settings', 'google-analytics-dashboard-for-wp' ); $result['description'] = __( 'Your traffic is not being tracked by ExactMetrics at the moment and you are losing data. Authenticate and get access to the reporting area and advanced tracking features.', 'google-analytics-dashboard-for-wp' ); $result['actions'] = sprintf( '<p><a href="%s" target="_blank" rel="noopener noreferrer">%s</a></p>', add_query_arg( 'page', 'exactmetrics_settings', admin_url( 'admin.php' ) ), __( 'Authenticate now', 'google-analytics-dashboard-for-wp' ) ); } } return $result; } /** * Check if the license is properly set up. * * @return array */ public function test_check_license() { $result = array( 'status' => 'critical', 'badge' => array( 'label' => __( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ), 'color' => 'blue', ), 'test' => 'exactmetrics_license', 'label' => __( 'ExactMetrics Upgrade not applied', 'google-analytics-dashboard-for-wp' ), 'description' => __( 'A valid license has been added to ExactMetrics but you are still using the Lite version.', 'google-analytics-dashboard-for-wp' ), 'actions' => sprintf( '<p><a href="%s" target="_blank" rel="noopener noreferrer">%s</a></p>', add_query_arg( 'page', 'exactmetrics_settings', admin_url( 'admin.php' ) ), __( 'Go to License Settings', 'google-analytics-dashboard-for-wp' ) ), ); return $result; } /** * Tests that run to check if autoupdates are enabled. * * @return array */ public function test_check_autoupdates() { $result = array( 'label' => __( 'Your website is receiving automatic updates', 'google-analytics-dashboard-for-wp' ), 'status' => 'good', 'badge' => array( 'label' => __( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ), 'color' => 'blue', ), 'description' => __( 'ExactMetrics automatic updates are enabled and you are getting the latest features, bugfixes, and security updates as they are released.', 'google-analytics-dashboard-for-wp' ), 'test' => 'exactmetrics_automatic_updates', ); $updates_option = exactmetrics_get_option( 'automatic_updates', false ); if ( 'minor' === $updates_option ) { $result['label'] = __( 'Your website is receiving minor updates', 'google-analytics-dashboard-for-wp' ); $result['description'] = __( 'ExactMetrics minor updates are enabled and you are getting the latest bugfixes and security updates, but not major features.', 'google-analytics-dashboard-for-wp' ); } if ( 'none' === $updates_option ) { $result['status'] = 'recommended'; $result['label'] = __( 'Automatic updates are disabled', 'google-analytics-dashboard-for-wp' ); $result['description'] = __( 'ExactMetrics automatic updates are disabled. We recommend enabling automatic updates so you can get access to the latest features, bugfixes, and security updates as they are released.', 'google-analytics-dashboard-for-wp' ); $result['actions'] = sprintf( '<p><a href="%s" target="_blank" rel="noopener noreferrer">%s</a></p>', add_query_arg( 'page', 'exactmetrics_settings#/advanced', admin_url( 'admin.php' ) ), __( 'Update Settings', 'google-analytics-dashboard-for-wp' ) ); } return $result; } /** * Tests that run to check if eCommerce is present. * * @return array */ public function test_check_ecommerce() { $result = array( 'label' => __( 'eCommerce data is not being tracked', 'google-analytics-dashboard-for-wp' ), 'status' => 'recommended', 'badge' => array( 'label' => __( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ), 'color' => 'blue', ), // Translators: The eCommerce store currently active. 'description' => sprintf( __( 'We detected you are using %s but the ExactMetrics eCommerce addon is not active. Please install and activate to start tracking eCommerce data.', 'google-analytics-dashboard-for-wp' ), $this->ecommerce ), 'test' => 'exactmetrics_ecommerce', 'actions' => sprintf( '<p><a href="%s" target="_blank" rel="noopener noreferrer">%s</a></p>', add_query_arg( 'page', 'exactmetrics_settings#/addons', admin_url( 'admin.php' ) ), __( 'View Addons', 'google-analytics-dashboard-for-wp' ) ), ); return $result; } /** * Tests for the AMP cases. * * @return array */ public function test_check_amp() { $result = array( 'label' => __( 'AMP pages are not being tracked', 'google-analytics-dashboard-for-wp' ), 'status' => 'recommended', 'badge' => array( 'label' => __( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ), 'color' => 'blue', ), 'description' => __( 'Your website has Google AMP-enabled pages enabled but they are not tracked by Google Analytics at the moment. You need to install and activate the ExactMetrics AMP Addon to track AMP pages.', 'google-analytics-dashboard-for-wp' ), 'test' => 'exactmetrics_amp', 'actions' => sprintf( '<p><a href="%s" target="_blank" rel="noopener noreferrer">%s</a></p>', add_query_arg( 'page', 'exactmetrics_settings#/addons', admin_url( 'admin.php' ) ), __( 'View Addons', 'google-analytics-dashboard-for-wp' ) ), ); return $result; } /** * Checks if there are errors communicating with exactmetrics.com. */ public function test_check_connection() { check_ajax_referer( 'health-check-site-status' ); if ( ! current_user_can( 'view_site_health_checks' ) ) { wp_send_json_error(); } $result = array( 'label' => __( 'Can connect to ExactMetrics.com correctly', 'google-analytics-dashboard-for-wp' ), 'status' => 'good', 'badge' => array( 'label' => __( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ), 'color' => 'blue', ), 'description' => __( 'The ExactMetrics API is reachable and no connection issues have been detected.', 'google-analytics-dashboard-for-wp' ), 'test' => 'exactmetrics_connection', ); $url = 'https://api.exactmetrics.com/v2/test/'; $params = array( 'sslverify' => false, 'timeout' => 2, 'user-agent' => 'ExactMetrics/' . EXACTMETRICS_VERSION, 'body' => '', ); $response = wp_remote_get( $url, $params ); if ( is_wp_error( $response ) || $response['response']['code'] < 200 || $response['response']['code'] > 300 ) { $result['status'] = 'critical'; $result['label'] = __( 'The ExactMetrics server is not reachable.', 'google-analytics-dashboard-for-wp' ); $result['description'] = __( 'Your server is blocking external requests to exactmetrics.com, please check your firewall settings or contact your host for more details.', 'google-analytics-dashboard-for-wp' ); if ( is_wp_error( $response ) ) { // Translators: The error message received. $result['description'] .= ' ' . sprintf( __( 'Error message: %s', 'google-analytics-dashboard-for-wp' ), $response->get_error_message() ); } } wp_send_json_success( $result ); } /** * Checks if there is a duplicate tracker. */ public function test_check_tracking_code() { check_ajax_referer( 'health-check-site-status' ); if ( ! current_user_can( 'view_site_health_checks' ) ) { wp_send_json_error(); } $result = array( 'label' => __( 'Tracking code is properly being output.', 'google-analytics-dashboard-for-wp' ), 'status' => 'good', 'badge' => array( 'label' => __( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ), 'color' => 'blue', ), 'description' => __( 'The Google Analytics tracking code is being output correctly, and no duplicate Google Analytics scripts have been detected.', 'google-analytics-dashboard-for-wp' ), 'test' => 'exactmetrics_tracking_code', ); $errors = exactmetrics_is_code_installed_frontend(); if ( ! empty( $errors ) && is_array( $errors ) && ! empty( $errors[0] ) ) { if ( $this->is_coming_soon_active() ) { $result['status'] = 'good'; $result['label'] = __( 'Tracking code disabled: coming soon/maintenance mode plugin present', 'google-analytics-dashboard-for-wp' ); $result['description'] = __( 'ExactMetrics has detected that you have a coming soon or maintenance mode plugin currently activated on your site. This plugin does not allow other plugins (like ExactMetrics) to output Javascript, and thus ExactMetrics is not currently tracking your users (expected). Once the coming soon/maintenance mode plugin is deactivated, tracking will resume automatically.', 'google-analytics-dashboard-for-wp' ); } else { $result['status'] = 'critical'; $result['label'] = __( 'ExactMetrics has automatically detected an issue with your tracking setup', 'google-analytics-dashboard-for-wp' ); $result['description'] = $errors[0]; } } wp_send_json_success( $result ); } } new ExactMetrics_WP_Site_Health_Lite();