| @@ -4,9 +4,8 @@ | ||
| 4 | 4 | |
| 5 | 5 | use Elementor\Core\Base\Module as BaseModule; |
| 6 | 6 | use Elementor\Core\Common\Modules\Connect\Apps\Base_App; |
| 7 | 7 | use Elementor\Core\Common\Modules\Connect\Apps\Common_App; |
| 8 | -use Elementor\Core\Common\Modules\EventsManager\RestApi\Events_Proxy_REST_API; | |
| 9 | 8 | use Elementor\Core\Experiments\Manager as Experiments_Manager; |
| 10 | 9 | use Elementor\Includes\EditorAssetsAPI; |
| 11 | 10 | use Elementor\Utils; |
| 12 | 11 | use Elementor\Plugin; |
| @@ -21,23 +20,17 @@ | ||
| 21 | 20 | const EXPERIMENT_NAME = 'editor_events'; |
| 22 | 21 | const DEFAULT_SESSION_RECORDING_PERCENT = 0; |
| 23 | 22 | const REMOTE_MIXPANEL_CONFIG_URL = 'https://assets.elementor.com/mixpanel/v1/mixpanel.json'; |
| 24 | 23 | |
| 25 | - const API_UPSTREAM_HOST = 'https://api-eu.mixpanel.com'; | |
| 26 | - const LIBS_UPSTREAM_HOST = 'https://cdn.mxpnl.com/libs'; | |
| 27 | - | |
| 28 | - public function __construct() { | |
| 29 | - parent::__construct(); | |
| 30 | - | |
| 31 | - ( new Events_Proxy_REST_API() )->register_hooks(); | |
| 32 | - } | |
| 33 | - | |
| 34 | 24 | public function get_name() { |
| 35 | 25 | return 'events-manager'; |
| 36 | 26 | } |
| 37 | 27 | |
| 38 | 28 | public static function get_editor_events_config() { |
| 39 | - $can_send_events = self::can_send_events(); | |
| 29 | + $can_send_events = ! empty( ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN ) && | |
| 30 | + Tracker::is_allow_track() && | |
| 31 | + ! Tracker::has_terms_changed( '2025-07-07' ) && | |
| 32 | + Plugin::$instance->experiments->is_feature_active( self::EXPERIMENT_NAME ); | |
| 40 | 33 | |
| 41 | 34 | $is_flags_enabled = false; |
| 42 | 35 | $session_recording_percent = self::DEFAULT_SESSION_RECORDING_PERCENT; |
| 43 | 36 | $debug = ( defined( 'ELEMENTOR_EDITOR_EVENTS_DEBUG' ) && ELEMENTOR_EDITOR_EVENTS_DEBUG ) ?? false; |
| @@ -65,10 +58,8 @@ | ||
| 65 | 58 | 'site_key' => get_option( Base_App::OPTION_CONNECT_SITE_KEY ), |
| 66 | 59 | 'subscription_id' => self::get_subscription_id(), |
| 67 | 60 | 'subscription' => self::get_subscription(), |
| 68 | 61 | 'token' => ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN, |
| 69 | - 'proxy_api_host' => rest_url( Events_Proxy_REST_API::API_NAMESPACE . '/' . Events_Proxy_REST_API::API_BASE . '/api' ), | |
| 70 | - 'proxy_lib_base_path' => rest_url( Events_Proxy_REST_API::API_NAMESPACE . '/' . Events_Proxy_REST_API::API_BASE . '/libs/' ), | |
| 71 | 62 | 'flags_enabled' => $is_flags_enabled, |
| 72 | 63 | 'user_id' => self::get_user_id(), |
| 73 | 64 | 'session_recording_percent' => $session_recording_percent, |
| 74 | 65 | ]; |
| @@ -75,33 +66,8 @@ | ||
| 75 | 66 | |
| 76 | 67 | return $settings; |
| 77 | 68 | } |
| 78 | 69 | |
| 79 | - public static function dispatch_event( string $event_name, array $properties = [] ): void { | |
| 80 | - if ( ! self::can_send_events() ) { | |
| 81 | - return; | |
| 82 | - } | |
| 83 | - | |
| 84 | - try { | |
| 85 | - $user_id = self::get_user_id(); | |
| 86 | - | |
| 87 | - $context = [ | |
| 88 | - 'user_id' => $user_id, | |
| 89 | - 'distinct_id' => $user_id, | |
| 90 | - 'subscription_id' => self::get_subscription_id(), | |
| 91 | - 'site_key' => get_option( Base_App::OPTION_CONNECT_SITE_KEY ), | |
| 92 | - 'app_version' => ELEMENTOR_VERSION, | |
| 93 | - 'wp_version' => get_bloginfo( 'version' ), | |
| 94 | - 'site_language' => get_locale(), | |
| 95 | - 'source' => 'server', | |
| 96 | - ]; | |
| 97 | - | |
| 98 | - Server_Events_Client::track( $event_name, array_merge( $properties, $context ) ); | |
| 99 | - } catch ( \Throwable $e ) { | |
| 100 | - return; | |
| 101 | - } | |
| 102 | - } | |
| 103 | - | |
| 104 | 70 | public static function get_experimental_data(): array { |
| 105 | 71 | return [ |
| 106 | 72 | 'name' => static::EXPERIMENT_NAME, |
| 107 | 73 | 'title' => esc_html__( 'Elementor Editor Events', 'elementor' ), |
| @@ -115,15 +81,8 @@ | ||
| 115 | 81 | ], |
| 116 | 82 | ]; |
| 117 | 83 | } |
| 118 | 84 | |
| 119 | - private static function can_send_events(): bool { | |
| 120 | - return ! empty( ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN ) && | |
| 121 | - Tracker::is_allow_track() && | |
| 122 | - ! Tracker::has_terms_changed() && | |
| 123 | - Plugin::$instance->experiments->is_feature_active( self::EXPERIMENT_NAME ); | |
| 124 | - } | |
| 125 | - | |
| 126 | 85 | private static function get_subscription_id() { |
| 127 | 86 | $subscription = self::get_subscription(); |
| 128 | 87 | |
| 129 | 88 | return $subscription['subscription_id'] ?? null; |
| @@ -150,21 +109,8 @@ | ||
| 150 | 109 | ] ); |
| 151 | 110 | |
| 152 | 111 | return $editor_assets_api->get_assets_data(); |
| 153 | 112 | } |
| 154 | - | |
| 155 | - public static function get_mixpanel_api_host() { | |
| 156 | - $mixpanel_config = self::get_remote_mixpanel_config(); | |
| 157 | - | |
| 158 | - return wp_http_validate_url( $mixpanel_config[0]['apiHost'] ?? static::API_UPSTREAM_HOST ); | |
| 159 | - } | |
| 160 | - | |
| 161 | - public static function get_mixpanel_lib_host() { | |
| 162 | - $mixpanel_config = self::get_remote_mixpanel_config(); | |
| 163 | - | |
| 164 | - return wp_http_validate_url( $mixpanel_config[0]['libHost'] ?? static::LIBS_UPSTREAM_HOST ); | |
| 165 | - } | |
| 166 | - | |
| 167 | 113 | private static function get_user_id() { |
| 168 | 114 | $user_common_data = get_user_option( Common_App::OPTION_CONNECT_COMMON_DATA_KEY ); |
| 169 | 115 | |
| 170 | 116 | if ( ! is_array( $user_common_data ) ) { |