options = get_option('mxchat_options'); $this->chat_count = get_option('mxchat_chat_count', 0); // Add WooCommerce hooks add_action('wp_insert_post', array($this, 'mxchat_handle_product_change'), 10, 3); // Ensure embeddings are removed when a product is moved to trash or permanently deleted add_action('wp_trash_post', array($this, 'mxchat_handle_product_delete')); add_action('before_delete_post', array($this, 'mxchat_handle_product_delete')); add_action('wp_enqueue_scripts', array($this, 'mxchat_enqueue_scripts_styles')); add_action('wp_ajax_mxchat_handle_chat_request', array($this, 'mxchat_handle_chat_request')); add_action('wp_ajax_nopriv_mxchat_handle_chat_request', array($this, 'mxchat_handle_chat_request')); add_action('wp_ajax_mxchat_dismiss_pre_chat_message', array($this, 'mxchat_dismiss_pre_chat_message')); add_action('wp_ajax_nopriv_mxchat_dismiss_pre_chat_message', array($this, 'mxchat_dismiss_pre_chat_message')); if (!wp_next_scheduled('mxchat_reset_rate_limits')) { wp_schedule_event(time(), 'daily', 'mxchat_reset_rate_limits'); } add_action('mxchat_reset_rate_limits', array($this, 'mxchat_reset_rate_limits')); } public function mxchat_handle_product_change($post_id, $post, $update) { // Ensure this is a product post type if ($post->post_type !== 'product') { return; } // Only generate embeddings if the product is published if ($post->post_status === 'publish') { // Delay the embedding slightly to ensure all product data is available add_action('shutdown', function() use ($post_id) { $product = wc_get_product($post_id); if ($product && $product->get_price() !== '') { $this->mxchat_store_product_embedding($product); } else { // Optionally, log or handle the case where product data is incomplete error_log("Product {$post_id} does not have complete data. Embedding not generated."); } }); } } public function mxchat_handle_product_delete($post_id) { if (get_post_type($post_id) !== 'product') { return; } global $wpdb; $table_name = $wpdb->prefix . 'mxchat_system_prompt_content'; // Delete the embedding associated with this product $wpdb->delete($table_name, array('source_url' => get_permalink($post_id)), array('%s')); } private function mxchat_store_product_embedding($product) { if (isset($this->options['enable_woocommerce_integration']) && $this->options['enable_woocommerce_integration'] === '1') { $source_url = get_permalink($product->get_id()); $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $price = $sale_price ?: $regular_price; $description = $product->get_description() . "\n\n" . "Short Description: " . $product->get_short_description() . "\n" . "Price: " . $regular_price . "\n" . "Sale Price: " . ($sale_price ?: 'N/A') . "\n" . "SKU: " . $product->get_sku(); global $wpdb; $table_name = $wpdb->prefix . 'mxchat_system_prompt_content'; // Delete any existing embedding for this product $wpdb->delete($table_name, array('source_url' => $source_url), array('%s')); // Submit the new content and embedding to the database MxChat_Utils::submit_content_to_db($description, $source_url, $this->options['api_key']); } } private function mxchat_increment_chat_count() { $chat_count = get_option('mxchat_chat_count', 0); $chat_count++; update_option('mxchat_chat_count', $chat_count); } public function mxchat_fetch_conversation_history_for_ajax($session_id) { global $wpdb; $table_name = $wpdb->prefix . 'mxchat_chat_transcripts'; // Prepare and execute the query safely $chat_transcripts = $wpdb->get_results( $wpdb->prepare("SELECT * FROM $table_name WHERE session_id = %s ORDER BY timestamp ASC", sanitize_text_field($session_id)) ); // Check if results are empty if (empty($chat_transcripts)) { return []; } // Build the conversation history $conversation_history = []; foreach ($chat_transcripts as $transcript) { $conversation_history[] = [ 'role' => $transcript->role, 'content' => $transcript->message ]; } return $conversation_history; } private function mxchat_save_chat_message($session_id, $role, $message) { global $wpdb; $table_name = $wpdb->prefix . 'mxchat_chat_transcripts'; $user_id = is_user_logged_in() ? get_current_user_id() : 0; $user_identifier = MxChat_User::mxchat_get_user_identifier(); $user_email = MxChat_User::mxchat_get_user_email(); $wpdb->insert($table_name, [ 'user_id' => $user_id, 'user_identifier' => $user_identifier, 'user_email' => $user_email, 'session_id' => $session_id, 'role' => $role, 'message' => $message, 'timestamp' => current_time('mysql', 1) ]); } public function mxchat_handle_chat_request() { global $wpdb; // Get and sanitize the user identifier $user_id = $this->mxchat_get_user_identifier(); $user_id = sanitize_key($user_id); // Manage rate limiting $rate_limit_transient_key = 'mxchat_chat_limit_' . $user_id; $chat_count = get_transient($rate_limit_transient_key); $session_transient_key = 'mxchat_chat_session_' . $user_id; $session_id = get_transient($session_transient_key); if ($chat_count === false) { $chat_count = 0; } if ($session_id === false) { $session_id = uniqid('mxchat_chat_', true); set_transient($session_transient_key, $session_id, DAY_IN_SECONDS); // Store session ID for a day } $rate_limit_option = isset($this->options['rate_limit']) ? $this->options['rate_limit'] : 'unlimited'; // Check if rate limit is not 'unlimited' if ($rate_limit_option !== 'unlimited') { $rate_limit = intval($rate_limit_option); if ($chat_count >= $rate_limit) { wp_send_json_error('Rate limit exceeded. Please try again later.'); wp_die(); } set_transient($rate_limit_transient_key, $chat_count + 1, DAY_IN_SECONDS); } // Validate and sanitize the incoming message if (!isset($_POST['message'])) { wp_send_json_error('No message received'); wp_die(); } $message = sanitize_text_field($_POST['message']); if (empty($message)) { wp_send_json_error('Message is empty or invalid.'); wp_die(); } // Check if WooCommerce integration is enabled and WooCommerce functions are available if (MxChat_WooCommerce::is_order_access_enabled() && function_exists('WC')) { // Ensure WooCommerce session and cart are initialized if (!WC()->session) { WC()->session = new WC_Session_Handler(); WC()->session->init(); } if (!WC()->cart) { WC()->cart = new WC_Cart(); WC()->cart->init(); } // Handle the "add to cart" request if (stripos($message, 'add to cart') !== false) { $last_product_id = get_transient('mxchat_last_discussed_product_' . $user_id); if ($last_product_id) { $added = WC()->cart->add_to_cart($last_product_id); $product = wc_get_product($last_product_id); if ($added) { $response = "The product '{$product->get_name()}' has been added to your cart. To proceed to checkout, please type 'checkout'."; set_transient('mxchat_checkout_prompt_' . $user_id, true, 5 * MINUTE_IN_SECONDS); // Valid for 5 minutes // Save the bot response to the database $this->mxchat_save_chat_message($session_id, 'bot', $response); // Send the response back to the client wp_send_json(['message' => $response]); wp_die(); } else { $response = "Sorry, I couldn't add the product to your cart. Please try again."; $this->mxchat_save_chat_message($session_id, 'bot', $response); wp_send_json(['message' => $response]); wp_die(); } } else { $response = "I couldn't find the product to add. Please mention the product name again."; $this->mxchat_save_chat_message($session_id, 'bot', $response); wp_send_json(['message' => $response]); wp_die(); } } // Handle the "checkout" response if (stripos($message, 'checkout') !== false) { $checkout_prompt = get_transient('mxchat_checkout_prompt_' . $user_id); if ($checkout_prompt && WC()->cart && WC()->cart->get_cart_contents_count() > 0) { $checkout_url = wc_get_checkout_url(); $response = "Great! Redirecting you to the checkout page..."; delete_transient('mxchat_checkout_prompt_' . $user_id); // Save the bot response to the database $this->mxchat_save_chat_message($session_id, 'bot', $response); // Send the response and checkout URL wp_send_json(['message' => $response, 'redirect_url' => $checkout_url]); wp_die(); } else { $response = "It seems like there is no active checkout prompt or no items in your cart. Please add a product to the cart first."; $this->mxchat_save_chat_message($session_id, 'bot', $response); wp_send_json(['message' => $response]); wp_die(); } } } // Store the last discussed product in transient if applicable $last_discussed_product_id = MxChat_WooCommerce::mxchat_extract_product_id_from_message($message); if ($last_discussed_product_id) { set_transient('mxchat_last_discussed_product_' . $user_id, $last_discussed_product_id, 3600); // Cache for 1 hour } // Save the user's message to the database once here $this->mxchat_save_chat_message($session_id, 'user', $message); // Generate and validate the embedding $user_message_embedding = $this->mxchat_generate_embedding($message, $this->options['api_key']); if (!is_array($user_message_embedding)) { wp_send_json_error('Error processing your message.'); wp_die(); } // Find relevant content based on embedding $relevant_content = $this->mxchat_find_relevant_content($user_message_embedding); // Fetch conversation history from the database $conversation_history = $this->mxchat_fetch_conversation_history_for_ajax($session_id); // Increment the chat count $this->mxchat_increment_chat_count(); // Generate a response from the AI model $response = $this->mxchat_generate_response($relevant_content, $this->options['api_key'], $conversation_history); // Save the bot response to the database $this->mxchat_save_chat_message($session_id, 'bot', $response); // Send the response back to the client wp_send_json(['message' => $response]); wp_die(); } private function mxchat_get_user_identifier() { return MxChat_User::mxchat_get_user_identifier(); } private function mxchat_generate_embedding($text, $api_key) { $endpoint = 'https://api.openai.com/v1/embeddings'; $body = wp_json_encode([ 'input' => $text, 'model' => 'text-embedding-ada-002' ]); $args = [ 'body' => $body, 'headers' => [ 'Content-Type' => 'application/json', 'Authorization' => 'Bearer ' . $api_key, ], 'timeout' => 60, 'redirection' => 5, 'blocking' => true, 'httpversion' => '1.0', 'sslverify' => true, ]; $response = wp_remote_post($endpoint, $args); if (is_wp_error($response)) { return null; } $response_body = json_decode(wp_remote_retrieve_body($response), true); if (isset($response_body['data'][0]['embedding']) && is_array($response_body['data'][0]['embedding'])) { return $response_body['data'][0]['embedding']; } else { return null; } } private function mxchat_find_relevant_content($user_embedding) { global $wpdb; $system_prompt_table = $wpdb->prefix . 'mxchat_system_prompt_content'; // Define a cache key for embeddings $cache_key = 'mxchat_system_prompt_embeddings'; // Attempt to get the embeddings from the cache $embeddings = wp_cache_get($cache_key, 'mxchat_system_prompts'); if ($embeddings === false) { // Cache miss, query the database and cache the results $query = "SELECT id, embedding_vector FROM {$system_prompt_table}"; $embeddings = $wpdb->get_results($query); if ($embeddings === null || empty($embeddings)) { error_log("No embeddings found in the database."); return null; // Return null to handle no embeddings gracefully } // Cache the results if successful wp_cache_set($cache_key, $embeddings, 'mxchat_system_prompts', 3600); // Cache for 1 hour } $most_relevant_id = null; $highest_similarity = -INF; foreach ($embeddings as $embedding) { $database_embedding = maybe_unserialize($embedding->embedding_vector); // Debugging: Log the embeddings // if (!is_array($database_embedding)) { // error_log("Invalid database embedding format for ID {$embedding->id}: " . print_r($database_embedding, true)); // continue; // } if (is_array($user_embedding)) { $similarity = $this->mxchat_calculate_cosine_similarity($user_embedding, $database_embedding); // Debugging: Log the similarity score // error_log("Calculated similarity for ID {$embedding->id}: {$similarity}"); if ($similarity > $highest_similarity) { $highest_similarity = $similarity; $most_relevant_id = $embedding->id; } } else { // error_log("User embedding is not an array. Embedding data: " . print_r($user_embedding, true)); } } if ($most_relevant_id !== null) { // Fetch content with product links return $this->fetch_content_with_product_links($most_relevant_id); } error_log("No relevant content found. Most relevant ID was null."); return null; // Return null if no relevant content is found } private function fetch_content_with_product_links($most_relevant_id) { global $wpdb; $system_prompt_table = $wpdb->prefix . 'mxchat_system_prompt_content'; // Fetch the article content and associated product URL $query = $wpdb->prepare("SELECT article_content, source_url FROM {$system_prompt_table} WHERE id = %d", $most_relevant_id); $result = $wpdb->get_row($query); if ($result) { // Append the product link to the content if available $content = $result->article_content; if (!empty($result->source_url)) { $content .= "\n\nFor more details, check out this product: " . esc_url($result->source_url); } return $content; } return null; } private function mxchat_generate_response($relevant_content, $api_key, $conversation_history) { if (!$relevant_content) { return "I'm sorry, I couldn't find relevant information on that topic."; } $system_prompt_instructions = isset($this->options['system_prompt_instructions']) ? $this->options['system_prompt_instructions'] : ''; $content_with_instructions = $system_prompt_instructions . " " . $relevant_content; array_unshift($conversation_history, [ 'role' => 'system', 'content' => "Here are your instructions: " . $content_with_instructions ]); foreach ($conversation_history as &$message) { if ($message['role'] === 'bot') { $message['role'] = 'assistant'; } } $api_url = 'https://api.openai.com/v1/chat/completions'; $body = json_encode([ 'model' => isset($this->options['model']) ? $this->options['model'] : 'gpt-3.5', 'messages' => $conversation_history, ]); $args = [ 'body' => $body, 'headers' => [ 'Content-Type' => 'application/json', 'Authorization' => 'Bearer ' . $api_key, ], 'timeout' => 60, 'redirection' => 5, 'blocking' => true, 'httpversion' => '1.0', 'sslverify' => true, ]; $response = wp_remote_post($api_url, $args); if (is_wp_error($response)) { return "Sorry, there was an error processing your request."; } $response_body = json_decode(wp_remote_retrieve_body($response), true); if (isset($response_body['choices'][0]['message']['content'])) { if (isset($response_body['usage'])) { $prompt_tokens = $response_body['usage']['prompt_tokens']; $total_tokens = $response_body['usage']['total_tokens']; } return trim($response_body['choices'][0]['message']['content']); } else { return "Sorry, I couldn't process that request."; } } public function mxchat_dismiss_pre_chat_message() { // Get and sanitize the user identifier $user_id = $this->mxchat_get_user_identifier(); $user_id = sanitize_key($user_id); // Set a transient to track that the user has dismissed the pre-chat message $transient_key = 'mxchat_pre_chat_message_dismissed_' . $user_id; set_transient($transient_key, true, DAY_IN_SECONDS); wp_send_json_success(); } private function mxchat_calculate_cosine_similarity($vectorA, $vectorB) { if (!is_array($vectorA) || !is_array($vectorB) || empty($vectorA) || empty($vectorB)) { return 0; } $dotProduct = array_sum(array_map(function ($a, $b) { return $a * $b; }, $vectorA, $vectorB)); $normA = sqrt(array_sum(array_map(function ($a) { return $a * $a; }, $vectorA))); $normB = sqrt(array_sum(array_map(function ($b) { return $b * $b; }, $vectorB))); if ($normA == 0 || $normB == 0) { return 0; } return $dotProduct / ($normA * $normB); } public function mxchat_enqueue_scripts_styles() { // Define version numbers for the styles and scripts $chat_style_version = '1.1.2'; // Replace with your actual version $chat_script_version = '1.1.2'; // Replace with your actual version // Correct path to the script file wp_enqueue_script( 'mxchat-chat-js', // Handle for the script plugin_dir_url(__FILE__) . '../js/chat-script.js', // Correct path using __FILE__ array('jquery'), // Dependencies $chat_script_version, // Version for cache busting true // Load script in footer ); // Enqueue the CSS file similarly wp_enqueue_style( 'mxchat-chat-css', // Handle for the style plugin_dir_url(__FILE__) . '../css/chat-style.css', // Correct path using __FILE__ array(), // No dependencies $chat_style_version // Version for cache busting ); // Fetch options from the database $this->options = get_option('mxchat_options'); // Prepare settings to pass to JavaScript $style_settings = array( 'ajax_url' => admin_url('admin-ajax.php'), 'nonce' => wp_create_nonce('mxchat_chat_nonce'), // Nonce for security 'rate_limit_message' => 'Rate limit exceeded. Please try again later.', 'appendWidgetToBody' => $this->options['append_to_body'] ?? 'off' ); // Localize the script with necessary data wp_localize_script('mxchat-chat-js', 'mxchatChat', $style_settings); } public function mxchat_reset_rate_limits() { global $wpdb; // Define a cache key pattern for rate limits $cache_key_pattern = 'mxchat_chat_limit_%'; // Retrieve all option names matching the pattern // phpcs:ignore WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.DirectDatabaseQuery.DirectQuery $option_names = $wpdb->get_col("SELECT option_name FROM {$wpdb->options} WHERE option_name LIKE 'mxchat_chat_limit_%'"); // db call ok; no-cache ok // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery -- db call ok $wpdb->query("DELETE FROM {$wpdb->options} WHERE option_name LIKE 'mxchat_chat_limit_%'"); // Clear the relevant cache entries foreach ($option_names as $option_name) { wp_cache_delete($option_name, 'options'); } // Optionally, clear a general cache if you have one wp_cache_delete('mxchat_all_chat_limits', 'options'); } private function mxchat_fetch_woocommerce_products() { // Ensure WooCommerce is active if (!class_exists('WooCommerce')) { return []; } $args = array( 'post_type' => 'product', 'post_status' => 'publish', 'posts_per_page' => -1, ); $products = get_posts($args); $product_data = []; foreach ($products as $product) { $product_id = $product->ID; $product_obj = wc_get_product($product_id); $product_data[] = array( 'id' => $product_id, 'name' => $product_obj->get_name(), 'description' => $product_obj->get_description(), 'short_description' => $product_obj->get_short_description(), 'url' => get_permalink($product_id), 'price' => $product_obj->get_regular_price(), 'sale_price' => $product_obj->get_sale_price(), 'stock_status' => $product_obj->get_stock_status(), 'sku' => $product_obj->get_sku(), 'in_stock' => $product_obj->is_in_stock(), 'total_sales' => $product_obj->get_total_sales(), ); } return $product_data; } } ?>