/
home
/
assocoweys
/
ermada24
/
wp-content
/
plugins
/
ht-mega-for-elementor
/
admin
/
include
/
Upload File
HOME
<?php /** * Diagnostic data. */ // If this file is accessed directly, exit. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Class. */ if ( ! class_exists( 'HTMega_Diagnostic_Data' ) ) { class HTMega_Diagnostic_Data { /** * Project name. */ private $project_name; /** * Project type. */ private $project_type; /** * Project version. */ private $project_version; /** * Pro active. */ private $project_pro_active; /** * Pro installed. */ private $project_pro_installed; /** * Pro version. */ private $project_pro_version; /** * Data center. */ private $data_center; /** * Privacy policy. */ private $privacy_policy; /** * Instance. */ private static $_instance = null; /** * Get instance. */ public static function get_instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; } /** * Constructor. */ private function __construct() { $this->includes(); $this->project_name = 'HT Mega'; $this->project_type = 'wordpress-plugin'; $this->project_version = HTMEGA_VERSION; $this->data_center = 'https://n8n.aslamhasib.com/webhook/484fe1ab-9cdf-4318-8b6f-2b218ac47009'; $this->privacy_policy = 'https://wphtmega.com/privacy-policy/'; $this->project_pro_active = $this->is_pro_plugin_active(); $this->project_pro_installed = $this->is_pro_plugin_installed(); $this->project_pro_version = $this->get_pro_version(); if ( get_option( 'htmega_diagnostic_data_agreed' ) === 'yes' || get_option( 'htmega_diagnostic_data_notice' ) === 'no' ) { return; } add_action( 'admin_notices', function () { $this->show_notices(); }, 0 ); add_action( 'wp_ajax_htmega_diagnostic_data', function () { $this->process_data(); } ); // Add this new action hook add_action('htmega_collect_diagnostic_data', array($this, 'collect_and_send_data')); } /** * Is capable user. */ private function includes() { if ( ! function_exists( 'is_plugin_active' ) || ! function_exists( 'get_plugins' ) || ! function_exists( 'get_plugin_data' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } } /** * Is capable user. */ private function is_capable_user() { $result = 'no'; if ( current_user_can( 'manage_options' ) ) { $result = 'yes'; } return $result; } /** * Is show core notice. */ private function is_show_core_notice() { $result = get_option( 'htmega_diagnostic_data_notice', 'yes' ); $result = ( ( 'yes' === $result ) ? 'yes' : 'no' ); return $result; } /** * Is pro active. */ private function is_pro_plugin_active() { $plugin = 'htmega-pro/htmega_pro.php'; $result = is_plugin_active( $plugin ); $result = ( ( true === $result ) ? 'yes' : 'no' ); return $result; } /** * Is pro installed. */ private function is_pro_plugin_installed() { $plugin = 'htmega-pro/htmega_pro.php'; $plugins = get_plugins(); $result = ( isset( $plugins[ $plugin ] ) ? 'yes' : 'no' ); return $result; } /** * Get pro version. */ private function get_pro_version() { $plugin = 'htmega-pro/htmega_pro.php'; $plugins = get_plugins(); $data = ( ( isset( $plugins[ $plugin ] ) && is_array( $plugins[ $plugin ] ) ) ? $plugins[ $plugin ] : array() ); $version = ( isset( $data['Version'] ) ? sanitize_text_field( $data['Version'] ) : '' ); return $version; } /** * Process data. */ private function process_data() { check_ajax_referer( 'htmega-diagonstic-data-ajax-request', 'security' ); $agreed = ( isset( $_POST['agreed'] ) ? sanitize_key( $_POST['agreed'] ) : 'no' ); $agreed = ( ( 'yes' === $agreed ) ? 'yes' : 'no' ); $notice = 'no'; if ( 'yes' === $agreed ) { $data = $this->get_data(); if ( ! empty( $data ) ) { $response = $this->send_request( $data ); if ( is_wp_error( $response ) ) { $agreed = 'no'; $notice = 'yes'; } } } update_option( 'htmega_diagnostic_data_agreed', $agreed ); update_option( 'htmega_diagnostic_data_notice', $notice ); $response = array( 'success' => $agreed, 'notice' => $notice, ); if ( 'yes' === $agreed ) { $response['thanks_notice'] = $this->get_thanks_notice(); } wp_send_json( $response ); } /** * Get data. */ private function get_data() { $hash = md5( current_time( 'U', true ) ); $project = array( 'name' => $this->project_name, 'type' => $this->project_type, 'version' => $this->project_version, 'pro_active' => $this->project_pro_active, 'pro_installed' => $this->project_pro_installed, 'pro_version' => $this->project_pro_version, ); $site_title = get_bloginfo( 'name' ); $site_description = get_bloginfo( 'description' ); $site_url = wp_parse_url( home_url(), PHP_URL_HOST ); $admin_email = get_option( 'admin_email' ); $admin_first_name = ''; $admin_last_name = ''; $admin_display_name = ''; $users = get_users( array( 'role' => 'administrator', 'orderby' => 'ID', 'order' => 'ASC', 'number' => 1, 'paged' => 1, ) ); $admin_user = ( ( is_array( $users ) && isset( $users[0] ) && is_object( $users[0] ) ) ? $users[0] : null ); if ( ! empty( $admin_user ) ) { $admin_first_name = ( isset( $admin_user->first_name ) ? $admin_user->first_name : '' ); $admin_last_name = ( isset( $admin_user->last_name ) ? $admin_user->last_name : '' ); $admin_display_name = ( isset( $admin_user->display_name ) ? $admin_user->display_name : '' ); } $ip_address = $this->get_ip_address(); $data = array( 'hash' => $hash, 'project' => $project, 'site_title' => $site_title, 'site_description' => $site_description, 'site_address' => $site_url, 'site_url' => $site_url, 'admin_email' => $admin_email, 'admin_first_name' => $admin_first_name, 'admin_last_name' => $admin_last_name, 'admin_display_name' => $admin_display_name, 'server_info' => $this->get_server_info(), 'wordpress_info' => $this->get_wordpress_info(), 'users_count' => $this->get_users_count(), 'plugins_count' => $this->get_plugins_count(), 'ip_address' => $ip_address, 'country_name' => $this->get_country_from_ip( $ip_address ), ); return $data; } /** * Get server info. */ private function get_server_info() { global $wpdb; $software = ( ( isset( $_SERVER['SERVER_SOFTWARE'] ) && ! empty( $_SERVER['SERVER_SOFTWARE'] ) ) ? $_SERVER['SERVER_SOFTWARE'] : '' ); $php_version = ( function_exists( 'phpversion' ) ? phpversion() : '' ); $mysql_version = ( method_exists( $wpdb, 'db_version' ) ? $wpdb->db_version() : '' ); $php_max_upload_size = size_format( wp_max_upload_size() ); $php_default_timezone = date_default_timezone_get(); $php_soap = ( class_exists( 'SoapClient' ) ? 'yes' : 'no' ); $php_fsockopen = ( function_exists( 'fsockopen' ) ? 'yes' : 'no' ); $php_curl = ( function_exists( 'curl_init' ) ? 'yes' : 'no' ); $server_info = array( 'software' => $software, 'php_version' => $php_version, 'mysql_version' => $mysql_version, 'php_max_upload_size' => $php_max_upload_size, 'php_default_timezone' => $php_default_timezone, 'php_soap' => $php_soap, 'php_fsockopen' => $php_fsockopen, 'php_curl' => $php_curl, ); return $server_info; } /** * Get wordpress info. */ private function get_wordpress_info() { $wordpress_info = array(); $memory_limit = ( defined( 'WP_MEMORY_LIMIT' ) ? WP_MEMORY_LIMIT : '' ); $debug_mode = ( ( defined('WP_DEBUG') && WP_DEBUG ) ? 'yes' : 'no' ); $locale = get_locale(); $version = get_bloginfo( 'version' ); $multisite = ( is_multisite() ? 'yes' : 'no' ); $theme_slug = get_stylesheet(); $wordpress_info = array( 'memory_limit' => $memory_limit, 'debug_mode' => $debug_mode, 'locale' => $locale, 'version' => $version, 'multisite' => $multisite, 'theme_slug' => $theme_slug, ); $theme = wp_get_theme( $wordpress_info['theme_slug'] ); if ( is_object( $theme ) && ! empty( $theme ) && method_exists( $theme, 'get' ) ) { $theme_name = $theme->get( 'Name' ); $theme_version = $theme->get( 'Version' ); $theme_uri = $theme->get( 'ThemeURI' ); $theme_author = $theme->get( 'Author' ); $wordpress_info = array_merge( $wordpress_info, array( 'theme_name' => $theme_name, 'theme_version' => $theme_version, 'theme_uri' => $theme_uri, 'theme_author' => $theme_author, ) ); } return $wordpress_info; } /** * Get users count. */ private function get_users_count() { $users_count = array(); $users_count_data = count_users(); $total_users = ( isset( $users_count_data['total_users'] ) ? $users_count_data['total_users'] : 0 ); $avail_roles = ( isset( $users_count_data['avail_roles'] ) ? $users_count_data['avail_roles'] : array() ); $users_count['total'] = $total_users; if ( is_array( $avail_roles ) && ! empty( $avail_roles ) ) { foreach ( $avail_roles as $role => $count ) { $users_count[ $role ] = $count; } } return $users_count; } /** * Get plugins count. */ private function get_plugins_count() { $total_plugins_count = 0; $active_plugins_count = 0; $inactive_plugins_count = 0; $plugins = get_plugins(); $plugins = ( is_array( $plugins ) ? $plugins : array() ); $active_plugins = get_option( 'active_plugins', array() ); $active_plugins = ( is_array( $active_plugins ) ? $active_plugins : array() ); if ( ! empty( $plugins ) ) { foreach ( $plugins as $key => $data ) { if ( in_array( $key, $active_plugins, true ) ) { $active_plugins_count++; } else { $inactive_plugins_count++; } $total_plugins_count++; } } $plugins_count = array( 'total' => $total_plugins_count, 'active' => $active_plugins_count, 'inactive' => $inactive_plugins_count, ); return $plugins_count; } /** * Get IP Address */ private function get_ip_address() { $response = wp_remote_get( 'https://icanhazip.com/' ); if ( is_wp_error( $response ) ) { return ''; } $ip_address = wp_remote_retrieve_body( $response ); $ip_address = trim( $ip_address ); if ( ! filter_var( $ip_address, FILTER_VALIDATE_IP ) ) { return ''; } return $ip_address; } /** * Get Country Form ID Address */ private function get_country_from_ip( $ip_address ) { $api_url = 'http://ip-api.com/json/' . $ip_address; // Fetch data from the API $response = wp_remote_get( $api_url ); if ( is_wp_error( $response ) ) { return 'Error'; } // Decode the JSON response $data = json_decode( wp_remote_retrieve_body($response) ); if ($data && $data->status === 'success') { return $data->country; } else { return 'Unknown'; } } /** * Send request. */ private function send_request( $data = array() ) { if ( ! is_array( $data ) || empty( $data ) ) { return; } $site_url = wp_parse_url( home_url(), PHP_URL_HOST ); $headers = array( 'user-agent' => $this->project_name . '/' . md5( $site_url ) . ';', 'Accept' => 'application/json', ); $response = wp_remote_post( $this->data_center, array( 'method' => 'POST', 'timeout' => 45, 'redirection' => 5, 'httpversion' => '1.0', 'blocking' => false, 'headers' => $headers, 'body' => $data, 'cookies' => array(), ) ); return $response; } /** * Show notices. */ /** * Check if this plugin should show the diagnostic data notice. * Returns false if already agreed, dismissed, or another HT plugin takes priority. */ public function should_show_notice() { if ( get_option( 'htmega_diagnostic_data_agreed' ) === 'yes' || get_option( 'htmega_diagnostic_data_notice' ) === 'no' ) { return false; } $sibling_plugins = array( 'woolentor-addons/woolentor_addons_elementor.php' => array( 'agreed' => 'woolentor_diagnostic_data_agreed', 'notice' => 'woolentor_diagnostic_data_notice', ), 'ht-easy-google-analytics/ht-easy-google-analytics.php' => array( 'agreed' => 'htga4_diagnostic_data_agreed', 'notice' => 'htga4_diagnostic_data_notice', ), 'ht-contactform/contact-form-widget-elementor.php' => array( 'agreed' => 'ht_contactform_diagnostic_data_agreed', 'notice' => 'ht_contactform_diagnostic_data_notice', ), 'hashbar-wp-notification-bar/init.php' => array( 'agreed' => 'hashbar_diagnostic_data_agreed', 'notice' => 'hashbar_diagnostic_data_notice', ), 'support-genix-lite/support-genix-lite.php' => array( 'agreed' => 'support_genix_lite_diagnostic_data_agreed', 'notice' => 'support_genix_lite_diagnostic_data_notice', ), 'pixelavo/pixelavo.php' => array( 'agreed' => 'pixelavo_diagnostic_data_agreed', 'notice' => 'pixelavo_diagnostic_data_notice', ), 'swatchly/swatchly.php' => array( 'agreed' => 'swatchly_diagnostic_data_agreed', 'notice' => 'swatchly_diagnostic_data_notice', ), 'extensions-for-cf7/extensions-for-cf7.php' => array( 'agreed' => 'ht_cf7extensions_diagnostic_data_agreed', 'notice' => 'ht_cf7extensions_diagnostic_data_notice', ), 'whols/whols.php' => array( 'agreed' => 'whols_diagnostic_data_agreed', 'notice' => 'whols_diagnostic_data_notice', ), 'wp-plugin-manager/plugin-main.php' => array( 'agreed' => 'htpm_diagnostic_data_agreed', 'notice' => 'htpm_diagnostic_data_notice', ), 'just-tables/just-tables.php' => array( 'agreed' => 'justtables_diagnostic_data_agreed', 'notice' => 'justtables_diagnostic_data_notice', ), 'really-simple-google-tag-manager/really-simple-google-tag-manager.php' => array( 'agreed' => 'simple_googletag_diagnostic_data_agreed', 'notice' => 'simple_googletag_diagnostic_data_notice', ), 'insert-headers-and-footers-script/init.php' => array( 'agreed' => 'ihafs_diagnostic_data_agreed', 'notice' => 'ihafs_diagnostic_data_notice', ), ); foreach ( $sibling_plugins as $plugin_slug => $options ) { if ( get_option( $options['agreed'] ) === 'yes' ) { update_option( 'htmega_diagnostic_data_agreed', 'yes' ); update_option( 'htmega_diagnostic_data_notice', 'no' ); return false; } } // Ensure only one HT plugin shows the diagnostic notice per request. global $ht_diagnostic_notice_owner; if ( isset( $ht_diagnostic_notice_owner ) && $ht_diagnostic_notice_owner !== 'htmega' ) { return false; } $ht_diagnostic_notice_owner = 'htmega'; return true; } private function show_notices() { if ( ! $this->should_show_notice() ) { return; } if ( 'no' === $this->is_capable_user() ) { return; } $screen = get_current_screen(); $id = isset($screen->id) ? $screen->id : ""; if ($id === 'plugins') { return; } if ( 'yes' === $this->is_show_core_notice() ) { $this->show_core_notice(); } } /** * Show core notice. */ private function show_core_notice() { $ajax_nonce = wp_create_nonce( "htmega-diagonstic-data-ajax-request" ); $message_l2 = sprintf( esc_html__( 'Server information (Web server, PHP version, MySQL version), WordPress information, site name, site URL, number of plugins, number of users, your name, and email address. You can rest assured that no sensitive data will be collected or tracked. %1$sPrivacy Policy%2$s', 'htmega-addons' ), '<a target="_blank" href="' . esc_url( $this->privacy_policy ) . '">', '</a>' ); $button_text_1 = esc_html__( 'Count Me In', 'htmega-addons' ); $button_link_1 = add_query_arg( array( 'htmega-diagnostic-data-agreed' => 1 ) ); $button_text_2 = esc_html__( 'No, Thanks', 'htmega-addons' ); $button_link_2 = add_query_arg( array( 'htmega-diagnostic-data-agreed' => 0 ) ); ?> <div class="htmega-diagnostic-data-style"><style>.htmega-diagnostic-data-notice,.woocommerce-embed-page .htmega-diagnostic-data-notice{padding-top:.75em;padding-bottom:.75em;}.htmega-diagnostic-data-notice .htmega-diagnostic-data-buttons,.htmega-diagnostic-data-notice .htmega-diagnostic-data-list,.htmega-diagnostic-data-notice .htmega-diagnostic-data-message{padding:.25em 2px;margin:0;}.htmega-diagnostic-data-notice .htmega-diagnostic-data-list{display:none;color:#646970;}.htmega-diagnostic-data-notice .htmega-diagnostic-data-buttons{padding-top:.75em;}.htmega-diagnostic-data-notice .htmega-diagnostic-data-buttons .button{margin-right:5px;box-shadow:none;}.htmega-diagnostic-data-loading{position:relative;}.htmega-diagnostic-data-loading::before{position:absolute;content:"";width:100%;height:100%;top:0;left:0;background-color:rgba(255,255,255,.5);z-index:999;}.htmega-diagnostic-data-disagree{border-width:0px !important;background-color: transparent!important; padding: 0!important;}.htmega-diagnostic-data-list-toogle{cursor:pointer;color:#2271b1;text-decoration:none;}</style></div> <div class="htmega-diagnostic-data-notice notice notice-info"> <p class="htmega-diagnostic-data-message"><?php echo wp_kses_post( sprintf( esc_html__( 'Want to help make %2$s%1$s%3$s even more awesome? Allow %1$s to collect diagnostic data and usage information. (%4$swhat we collect%5$s)', 'htmega-addons' ), esc_html( $this->project_name ), '<strong>', '</strong>', '<a href="#" class="htmega-diagnostic-data-list-toogle">', '</a>' ) ); ?></p> <p class="htmega-diagnostic-data-list"><?php echo wp_kses_post( $message_l2 ); ?></p> <p class="htmega-diagnostic-data-buttons"> <a href="<?php echo esc_url( $button_link_1 ); ?>" class="htmega-diagnostic-data-button htmega-diagnostic-data-agree button button-primary"><?php echo esc_html( $button_text_1 ); ?></a> <a href="<?php echo esc_url( $button_link_2 ); ?>" class="htmega-diagnostic-data-button htmega-diagnostic-data-disagree button button-secondary"><?php echo esc_html( $button_text_2 ); ?></a> </p> </div> <div class="htmega-diagnostic-data-script"><script type="text/javascript">;(function($){"use strict";function htmegaDissmissThanksNotice(noticeWrap){$('.htmega-diagnostic-data-thanks .notice-dismiss').on('click',function(e){e.preventDefault();let thisButton=$(this),noticeWrap=thisButton.closest('.htmega-diagnostic-data-thanks');noticeWrap.fadeTo(100,0,function(){noticeWrap.slideUp(100,function(){noticeWrap.remove()})})})};$(".htmega-diagnostic-data-list-toogle").on("click",function(e){e.preventDefault();$(this).parents(".htmega-diagnostic-data-notice").find(".htmega-diagnostic-data-list").slideToggle("fast")});$(".htmega-diagnostic-data-button").on("click",function(e){e.preventDefault();let thisButton=$(this),noticeWrap=thisButton.closest(".htmega-diagnostic-data-notice"),agreed=thisButton.hasClass("htmega-diagnostic-data-agree")?"yes":"no",styleWrap=$(".htmega-diagnostic-data-style"),scriptWrap=$(".htmega-diagnostic-data-script");$.ajax({type:"POST",url:ajaxurl,data:{action:"htmega_diagnostic_data",agreed:agreed,security:'<?php echo esc_js( $ajax_nonce );?>'},beforeSend:function(){noticeWrap.addClass("htmega-diagnostic-data-loading")},success:function(response){response="object"===typeof response?response:{};let success=response.hasOwnProperty("success")?response.success:"no",notice=response.hasOwnProperty("notice")?response.notice:"no",thanks_notice=response.hasOwnProperty("thanks_notice")?response.thanks_notice:"";if("yes"===success){noticeWrap.replaceWith(thanks_notice);styleWrap.remove();scriptWrap.remove()}else if("no"===notice){noticeWrap.remove();styleWrap.remove();scriptWrap.remove()};noticeWrap.removeClass("htmega-diagnostic-data-loading");htmegaDissmissThanksNotice()},error:function(){noticeWrap.removeClass("htmega-diagnostic-data-loading")},})})})(jQuery);</script></div> <?php } /** * Get thanks notice. */ private function get_thanks_notice() { $message = sprintf(/* translators: 1: Project Name, 2: Opening strong tag, 3: Closing strong tag */ esc_html__( 'Thank you very much for supporting %2$s%1$s%3$s.', 'htmega-addons' ), $this->project_name, '<strong>', '</strong>' ); $notice = sprintf( '<div class="htmega-diagnostic-data-thanks notice notice-success is-dismissible"><p>%1$s</p><button type="button" class="notice-dismiss"><span class="screen-reader-text"></span></button></div>', wp_kses_post( $message ) ); return $notice; } /** * Collect and send diagnostic data directly from onboarding */ public function collect_and_send_data( $nonce = '' ) { // Verify nonce if provided if (!empty($nonce) && !wp_verify_nonce($nonce, 'htmega-diagonstic-data-ajax-request')) { return; } // Verify user capabilities if (!current_user_can('manage_options')) { return; } $data = $this->get_data(); if (empty($data)) { return; } $data = $this->get_data(); if (empty($data)) { return; } $site_url = wp_parse_url(home_url(), PHP_URL_HOST); $headers = array( 'user-agent' => $this->project_name . '/' . md5($site_url) . ';', 'Accept' => 'application/json', ); wp_remote_post($this->data_center, array( 'method' => 'POST', 'timeout' => 45, 'redirection' => 5, 'httpversion' => '1.0', 'blocking' => false, 'headers' => $headers, 'body' => $data, 'cookies' => array() )); update_option('htmega_diagnostic_data_agreed', 'yes'); update_option('htmega_diagnostic_data_notice', 'no'); } } // Returns the instance. HTMega_Diagnostic_Data::get_instance(); }