jetpack
/
jetpack_vendor
/
automattic
/
woocommerce-analytics
/
src
/
mu-plugin
/
woocommerce-analytics-proxy-speed-module-template.php
woocommerce-analytics-proxy-speed-module-template.php
296 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | /** |
| 3 | * Plugin Name: WooCommerce Analytics - Proxy Speed Module |
| 4 | * Description: Speeds up WooCommerce Analytics' proxy by handling requests at MU-plugin stage and exiting early. |
| 5 | * Plugin URI: https://woocommerce.com |
| 6 | * Author: WooCommerce |
| 7 | * Version: {{VERSION}} |
| 8 | * Author URI: https://woocommerce.com |
| 9 | * |
| 10 | * Text Domain: woocommerce-analytics |
| 11 | * |
| 12 | * This module intercepts proxy tracking requests at the MU-plugin stage (before regular plugins load) |
| 13 | * and handles them completely, then exits. This dramatically reduces response time by avoiding |
| 14 | * the full WordPress plugin initialization. |
| 15 | */ |
| 16 | |
| 17 | defined( 'ABSPATH' ) || exit; |
| 18 | |
| 19 | /** |
| 20 | * WooCommerce Analytics Proxy Speed Module |
| 21 | */ |
| 22 | class WooCommerceAnalyticsProxySpeed { |
| 23 | |
| 24 | /** |
| 25 | * Path of the proxy request. |
| 26 | * |
| 27 | * @var string |
| 28 | */ |
| 29 | const PROXY_REQUEST_PATH = 'woocommerce-analytics/v1/track'; |
| 30 | |
| 31 | /** |
| 32 | * Autoloader path - this placeholder is replaced during installation. |
| 33 | * DO NOT MODIFY - this value is injected by the parent plugin. |
| 34 | * |
| 35 | * @var string |
| 36 | */ |
| 37 | const AUTOLOADER_PATH = '{{AUTOLOADER_PATH}}'; |
| 38 | |
| 39 | /** |
| 40 | * Initialize the proxy speed module. |
| 41 | * |
| 42 | * @return void |
| 43 | */ |
| 44 | public function init() { |
| 45 | // Only intercept POST requests to the proxy endpoint. |
| 46 | if ( ! $this->is_proxy_request() ) { |
| 47 | return; |
| 48 | } |
| 49 | |
| 50 | // If autoloader failed, let WordPress continue loading |
| 51 | // and fallback to the regular REST API. |
| 52 | if ( ! $this->load_autoloader() ) { |
| 53 | return; |
| 54 | } |
| 55 | |
| 56 | // Handle the request completely and exit. |
| 57 | $this->handle_proxy_request(); |
| 58 | exit; |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Check if current request is a proxy request. |
| 63 | * |
| 64 | * @return bool |
| 65 | */ |
| 66 | private function is_proxy_request() { |
| 67 | if ( 'POST' !== $this->get_request_method() ) { |
| 68 | return false; |
| 69 | } |
| 70 | |
| 71 | $path = $this->get_request_path(); |
| 72 | |
| 73 | if ( '' === $path ) { |
| 74 | return false; |
| 75 | } |
| 76 | |
| 77 | $normalized_path = rtrim( $path, '/' ); |
| 78 | $proxy_suffix = '/' . ltrim( self::PROXY_REQUEST_PATH, '/' ); |
| 79 | |
| 80 | if ( strlen( $normalized_path ) < strlen( $proxy_suffix ) ) { |
| 81 | return false; |
| 82 | } |
| 83 | |
| 84 | return substr( $normalized_path, -strlen( $proxy_suffix ) ) === $proxy_suffix; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Load the autoloader. |
| 89 | * |
| 90 | * At MU-plugin stage, plugins haven't loaded yet, so we bootstrap |
| 91 | * the autoloader directly using the path injected during installation. |
| 92 | * |
| 93 | * @return bool True if autoloader loaded and classes are available. |
| 94 | */ |
| 95 | private function load_autoloader() { |
| 96 | $autoload_path = self::AUTOLOADER_PATH; |
| 97 | |
| 98 | // Validate the path was properly injected (not still a placeholder). |
| 99 | if ( strpos( $autoload_path, '{{' ) !== false ) { |
| 100 | error_log( 'WooCommerce Analytics Proxy Speed Module: Autoloader path placeholder was not replaced during installation.' ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log |
| 101 | return false; |
| 102 | } |
| 103 | |
| 104 | if ( ! file_exists( $autoload_path ) ) { |
| 105 | error_log( 'WooCommerce Analytics Proxy Speed Module: Autoloader file not found at: ' . $autoload_path ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log |
| 106 | return false; |
| 107 | } |
| 108 | |
| 109 | try { |
| 110 | require_once $autoload_path; |
| 111 | } catch ( \Throwable $e ) { |
| 112 | error_log( 'WooCommerce Analytics Proxy Speed Module: Failed to load autoloader: ' . $e->getMessage() ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log |
| 113 | return false; |
| 114 | } |
| 115 | |
| 116 | if ( ! class_exists( '\Automattic\Woocommerce_Analytics\WC_Analytics_Tracking' ) ) { |
| 117 | error_log( 'WooCommerce Analytics Proxy Speed Module: WC_Analytics_Tracking class not found after loading autoloader.' ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log |
| 118 | return false; |
| 119 | } |
| 120 | |
| 121 | return true; |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Handle the proxy request completely. |
| 126 | * |
| 127 | * Processes the events and sends the response without loading |
| 128 | * regular WordPress plugins. |
| 129 | * |
| 130 | * @return void |
| 131 | */ |
| 132 | private function handle_proxy_request() { |
| 133 | if ( ! headers_sent() ) { |
| 134 | header( 'Content-Type: application/json; charset=utf-8' ); |
| 135 | header( 'Cache-Control: no-cache, must-revalidate' ); |
| 136 | } |
| 137 | |
| 138 | try { |
| 139 | $this->process_proxy_request(); |
| 140 | } catch ( \Throwable $e ) { |
| 141 | error_log( 'WooCommerce Analytics Proxy Speed Module: Uncaught error in handle_proxy_request: ' . $e->getMessage() ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log |
| 142 | $this->send_json_response( |
| 143 | array( |
| 144 | 'success' => false, |
| 145 | 'error' => 'Internal server error while processing analytics events.', |
| 146 | ), |
| 147 | 500 |
| 148 | ); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Process the proxy request body: parse events, record them, and send the response. |
| 154 | * |
| 155 | * @return void |
| 156 | */ |
| 157 | private function process_proxy_request() { |
| 158 | // Apply magic quotes to superglobals ($_GET, $_POST, $_COOKIE, $_REQUEST) for compatibility with the regular API flow. |
| 159 | if ( function_exists( 'wp_magic_quotes' ) ) { |
| 160 | wp_magic_quotes(); |
| 161 | } |
| 162 | |
| 163 | $body = file_get_contents( 'php://input' ); |
| 164 | if ( empty( $body ) ) { |
| 165 | $this->send_json_response( |
| 166 | array( |
| 167 | 'success' => false, |
| 168 | 'error' => 'Empty request body', |
| 169 | ), |
| 170 | 400 |
| 171 | ); |
| 172 | return; |
| 173 | } |
| 174 | |
| 175 | $events = json_decode( $body, true ); |
| 176 | if ( json_last_error() !== JSON_ERROR_NONE ) { |
| 177 | $this->send_json_response( |
| 178 | array( |
| 179 | 'success' => false, |
| 180 | 'error' => 'Invalid JSON', |
| 181 | ), |
| 182 | 400 |
| 183 | ); |
| 184 | return; |
| 185 | } |
| 186 | |
| 187 | // Normalize: wrap a single event object or unexpected scalar in an array. |
| 188 | if ( ! is_array( $events ) || isset( $events['event_name'] ) ) { |
| 189 | $events = array( $events ); |
| 190 | } |
| 191 | |
| 192 | $results = array(); |
| 193 | $has_errors = false; |
| 194 | |
| 195 | foreach ( $events as $index => $event ) { |
| 196 | if ( empty( $event ) || ! is_array( $event ) ) { |
| 197 | $results[ $index ] = array( |
| 198 | 'success' => false, |
| 199 | 'error' => 'Invalid event format', |
| 200 | ); |
| 201 | $has_errors = true; |
| 202 | continue; |
| 203 | } |
| 204 | |
| 205 | $event_name = $event['event_name'] ?? null; |
| 206 | $properties = $event['properties'] ?? array(); |
| 207 | |
| 208 | if ( ! $event_name || ! is_array( $properties ) ) { |
| 209 | $results[ $index ] = array( |
| 210 | 'success' => false, |
| 211 | 'error' => 'Missing event_name or invalid properties', |
| 212 | ); |
| 213 | $has_errors = true; |
| 214 | continue; |
| 215 | } |
| 216 | |
| 217 | $result = \Automattic\Woocommerce_Analytics\WC_Analytics_Tracking::record_event( $event_name, $properties ); |
| 218 | |
| 219 | if ( is_wp_error( $result ) ) { |
| 220 | $results[ $index ] = array( |
| 221 | 'success' => false, |
| 222 | 'error' => $result->get_error_message(), |
| 223 | ); |
| 224 | $has_errors = true; |
| 225 | continue; |
| 226 | } |
| 227 | |
| 228 | $results[ $index ] = array( 'success' => true ); |
| 229 | } |
| 230 | |
| 231 | \Automattic\Woocommerce_Analytics\WC_Analytics_Tracking::send_batched_pixels(); |
| 232 | |
| 233 | $this->send_json_response( |
| 234 | array( |
| 235 | 'success' => ! $has_errors, |
| 236 | 'results' => $results, |
| 237 | 'is_proxy_speed_module' => true, |
| 238 | ), |
| 239 | $has_errors ? 207 : 200 |
| 240 | ); |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * Send a JSON response. |
| 245 | * |
| 246 | * @param array $data Response data. |
| 247 | * @param int $status_code HTTP status code. |
| 248 | * @return void |
| 249 | */ |
| 250 | private function send_json_response( $data, $status_code = 200 ) { |
| 251 | http_response_code( $status_code ); |
| 252 | echo wp_json_encode( $data, JSON_UNESCAPED_SLASHES ); |
| 253 | } |
| 254 | |
| 255 | /** |
| 256 | * Helper method to retrieve the request path. |
| 257 | * |
| 258 | * Extracts and validates the path component from $_SERVER['REQUEST_URI'] |
| 259 | * for safe internal matching. |
| 260 | * |
| 261 | * @return string The validated path, or empty string on failure. |
| 262 | */ |
| 263 | private function get_request_path() { |
| 264 | $raw_uri = isset( $_SERVER['REQUEST_URI'] ) ? wp_unslash( $_SERVER['REQUEST_URI'] ) : ''; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized |
| 265 | |
| 266 | if ( ! is_string( $raw_uri ) ) { |
| 267 | return ''; |
| 268 | } |
| 269 | |
| 270 | // Extract just the path component to avoid matching against query strings, etc. |
| 271 | $path = wp_parse_url( $raw_uri, PHP_URL_PATH ); |
| 272 | |
| 273 | if ( ! is_string( $path ) ) { |
| 274 | return ''; |
| 275 | } |
| 276 | |
| 277 | // Ensure the path contains only expected URL path characters. |
| 278 | if ( preg_match( '/[^A-Za-z0-9\-._~\/]/', $path ) ) { |
| 279 | return ''; |
| 280 | } |
| 281 | |
| 282 | return $path; |
| 283 | } |
| 284 | |
| 285 | /** |
| 286 | * Helper method to get request method. |
| 287 | * |
| 288 | * @return string |
| 289 | */ |
| 290 | private function get_request_method() { |
| 291 | return isset( $_SERVER['REQUEST_METHOD'] ) ? strtoupper( wp_unslash( $_SERVER['REQUEST_METHOD'] ) ) : ''; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | ( new WooCommerceAnalyticsProxySpeed() )->init(); |
| 296 |