is_activated;
}
/**
* Get plugin options
* @return array
*/
public function get_options() {
return $this->options;
}
public function __construct($knowledge_manager = null) {
$this->options = get_option('mxchat_options');
$this->chat_count = get_option('mxchat_chat_count', 0);
$this->is_activated = $this->is_license_active();
$this->knowledge_manager = $knowledge_manager;
// Initialize default options if they are not set
if (!$this->options) {
$this->initialize_default_options();
}
// Add admin menu and initialize settings
add_action('admin_menu', array($this, 'mxchat_add_plugin_page'));
// Pro & Extensions registers at priority 30 so it always lands last in
// the sidebar — below API Access (priority 20) and below any other
// submenu that hooks at default priority 10.
add_action('admin_menu', array($this, 'mxchat_add_pro_extensions_page'), 30);
// Onboarding visibility — runs LAST so it can remove the submenu after every
// other add_submenu_page() call. The page stays reachable by direct URL.
add_action('admin_menu', array($this, 'mxchat_apply_onboarding_visibility'), 999);
add_action('admin_init', array($this, 'mxchat_page_init'));
add_action('admin_init', array($this, 'mxchat_prompts_page_init'));
add_action('admin_enqueue_scripts', array($this, 'mxchat_enqueue_admin_assets'));
// Add body class for the Onboarding wizard (plan-905439) so the
// chrome-surgery CSS in admin-onboarding-wizard.css can scope its
// WP-sidebar collapse to this page only.
add_filter('admin_body_class', array($this, 'mxchat_add_onboarding_body_class'));
add_action('wp_ajax_mxchat_delete_chat_history', array($this, 'mxchat_delete_chat_history'));
add_action('admin_post_mxchat_delete_prompt', array($this, 'mxchat_handle_delete_prompt'));
add_action('wp_ajax_mxchat_fetch_chat_history', array($this, 'mxchat_fetch_chat_history'));
add_action('wp_ajax_nopriv_mxchat_fetch_chat_history', array($this, 'mxchat_fetch_chat_history'));
add_action('wp_ajax_mxchat_fetch_conversation', array($this, 'mxchat_fetch_conversation'));
add_action('wp_footer', array($this, 'mxchat_append_chatbot_to_body'));
add_action('admin_head-mxchat-prompts', array($this, 'mxchat_enqueue_admin_assets'));
add_action('admin_head-toplevel_page_mxchat-max', array($this, 'mxchat_enqueue_admin_assets'));
add_action('admin_notices', array($this, 'mxchat_display_admin_notice'));
add_action('admin_post_mxchat_delete_all_prompts', array($this, 'mxchat_handle_delete_all_prompts'));
add_action('admin_post_mxchat_add_intent', array($this, 'mxchat_handle_add_intent'));
add_action('admin_post_mxchat_delete_intent', array($this, 'mxchat_handle_delete_intent'));
add_action('admin_post_mxchat_edit_intent', array($this, 'mxchat_handle_edit_intent'));
add_action('wp_ajax_mxchat_export_transcripts', array($this, 'export_chat_transcripts'));
// Leads tab (inside Transcripts)
add_action('wp_ajax_mxchat_fetch_leads', array($this, 'mxchat_fetch_leads'));
add_action('wp_ajax_mxchat_delete_leads', array($this, 'mxchat_delete_leads'));
add_action('wp_ajax_mxchat_export_leads', array($this, 'mxchat_export_leads'));
add_action('admin_init', array($this, 'mxchat_transcripts_page_init'));
add_action('wp_ajax_dismiss_live_agent_notice', array($this, 'dismiss_live_agent_notice'));
add_action('wp_ajax_dismiss_theme_migration_notice', array($this, 'dismiss_theme_migration_notice'));
add_action('mxchat_cleanup_old_transcripts', array($this, 'cleanup_old_transcripts'));
// Self-heal: the cleanup event is otherwise only scheduled at activation or
// when the retention setting CHANGES — if it is ever lost (deactivate cycle,
// cron-option wipe, DB restore) nothing re-registers it and retention goes
// silently inert while the UI still says it is on (plan-bc08a6).
add_action('admin_init', array($this, 'ensure_transcript_cleanup_scheduled'));
add_action('admin_init', array($this, 'register_pinecone_settings'));
add_action('admin_init', array($this, 'register_openai_vectorstore_settings'));
add_action('admin_notices', array($this, 'display_admin_notices'));
add_action('wp_ajax_mxchat_test_streaming_actual', [$this, 'mxchat_handle_test_streaming_actual']);
add_action('wp_ajax_mxchat_test_streaming', [$this, 'mxchat_handle_test_streaming']); // Keep existing as fallback
add_action('wp_ajax_mxchat_test_vectorstore_connection', array($this, 'mxchat_test_vectorstore_connection'));
add_action('wp_ajax_mxchat_save_selected_bot', array($this, 'mxchat_save_selected_bot'));
add_action('wp_ajax_mxchat_fetch_openrouter_models', array($this, 'fetch_openrouter_models'));
add_action('wp_ajax_mxchat_get_rag_context', array($this, 'mxchat_get_rag_context'));
// Actions page AJAX handlers
add_action('wp_ajax_mxchat_fetch_actions_list', array($this, 'mxchat_fetch_actions_list'));
add_action('wp_ajax_mxchat_toggle_action_status', array($this, 'mxchat_toggle_action_status'));
add_action('wp_ajax_mxchat_bulk_delete_actions', array($this, 'mxchat_bulk_delete_actions'));
add_action('wp_ajax_mxchat_add_intent_ajax', array($this, 'mxchat_add_intent_ajax'));
add_action('wp_ajax_mxchat_edit_intent_ajax', array($this, 'mxchat_edit_intent_ajax'));
add_action('wp_ajax_mxchat_delete_intent_ajax', array($this, 'mxchat_delete_intent_ajax'));
add_action('wp_ajax_mxchat_add_phrase', array($this, 'mxchat_add_phrase_ajax'));
add_action('wp_ajax_mxchat_delete_phrase', array($this, 'mxchat_delete_phrase_ajax'));
add_action('wp_ajax_mxchat_get_phrases', array($this, 'mxchat_get_phrases_ajax'));
add_action('wp_ajax_mxchat_delete_legacy_phrases', array($this, 'mxchat_delete_legacy_phrases_ajax'));
// Slack test connection
add_action('wp_ajax_mxchat_test_slack_connection', array($this, 'mxchat_test_slack_connection'));
// Translation handlers
add_action('wp_ajax_mxchat_translate_messages', array($this, 'mxchat_translate_messages'));
add_action('wp_ajax_mxchat_get_transcript_translation', array($this, 'mxchat_get_transcript_translation'));
// 3.2.3: Embedding model switch protection
add_action('wp_ajax_mxchat_check_embedding_switch', array($this, 'mxchat_check_embedding_switch_ajax'));
add_action('wp_ajax_mxchat_dismiss_embedding_mismatch', array($this, 'mxchat_dismiss_embedding_mismatch_ajax'));
add_action('wp_ajax_mxchat_dismiss_telegram_secret_notice', array($this, 'mxchat_dismiss_telegram_secret_notice_ajax'));
add_action('admin_notices', array($this, 'mxchat_embedding_mismatch_notice'));
add_action('admin_notices', array($this, 'mxchat_telegram_secret_notice'));
}
/**
* Nudge admins to configure a Telegram webhook secret (plan-0c17b5).
*
* Shown only when a Telegram bot token is configured (integration active)
* AND no webhook secret is set. Without a secret the webhook falls back to a
* Telegram source-IP check — safer than the old fail-open, but a real secret
* is the recommended protection. Dismissible; does not block anything.
*/
public function mxchat_telegram_secret_notice() {
if (!current_user_can('manage_options')) {
return;
}
$options = get_option('mxchat_options', array());
$has_token = !empty($options['telegram_bot_token']);
$has_secret = !empty($options['telegram_webhook_secret']);
if (!$has_token || $has_secret) {
return;
}
if (get_option('mxchat_dismissed_telegram_secret_notice', '') === '1') {
return;
}
$settings_url = admin_url('admin.php?page=mxchat-max');
?>
$is_mismatch,
'active_model' => $active_model,
'active_label' => MxChat_Utils::embedding_model_label($active_model),
'new_model' => $new_model,
'new_label' => MxChat_Utils::embedding_model_label($new_model),
'dims_differ' => ($active_dims > 0 && $new_dims > 0 && $active_dims !== $new_dims),
'active_dims' => $active_dims,
'new_dims' => $new_dims,
));
}
/**
* 3.2.3: Dismiss the persistent mismatch banner. Tied to the active+selected
* pair so the banner reappears on the next switch event.
*/
public function mxchat_dismiss_embedding_mismatch_ajax() {
check_ajax_referer('mxchat_admin_nonce', 'security');
if (!current_user_can('manage_options')) {
wp_send_json_error(__('Unauthorized', 'mxchat'));
}
$options = get_option('mxchat_options', array());
$selected = $options['embedding_model'] ?? '';
$active = MxChat_Utils::get_active_embedding_model();
update_option('mxchat_dismissed_embedding_mismatch', $active . '|' . $selected, false);
wp_send_json_success();
}
/**
* 3.2.3: Persistent admin banner shown whenever the active embedding model
* (last used to actually embed something) differs from the currently
* selected model. Pure option comparison — no DB queries on every page
* load. The banner auto-clears once both match again, i.e. after a delete
* + re-embed cycle.
*/
public function mxchat_embedding_mismatch_notice() {
if (!current_user_can('manage_options')) {
return;
}
$options = get_option('mxchat_options', array());
$selected = $options['embedding_model'] ?? '';
$active = MxChat_Utils::get_active_embedding_model();
if (empty($active) || empty($selected) || $active === $selected) {
return;
}
$dismissed = get_option('mxchat_dismissed_embedding_mismatch', '');
if ($dismissed === $active . '|' . $selected) {
return;
}
$active_label = MxChat_Utils::embedding_model_label($active);
$selected_label = MxChat_Utils::embedding_model_label($selected);
$active_dims = MxChat_Utils::embedding_model_dimensions($active);
$selected_dims = MxChat_Utils::embedding_model_dimensions($selected);
$dims_differ = ($active_dims > 0 && $selected_dims > 0 && $active_dims !== $selected_dims);
$kb_url = admin_url('admin.php?page=mxchat-prompts');
$actions_url = admin_url('admin.php?page=mxchat-actions');
?>
'',
'xai_api_key' => '',
'claude_api_key' => '',
'deepseek_api_key' => '',
'voyage_api_key' => '',
'gemini_api_key' => '',
'enable_streaming_toggle' => 'off',
'enable_web_search' => 'off',
'embedding_model' => 'text-embedding-ada-002',
'system_prompt_instructions' => 'You are an AI Chatbot assistant for this website. Your main goal is to assist visitors with questions and provide helpful information. Here are your key guidelines:
# Response Style - CRITICALLY IMPORTANT
- MAXIMUM LENGTH: 1-3 short sentences per response
- Ultra-concise: Get straight to the answer with no filler
- No introductions like "Sure!" or "I\'d be happy to help"
- No phrases like "based on my knowledge" or "according to information"
- No explanatory text before giving the answer
- No summaries or repetition
- Hyperlink all URLs
- Respond in user\'s language
- Minor chit chat or conversation is okay, but try to keep it focused on [insert topic]
# Knowledge Base Requirements - PREVENT HALLUCINATIONS
- ONLY answer questions using information explicitly provided in OFFICIAL KNOWLEDGE DATABASE CONTENT sections marked with ===== delimiters
- If required information is NOT in the knowledge database: "I don\'t have enough information in my knowledge base to answer that question accurately."
- NEVER invent or hallucinate URLs, links, product specs, procedures, dates, statistics, names, contacts, or company information
- When knowledge base information is unclear or contradictory, acknowledge the limitation rather than guessing
- Better to admit insufficient information than provide inaccurate answers',
'model' => esc_html__('gpt-5.1-chat-latest', 'mxchat'),
'rate_limit_logged_out' => esc_html__('100', 'mxchat'),
'role_rate_limits' => array(),
'rate_limit_message' => esc_html__('Rate limit exceeded. Please try again later.', 'mxchat'),
'enable_email_block' => '',
'email_blocker_header_content' => __("
Welcome to Our Chat!
\n
Let's get started. Enter your email to begin chatting with us.
", 'mxchat'),
'email_blocker_button_text' => esc_html__('Start Chat', 'mxchat'),
'enable_name_field' => 'off', // NEW
'name_field_placeholder' => esc_html__('Enter your name', 'mxchat'), // NEW
'top_bar_title' => esc_html__('MxChat', 'mxchat'),
'intro_message' => __('Hello! How can I assist you today?', 'mxchat'),
'ai_agent_text' => esc_html__('AI Agent', 'mxchat'),
'input_copy' => esc_html__('How can I assist?', 'mxchat'),
'append_to_body' => esc_html__('off', 'mxchat'),
'post_type_visibility_mode' => 'all', // 'all', 'include', 'exclude'
'post_type_visibility_list' => array(), // Array of post type slugs
'contextual_awareness_toggle' => 'off',
'citation_links_toggle' => 'on',
'satisfaction_rating_enabled' => 'off',
'satisfaction_rating_idle_seconds' => 60,
'satisfaction_rating_question' => '',
'satisfaction_rating_thanks' => '',
'satisfaction_rating_placeholder' => '',
'satisfaction_rating_saved' => '',
'close_button_color' => esc_html__('#fff', 'mxchat'),
'chatbot_bg_color' => esc_html__('#fff', 'mxchat'),
'user_message_bg_color' => esc_html__('#fff', 'mxchat'),
'user_message_font_color' => esc_html__('#212121', 'mxchat'),
'bot_message_bg_color' => esc_html__('#212121', 'mxchat'),
'bot_message_font_color' => esc_html__('#fff', 'mxchat'),
'top_bar_bg_color' => esc_html__('#212121', 'mxchat'),
'send_button_font_color' => esc_html__('#212121', 'mxchat'),
'chat_input_font_color' => esc_html__('#212121', 'mxchat'),
'chatbot_background_color' => esc_html__('#212121', 'mxchat'),
'icon_color' => esc_html__('#fff', 'mxchat'),
'enable_woocommerce_integration' => esc_html__('0', 'mxchat'),
'link_target_toggle' => esc_html__('off', 'mxchat'),
'pre_chat_message' => esc_html__('Hey there! Ask me anything!', 'mxchat'),
// New fields for Loops Integration
'loops_api_key' => '',
'loops_mailing_list' => '',
'triggered_phrase_response' => __('Would you like to join our mailing list? Please provide your email below.', 'mxchat'),
'email_capture_response' => __('Thank you for providing your email! You\'ve been added to our list.', 'mxchat'),
'popular_question_1' => '',
'popular_question_2' => '',
'popular_question_3' => '',
'pdf_intent_trigger_text' => __("Please provide the URL to the PDF you'd like to discuss.", 'mxchat'),
'pdf_intent_success_text' => __("I've processed the PDF. What questions do you have about it?", 'mxchat'),
'pdf_intent_error_text' => __("Sorry, I couldn't process the PDF. Please ensure it's a valid file.", 'mxchat'),
'pdf_max_pages' => 69,
'show_pdf_upload_button' => 'on',
'show_word_upload_button' => 'on',
// Live Agent Integration (Slack)
'live_agent_webhook_url' => '',
'live_agent_secret_key' => '',
'live_agent_bot_token' => '',
'live_agent_message_bg_color' => esc_html__('#ffffff', 'mxchat'),
'live_agent_message_font_color' => esc_html__('#333333', 'mxchat'),
// Telegram Integration
'telegram_status' => 'off',
'telegram_bot_token' => '',
'telegram_group_id' => '',
'telegram_webhook_secret' => '',
'telegram_notification_message' => __("I've notified a support agent. Please allow a moment for them to respond. If you'd like to continue with AI, just type \"Switch to AI\" at any time.", 'mxchat'),
'telegram_away_message' => __("I just checked, and it looks like our support team isn't personally available at the moment. If you'd like, you can leave your email address, and they'll get back to you as soon as possible. In the meantime, you can keep chatting with me — just let me know how I can help!", 'mxchat'),
'chat_toolbar_toggle' => esc_html__('off', 'mxchat'),
'mode_indicator_bg_color' => esc_html__('#767676', 'mxchat'),
'mode_indicator_font_color' => esc_html__('#ffffff', 'mxchat'),
'toolbar_icon_color' => esc_html__('#212121', 'mxchat'),
// Optimization settings
'script_loading_strategy' => 'default',
// Debug settings
'debug_mode' => 'off',
);
// Merge existing options with defaults
$existing_options = get_option('mxchat_options', array());
$merged_options = wp_parse_args($existing_options, $default_options);
// Update the options if they have changed
if ($existing_options !== $merged_options) {
update_option('mxchat_options', $merged_options);
}
// Add default limits for each role
$roles = wp_roles()->get_names();
foreach ($roles as $role_id => $role_name) {
$default_options['role_rate_limits'][$role_id] = esc_html__('100', 'mxchat');
}
return $default_options;
// Update the $this->options property
$this->options = $merged_options;
}
public function mxchat_add_plugin_page() {
// Onboarding lifecycle helpers (admin_init redirect + ajax handlers live in the file).
require_once plugin_dir_path(__FILE__) . 'admin-onboarding-page.php';
// Main menu page — `mxchat-max` remains the parent slug for every MxChat submenu
// (Settings, Knowledge, Transcripts, …). Hitting `?page=mxchat-max` directly now
// dispatches to the Onboarding page (or Settings if the user has dismissed onboarding).
add_menu_page(
esc_html__('MxChat', 'mxchat'),
esc_html__('MxChat', 'mxchat'),
'manage_options',
'mxchat-max',
array($this, 'mxchat_create_dashboard_page'),
'dashicons-testimonial',
6
);
// Onboarding submenu — first child under MxChat (plan-d14e89).
// First registration uses menu_slug === parent slug 'mxchat-max' →
// WP-canonical override of the auto-duplicate "MxChat" entry. Result: the
// first child shows as "Onboarding" instead of a redundant pair.
add_submenu_page(
'mxchat-max',
esc_html__('MxChat Onboarding', 'mxchat'),
esc_html__('Onboarding', 'mxchat'),
'manage_options',
'mxchat-max',
array($this, 'mxchat_create_dashboard_page')
);
// Hidden route for `?page=mxchat-onboarding` (Settings "Show again" link
// + legacy redirects still target this slug). Parent === null keeps it
// out of the menu while remaining accessible by URL.
add_submenu_page(
null,
esc_html__('MxChat Onboarding', 'mxchat'),
esc_html__('Onboarding', 'mxchat'),
'manage_options',
'mxchat-onboarding',
array($this, 'mxchat_create_dashboard_page')
);
// Settings submenu — same callback as before, just at a new slug.
add_submenu_page(
'mxchat-max',
esc_html__('MxChat Settings', 'mxchat'),
esc_html__('Settings', 'mxchat'),
'manage_options',
'mxchat-settings',
array($this, 'mxchat_create_admin_page')
);
// Submenu page for Knowledge
add_submenu_page(
'mxchat-max',
esc_html__('Prompts', 'mxchat'),
esc_html__('Knowledge', 'mxchat'),
'manage_options',
'mxchat-prompts',
array($this, 'mxchat_create_prompts_page')
);
add_submenu_page(
'mxchat-max',
esc_html__('Chat Transcripts', 'mxchat'),
esc_html__('Transcripts', 'mxchat'),
'manage_options',
'mxchat-transcripts',
array($this, 'mxchat_create_transcripts_page')
);
add_submenu_page(
'mxchat-max',
esc_html__('MxChat Actions', 'mxchat'),
esc_html__('Actions', 'mxchat'),
'manage_options',
'mxchat-actions',
array($this, 'mxchat_actions_page_html')
);
// Content Generator page
add_submenu_page(
'mxchat-max',
esc_html__('Content', 'mxchat'),
esc_html__('Content', 'mxchat'),
'manage_options',
'mxchat-content',
array($this, 'mxchat_create_content_page')
);
}
/**
* Register the Pro & Extensions submenu on a later admin_menu priority so it
* always renders as the bottom-most item in the MxChat sidebar — below
* configuration pages like API Access (priority 20).
*/
public function mxchat_add_pro_extensions_page() {
add_submenu_page(
'mxchat-max',
esc_html__('Pro & Extensions', 'mxchat'),
esc_html__('Pro & Extensions', 'mxchat'),
'manage_options',
'mxchat-activation',
array($this, 'mxchat_create_activation_page')
);
}
public function mxchat_create_addons_page() {
require_once plugin_dir_path(__FILE__) . 'class-mxchat-addons.php';
$addons_page = new MxChat_Addons();
$addons_page->render_page();
}
/**
* Render the Content Generator admin page
*/
public function mxchat_create_content_page() {
require_once plugin_dir_path(__FILE__) . 'admin-content-page.php';
mxchat_render_content_page($this);
}
/**
* Test actual streaming functionality in the WordPress environment
*/
public function mxchat_handle_test_streaming_actual() {
check_ajax_referer('mxchat_test_streaming_nonce', 'nonce');
// Check if headers have already been sent
if (headers_sent()) {
wp_send_json_error(['message' => 'Headers already sent - streaming not possible']);
return;
}
// Check for required functions
if (!function_exists('curl_init')) {
wp_send_json_error(['message' => 'cURL not available - streaming requires cURL']);
return;
}
// Get user's selected model and API key
$options = get_option('mxchat_options', []);
$selected_model = $options['model'] ?? 'gpt-5.1-chat-latest';
// Get the provider from the model
$model_parts = explode('-', $selected_model);
$provider = strtolower($model_parts[0]);
// Get the appropriate API key
$api_key = '';
switch ($provider) {
case 'gpt':
case 'o1':
$api_key = $options['api_key'] ?? '';
break;
case 'claude':
$api_key = $options['claude_api_key'] ?? '';
break;
case 'grok':
$api_key = $options['xai_api_key'] ?? '';
break;
case 'deepseek':
$api_key = $options['deepseek_api_key'] ?? '';
break;
case 'gemini':
$api_key = $options['gemini_api_key'] ?? '';
break;
default:
// Default to OpenAI for unknown models
$api_key = $options['api_key'] ?? '';
$provider = 'gpt';
break;
}
if (empty($api_key)) {
wp_send_json_error(['message' => "API key not configured for {$provider} provider"]);
return;
}
// Test streaming with the selected model and provider
try {
$this->perform_streaming_test($provider, $selected_model, $api_key);
} catch (Exception $e) {
wp_send_json_error(['message' => 'Streaming test exception: ' . $e->getMessage()]);
}
}
/**
* Perform the actual streaming test
*/
private function perform_streaming_test($provider, $model, $api_key) {
// Set streaming headers
header('Content-Type: text/event-stream');
header('Cache-Control: no-cache');
header('X-Accel-Buffering: no'); // Disable nginx buffering
// Prepare test message
$test_message = "Please respond with exactly: 'Streaming test successful!' - send this as a short response for testing.";
// Configure API request based on provider
$url = '';
$headers = [];
$body = [];
switch ($provider) {
case 'gpt':
case 'o1':
$url = 'https://api.openai.com/v1/chat/completions';
$headers = [
'Content-Type: application/json',
'Authorization: Bearer ' . $api_key
];
$body = [
'model' => $model,
'messages' => [['role' => 'user', 'content' => $test_message]],
'max_tokens' => 50,
'temperature' => 0.3,
'stream' => true
];
break;
case 'claude':
$url = 'https://api.anthropic.com/v1/messages';
$headers = [
'Content-Type: application/json',
'x-api-key: ' . $api_key,
'anthropic-version: 2023-06-01'
];
$body = [
'model' => $model,
'messages' => [['role' => 'user', 'content' => $test_message]],
'max_tokens' => 50,
'temperature' => 0.3,
'stream' => true
];
// Claude flagships from Opus 4.7 onward reject the temperature
// param outright (400). Reuse the catalog's decision — this path
// previously sent temperature unconditionally, so the streaming
// test was broken for Opus 4.7/4.8, Fable 5 and Sonnet 5.
if (class_exists('MxChat_Model_Catalog')
&& method_exists('MxChat_Model_Catalog', 'supports_temperature')
&& !MxChat_Model_Catalog::supports_temperature($model)) {
unset($body['temperature']);
}
break;
case 'grok':
$url = 'https://api.x.ai/v1/chat/completions';
$headers = [
'Content-Type: application/json',
'Authorization: Bearer ' . $api_key
];
$body = [
'model' => $model,
'messages' => [['role' => 'user', 'content' => $test_message]],
'max_tokens' => 50,
'temperature' => 0.3,
'stream' => true
];
break;
case 'deepseek':
$url = 'https://api.deepseek.com/v1/chat/completions';
$headers = [
'Content-Type: application/json',
'Authorization: Bearer ' . $api_key
];
$body = [
'model' => $model,
'messages' => [['role' => 'user', 'content' => $test_message]],
'max_tokens' => 50,
'temperature' => 0.3,
'stream' => true,
// DeepSeek V4 defaults to thinking mode ON — reasoning would
// consume the 50-token test budget and return no visible text.
'thinking' => ['type' => 'disabled']
];
break;
default:
echo "data: " . json_encode(['error' => 'Unsupported provider for streaming test: ' . $provider]) . "\n\n";
flush();
return;
}
// Initialize cURL
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($body));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_WRITEFUNCTION, function($ch, $data) use ($provider) {
return $this->process_streaming_test_data($data, $provider);
});
// Send initial test message
echo "data: " . json_encode(['content' => '[Starting streaming test...]']) . "\n\n";
flush();
$result = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$curl_error = curl_error($ch);
curl_close($ch);
if ($curl_error) {
echo "data: " . json_encode(['error' => 'cURL Error: ' . $curl_error]) . "\n\n";
flush();
return;
}
if ($http_code !== 200) {
echo "data: " . json_encode(['error' => 'API returned HTTP ' . $http_code]) . "\n\n";
flush();
return;
}
// Send completion signal
echo "data: [DONE]\n\n";
flush();
}
/**
* Process streaming data for the test
*/
private function process_streaming_test_data($data, $provider) {
static $chunk_count = 0;
$lines = explode("\n", $data);
foreach ($lines as $line) {
if (trim($line) === '') {
continue;
}
// Handle different provider formats
if ($provider === 'claude') {
// Claude uses event: and data: format
if (strpos($line, 'data: ') === 0) {
$json_str = substr($line, 6);
$json = json_decode($json_str, true);
if (isset($json['type']) && $json['type'] === 'content_block_delta') {
if (isset($json['delta']['text'])) {
$chunk_count++;
echo "data: " . json_encode([
'content' => $json['delta']['text'],
'test_chunk' => $chunk_count
]) . "\n\n";
flush();
}
}
}
} else {
// OpenAI, X.AI, DeepSeek format
if (strpos($line, 'data: ') === 0) {
$json_str = substr($line, 6);
if ($json_str === '[DONE]') {
// Don't echo [DONE] here, let the main function handle it
continue;
}
$json = json_decode($json_str, true);
if (isset($json['choices'][0]['delta']['content'])) {
$chunk_count++;
echo "data: " . json_encode([
'content' => $json['choices'][0]['delta']['content'],
'test_chunk' => $chunk_count
]) . "\n\n";
flush();
}
}
}
}
return strlen($data);
}
/**
* Updated version of your existing test method (keep this as a fallback)
*/
public function mxchat_handle_test_streaming() {
check_ajax_referer('mxchat_test_streaming_nonce', 'nonce');
// Use the actual streaming test instead
$this->mxchat_handle_test_streaming_actual();
}
public function register_pinecone_settings() {
register_setting(
'mxchat_pinecone_addon_options',
'mxchat_pinecone_addon_options',
array(
'type' => 'array',
'sanitize_callback' => array($this, 'sanitize_pinecone_settings'),
'default' => array(
'mxchat_use_pinecone' => '0',
'mxchat_pinecone_api_key' => '',
'mxchat_pinecone_host' => '',
'mxchat_pinecone_index' => '',
'mxchat_pinecone_environment' => ''
)
)
);
}
public function sanitize_pinecone_settings($input) {
$sanitized = array();
$sanitized['mxchat_use_pinecone'] = isset($input['mxchat_use_pinecone']) ? '1' : '0';
$sanitized['mxchat_pinecone_api_key'] = sanitize_text_field($input['mxchat_pinecone_api_key'] ?? '');
$sanitized['mxchat_pinecone_host'] = sanitize_text_field($input['mxchat_pinecone_host'] ?? '');
$sanitized['mxchat_pinecone_index'] = sanitize_text_field($input['mxchat_pinecone_index'] ?? '');
$sanitized['mxchat_pinecone_environment'] = sanitize_text_field($input['mxchat_pinecone_environment'] ?? '');
// Remove https:// from host if present
$sanitized['mxchat_pinecone_host'] = str_replace(['https://', 'http://'], '', $sanitized['mxchat_pinecone_host']);
return $sanitized;
}
public function register_openai_vectorstore_settings() {
register_setting(
'mxchat_openai_vectorstore_options',
'mxchat_openai_vectorstore_options',
array(
'type' => 'array',
'sanitize_callback' => array($this, 'sanitize_openai_vectorstore_settings'),
'default' => array(
'mxchat_use_openai_vectorstore' => '0',
'mxchat_vectorstore_ids' => '',
'mxchat_vectorstore_max_results' => 5
)
)
);
}
public function sanitize_openai_vectorstore_settings($input) {
$sanitized = array();
$sanitized['mxchat_use_openai_vectorstore'] = isset($input['mxchat_use_openai_vectorstore']) ? '1' : '0';
$sanitized['mxchat_vectorstore_ids'] = sanitize_text_field($input['mxchat_vectorstore_ids'] ?? '');
$sanitized['mxchat_vectorstore_max_results'] = absint($input['mxchat_vectorstore_max_results'] ?? 5);
// Ensure max results is within reasonable range
if ($sanitized['mxchat_vectorstore_max_results'] < 1) {
$sanitized['mxchat_vectorstore_max_results'] = 1;
}
if ($sanitized['mxchat_vectorstore_max_results'] > 20) {
$sanitized['mxchat_vectorstore_max_results'] = 20;
}
return $sanitized;
}
/**
* AJAX handler to test OpenAI Vector Store connection
*/
public function mxchat_test_vectorstore_connection() {
check_ajax_referer('mxchat_admin_nonce', 'nonce');
if (!current_user_can('manage_options')) {
wp_send_json_error(array('message' => __('Permission denied.', 'mxchat')));
return;
}
$vectorstore_options = get_option('mxchat_openai_vectorstore_options', array());
$vectorstore_ids = $vectorstore_options['mxchat_vectorstore_ids'] ?? '';
$mxchat_options = get_option('mxchat_options', array());
$api_key = $mxchat_options['api_key'] ?? '';
if (empty($api_key)) {
wp_send_json_error(array('message' => __('OpenAI API key is not configured.', 'mxchat')));
return;
}
if (empty($vectorstore_ids)) {
wp_send_json_error(array('message' => __('No Vector Store ID configured.', 'mxchat')));
return;
}
// Get the first Vector Store ID for testing
$ids_array = array_map('trim', explode(',', $vectorstore_ids));
$test_id = $ids_array[0];
// Test by retrieving the Vector Store info
$response = wp_remote_get(
'https://api.openai.com/v1/vector_stores/' . $test_id,
array(
'headers' => array(
'Authorization' => 'Bearer ' . $api_key,
'Content-Type' => 'application/json',
'OpenAI-Beta' => 'assistants=v2'
),
'timeout' => 30
)
);
if (is_wp_error($response)) {
wp_send_json_error(array('message' => __('Connection failed: ', 'mxchat') . $response->get_error_message()));
return;
}
$status_code = wp_remote_retrieve_response_code($response);
$body = json_decode(wp_remote_retrieve_body($response), true);
if ($status_code === 200 && isset($body['id'])) {
$file_count = $body['file_counts']['completed'] ?? 0;
$name = $body['name'] ?? $test_id;
wp_send_json_success(array(
'message' => sprintf(
__('Connected successfully! Vector Store: %s (%d files)', 'mxchat'),
esc_html($name),
$file_count
)
));
} elseif ($status_code === 404) {
wp_send_json_error(array('message' => __('Vector Store not found. Please check the ID.', 'mxchat')));
} elseif ($status_code === 401) {
wp_send_json_error(array('message' => __('Invalid API key.', 'mxchat')));
} else {
$error_message = $body['error']['message'] ?? __('Unknown error occurred.', 'mxchat');
wp_send_json_error(array('message' => $error_message));
}
}
/**
* AJAX handler to test Slack connection and validate scopes
*/
public function mxchat_test_slack_connection() {
check_ajax_referer('mxchat_admin_nonce', 'nonce');
if (!current_user_can('manage_options')) {
wp_send_json_error(array('message' => __('Permission denied.', 'mxchat')));
return;
}
$bot_token = $this->options['live_agent_bot_token'] ?? '';
if (empty($bot_token)) {
wp_send_json_error(array('message' => __('Slack Bot Token is not configured. Please enter your token and save settings first.', 'mxchat')));
return;
}
// Test 1: Validate bot token with auth.test
$auth_response = wp_remote_post('https://slack.com/api/auth.test', array(
'headers' => array(
'Authorization' => 'Bearer ' . $bot_token,
'Content-Type' => 'application/json'
),
'timeout' => 15
));
if (is_wp_error($auth_response)) {
wp_send_json_error(array('message' => __('Connection failed: ', 'mxchat') . $auth_response->get_error_message()));
return;
}
$auth_body = json_decode(wp_remote_retrieve_body($auth_response), true);
if (!isset($auth_body['ok']) || !$auth_body['ok']) {
$error = $auth_body['error'] ?? 'unknown_error';
$error_messages = array(
'invalid_auth' => __('Invalid bot token. Please check your token starts with xoxb-', 'mxchat'),
'not_authed' => __('No authentication token provided.', 'mxchat'),
'account_inactive' => __('The Slack workspace has been deactivated.', 'mxchat'),
'token_revoked' => __('The bot token has been revoked. Please generate a new one.', 'mxchat'),
);
$message = $error_messages[$error] ?? sprintf(__('Authentication failed: %s', 'mxchat'), $error);
wp_send_json_error(array('message' => $message));
return;
}
$team_name = $auth_body['team'] ?? 'Unknown Workspace';
$bot_name = $auth_body['user'] ?? 'Unknown Bot';
// Test 2: Check if we can list channels (tests channels:read scope)
$channels_response = wp_remote_post('https://slack.com/api/conversations.list', array(
'headers' => array(
'Authorization' => 'Bearer ' . $bot_token,
'Content-Type' => 'application/json'
),
'body' => json_encode(array('limit' => 1)),
'timeout' => 15
));
$channels_body = json_decode(wp_remote_retrieve_body($channels_response), true);
$can_read_channels = isset($channels_body['ok']) && $channels_body['ok'];
// Test 3: Check if we can create channels (tests channels:manage scope)
// We'll just check the error message without actually creating
$create_response = wp_remote_post('https://slack.com/api/conversations.create', array(
'headers' => array(
'Authorization' => 'Bearer ' . $bot_token,
'Content-Type' => 'application/json'
),
'body' => json_encode(array('name' => 'mxchat-test-' . time(), 'is_private' => false)),
'timeout' => 15
));
$create_body = json_decode(wp_remote_retrieve_body($create_response), true);
// If channel was created, delete it immediately
if (isset($create_body['ok']) && $create_body['ok'] && isset($create_body['channel']['id'])) {
wp_remote_post('https://slack.com/api/conversations.archive', array(
'headers' => array(
'Authorization' => 'Bearer ' . $bot_token,
'Content-Type' => 'application/json'
),
'body' => json_encode(array('channel' => $create_body['channel']['id'])),
'timeout' => 15
));
$can_create_channels = true;
} else {
$create_error = $create_body['error'] ?? '';
// name_taken means we have permission but channel exists
$can_create_channels = ($create_error === 'name_taken' || (isset($create_body['ok']) && $create_body['ok']));
// Check for missing scope errors
if ($create_error === 'missing_scope') {
$can_create_channels = false;
}
}
// Build result message
$results = array();
$results[] = sprintf(__('Workspace: %s', 'mxchat'), esc_html($team_name));
$results[] = sprintf(__('Bot: %s', 'mxchat'), esc_html($bot_name));
$results[] = '';
$results[] = ($can_read_channels ? '✓' : '✗') . ' ' . __('channels:read - List channels', 'mxchat');
$results[] = ($can_create_channels ? '✓' : '✗') . ' ' . __('channels:manage - Create channels', 'mxchat');
$missing_scopes = array();
if (!$can_read_channels) $missing_scopes[] = 'channels:read';
if (!$can_create_channels) $missing_scopes[] = 'channels:manage';
if (!empty($missing_scopes)) {
wp_send_json_error(array(
'message' => implode("\n", $results),
'missing_scopes' => $missing_scopes,
'partial' => true
));
} else {
wp_send_json_success(array(
'message' => implode("\n", $results)
));
}
}
public function mxchat_display_admin_notice() {
// Success notice
if ($message = get_transient('mxchat_admin_notice_success')) {
?>
🔧 Live Agent Integration Updated!
We've temporarily disabled your Live Agent integration due to recent enhancements that have made it much better! You can easily turn it back on by going to Toolbar & Components → Live Agent Settings and reviewing the new configuration options.
mxchat_create_admin_page();
}
/**
* Hide the Onboarding submenu when the user has dismissed it (either
* manually or via auto-graduation). The page itself remains routable so
* the Settings "Show MxChat Onboarding again" link can navigate back to it.
*/
public function mxchat_apply_onboarding_visibility() {
if (!function_exists('mxchat_onboarding_is_dismissed')) {
return;
}
if (mxchat_onboarding_is_dismissed()) {
// The first MxChat child is the same-slug-as-parent registration
// (slug 'mxchat-max', labelled "Onboarding") added in plan-d14e89.
// Remove it so the menu opens straight to Settings after dismiss.
remove_submenu_page('mxchat-max', 'mxchat-max');
}
}
public function mxchat_create_admin_page() {
$this->add_live_agent_nonce();
$this->add_theme_migration_nonce();
// Include and render the new sidebar-based settings page
require_once plugin_dir_path(__FILE__) . 'admin-settings-page.php';
mxchat_render_settings_page($this);
}
public function dismiss_live_agent_notice() {
// Add debugging
//error_log('dismiss_live_agent_notice called');
//error_log('POST data: ' . print_r($_POST, true));
// Verify nonce
if (!wp_verify_nonce($_POST['nonce'], 'dismiss_live_agent_notice')) {
//error_log('Nonce verification failed');
wp_die('Security check failed');
}
// Remove the notice flag
$deleted = delete_option('mxchat_show_live_agent_disabled_notice');
//error_log('Option deleted: ' . ($deleted ? 'yes' : 'no'));
wp_send_json_success();
}
public function add_live_agent_nonce() {
if (get_option('mxchat_show_live_agent_disabled_notice', false)) {
// Make sure your admin script is enqueued and localize the data
wp_localize_script('mxchat-admin-js', 'mxchatLiveAgent', array(
'nonce' => wp_create_nonce('dismiss_live_agent_notice'),
'ajaxurl' => admin_url('admin-ajax.php')
));
}
}
/**
* Show theme migration notice for Pro users with AI-generated themes
* Only shown once - dismissible and stored in options
*/
public function show_theme_migration_banner() {
// Only show if Pro is activated
if (!$this->is_activated) {
return;
}
// Check if notice should be shown
$show_notice = get_option('mxchat_show_theme_migration_notice', false);
if ($show_notice) {
?>
🎨 AI Theme Migration Required
If you're using an AI-generated chatbot theme, you'll need to migrate it to match the new CSS structure. Go to Theme Settings, select your theme from the sidebar, and click the Migrate button.
is_activated) {
wp_localize_script('mxchat-admin-js', 'mxchatThemeMigration', array(
'nonce' => wp_create_nonce('dismiss_theme_migration_notice'),
'ajaxurl' => admin_url('admin-ajax.php')
));
}
}
public function mxchat_create_transcripts_page() {
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_chat_transcripts';
// Get basic stats
$total_chats = $wpdb->get_var("SELECT COUNT(DISTINCT session_id) FROM $table_name") ?: 0;
$total_messages = $wpdb->get_var("SELECT COUNT(*) FROM $table_name") ?: 0;
// Count unique users with detailed breakdown
$total_users = $wpdb->get_var("
SELECT COUNT(DISTINCT
CASE
WHEN user_email != '' AND user_email IS NOT NULL THEN user_email
WHEN user_id != 0 THEN CONCAT('user_', user_id)
WHEN user_identifier NOT LIKE 'Tech-Savvy User'
AND user_identifier NOT LIKE 'Detail-Oriented User'
AND user_identifier NOT LIKE 'Language Learner'
AND user_identifier NOT LIKE 'Casual Browser'
AND user_identifier NOT LIKE 'Policy Enforcer'
AND user_identifier NOT LIKE 'Researcher'
AND user_identifier NOT LIKE 'Loyalty Member'
AND user_identifier NOT LIKE 'Gift Buyer'
AND user_identifier NOT LIKE 'Parent or Caregiver'
THEN user_identifier
ELSE session_id
END
)
FROM $table_name
WHERE role != 'assistant'
");
// Get user type breakdown
$registered_users = $wpdb->get_var("
SELECT COUNT(DISTINCT user_email)
FROM $table_name
WHERE user_email != '' AND user_email IS NOT NULL
");
$guest_users = $wpdb->get_var("
SELECT COUNT(DISTINCT user_identifier)
FROM $table_name
WHERE (user_email = '' OR user_email IS NULL)
AND role != 'assistant'
AND user_identifier NOT LIKE 'Tech-Savvy User'
AND user_identifier NOT LIKE 'Detail-Oriented User'
AND user_identifier NOT LIKE 'Language Learner'
AND user_identifier NOT LIKE 'Casual Browser'
AND user_identifier NOT LIKE 'Policy Enforcer'
AND user_identifier NOT LIKE 'Researcher'
AND user_identifier NOT LIKE 'Loyalty Member'
AND user_identifier NOT LIKE 'Gift Buyer'
AND user_identifier NOT LIKE 'Parent or Caregiver'
");
// Get agent test messages count
$agent_tests = $wpdb->get_var("
SELECT COUNT(DISTINCT session_id)
FROM $table_name
WHERE user_identifier IN (
'Tech-Savvy User',
'Detail-Oriented User',
'Language Learner',
'Casual Browser',
'Policy Enforcer',
'Researcher',
'Loyalty Member',
'Gift Buyer',
'Parent or Caregiver'
)
");
// Get activity metrics
$today_chats = $wpdb->get_var("
SELECT COUNT(DISTINCT session_id)
FROM $table_name
WHERE DATE(timestamp) = CURDATE()
");
$week_chats = $wpdb->get_var("
SELECT COUNT(DISTINCT session_id)
FROM $table_name
WHERE timestamp >= DATE_SUB(NOW(), INTERVAL 7 DAY)
");
$month_chats = $wpdb->get_var("
SELECT COUNT(DISTINCT session_id)
FROM $table_name
WHERE timestamp >= DATE_SUB(NOW(), INTERVAL 30 DAY)
");
// Get daily chat data for last 7 days
$daily_stats = $wpdb->get_results("
SELECT
DATE(timestamp) as date,
COUNT(DISTINCT session_id) as chats,
COUNT(*) as messages
FROM $table_name
WHERE timestamp >= DATE_SUB(NOW(), INTERVAL 7 DAY)
GROUP BY DATE(timestamp)
ORDER BY date ASC
");
// Get average messages per chat
$avg_messages = $wpdb->get_var("
SELECT AVG(message_count)
FROM (
SELECT session_id, COUNT(*) as message_count
FROM $table_name
GROUP BY session_id
) as chat_counts
");
$avg_messages = $avg_messages ? round($avg_messages, 1) : 0;
// Get busiest hour
$busiest_hour = $wpdb->get_row("
SELECT HOUR(timestamp) as hour, COUNT(DISTINCT session_id) as chat_count
FROM $table_name
GROUP BY HOUR(timestamp)
ORDER BY chat_count DESC
LIMIT 1
");
// Prepare chart data
$chart_labels = array();
$chart_chats = array();
$chart_messages = array();
// Fill last 7 days with data
for ($i = 6; $i >= 0; $i--) {
$date = date('Y-m-d', strtotime("-$i days"));
$day_name = date('D', strtotime("-$i days"));
$chart_labels[] = $day_name;
$found = false;
foreach ($daily_stats as $stat) {
if ($stat->date === $date) {
$chart_chats[] = (int)$stat->chats;
$chart_messages[] = (int)$stat->messages;
$found = true;
break;
}
}
if (!$found) {
$chart_chats[] = 0;
$chart_messages[] = 0;
}
}
// Satisfaction rating rollup — last 30 days, grouped by bot (plan-a5b006).
$satisfaction_stats = $this->get_satisfaction_rating_stats(30);
// Prepare page data for the template
$page_data = array(
'total_chats' => $total_chats,
'total_messages' => $total_messages,
'total_users' => $total_users,
'registered_users' => $registered_users,
'guest_users' => $guest_users,
'agent_tests' => $agent_tests,
'today_chats' => $today_chats,
'week_chats' => $week_chats,
'month_chats' => $month_chats,
'avg_messages' => $avg_messages,
'busiest_hour' => $busiest_hour,
'chart_labels' => $chart_labels,
'chart_chats' => $chart_chats,
'chart_messages' => $chart_messages,
'satisfaction_stats' => $satisfaction_stats,
);
// Include and render the new template
require_once plugin_dir_path(__FILE__) . 'admin-transcripts-page.php';
mxchat_render_transcripts_page($this, $page_data);
}
/**
* Per-bot satisfaction rating rollup over the last $days days. Used by the
* Satisfaction card on the Transcripts dashboard (plan-a5b006).
*
* @param int $days Window in days.
* @return array Each entry: ['bot_id', 'total', 'positive', 'negative', 'positive_pct', 'negative_pct'].
*/
public function get_satisfaction_rating_stats($days = 30) {
global $wpdb;
$table = $wpdb->prefix . 'mxchat_session_ratings';
if ($wpdb->get_var($wpdb->prepare("SHOW TABLES LIKE %s", $table)) !== $table) {
return array();
}
$days = max(1, (int) $days);
$rows = $wpdb->get_results($wpdb->prepare(
"SELECT bot_id,
COUNT(*) AS total,
SUM(CASE WHEN rating_value = 1 THEN 1 ELSE 0 END) AS positive,
SUM(CASE WHEN rating_value = -1 THEN 1 ELSE 0 END) AS negative
FROM {$table}
WHERE created_at >= DATE_SUB(NOW(), INTERVAL %d DAY)
GROUP BY bot_id
ORDER BY total DESC",
$days
));
$out = array();
foreach ((array) $rows as $row) {
$total = (int) $row->total;
$positive = (int) $row->positive;
$negative = (int) $row->negative;
$out[] = array(
'bot_id' => $row->bot_id ?: 'default',
'total' => $total,
'positive' => $positive,
'negative' => $negative,
'positive_pct' => $total > 0 ? (int) round(($positive / $total) * 100) : 0,
'negative_pct' => $total > 0 ? (int) round(($negative / $total) * 100) : 0,
);
}
return $out;
}
/**
* Get chart data for transcripts page
* Used by both page render and script localization
*
* @return array Chart data with labels, chats, and messages arrays
*/
private function get_transcripts_chart_data() {
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_chat_transcripts';
// Get daily chat data for last 7 days - same query as mxchat_transcripts_page()
$daily_stats = $wpdb->get_results("
SELECT
DATE(timestamp) as date,
COUNT(DISTINCT session_id) as chats,
COUNT(*) as messages
FROM $table_name
WHERE timestamp >= DATE_SUB(NOW(), INTERVAL 7 DAY)
GROUP BY DATE(timestamp)
ORDER BY date ASC
");
// Prepare chart data
$chart_labels = array();
$chart_chats = array();
$chart_messages = array();
// Fill last 7 days with data - same logic as mxchat_transcripts_page()
for ($i = 6; $i >= 0; $i--) {
$date = date('Y-m-d', strtotime("-$i days"));
$day_name = date('D', strtotime("-$i days"));
$chart_labels[] = $day_name;
$found = false;
if ($daily_stats) {
foreach ($daily_stats as $stat) {
if ($stat->date === $date) {
$chart_chats[] = (int)$stat->chats;
$chart_messages[] = (int)$stat->messages;
$found = true;
break;
}
}
}
if (!$found) {
$chart_chats[] = 0;
$chart_messages[] = 0;
}
}
return array(
'labels' => $chart_labels,
'chats' => $chart_chats,
'messages' => $chart_messages
);
}
public function mxchat_transcripts_notification_section_callback() {
echo '
' . esc_html__('Configure email notifications for new chat transcripts. You will receive an email notification when a new chat session begins.', 'mxchat') . '
';
}
public function mxchat_enable_notifications_callback() {
$options = get_option('mxchat_transcripts_options', array());
$enabled = isset($options['mxchat_enable_notifications']) ? $options['mxchat_enable_notifications'] : 0;
?>
0 it overrides the bucket dropdown above
* and deletes transcripts older than the given number of days. Set to 0 to fall
* back to the dropdown (or "Never" if the dropdown is also Never).
*
* Devs can override the final day count via the `mxchat_transcript_retention_days`
* filter — runs in `cleanup_old_transcripts()` after this option is read.
*
* (plan-mxchat-20260509-9b80b1)
*/
public function mxchat_retention_days_callback() {
$options = get_option('mxchat_transcripts_options', array());
$days = isset($options['mxchat_retention_days']) ? (int) $options['mxchat_retention_days'] : 0;
?>
tags
// This creates proper paragraph structure instead of excessive tags
$paragraphs = preg_split('/\n\n+/', $text);
// Filter out empty paragraphs but preserve content like "0"
$paragraphs = array_values(array_filter(array_map('trim', $paragraphs), function($p) {
return $p !== '';
}));
if (empty($paragraphs)) {
// No content after filtering
return '';
} elseif (count($paragraphs) > 1) {
// Multiple paragraphs - wrap each in
tags, convert single newlines to
$formatted_paragraphs = array_map(function($p) {
return nl2br($p);
}, $paragraphs);
$text = '
' . implode('
', $formatted_paragraphs) . '
';
} else {
// Single paragraph - just convert newlines to
$text = nl2br($paragraphs[0]);
}
return $text;
}
/**
* AJAX handler to fetch RAG context for a specific message
* Used by the transcript viewer to show retrieved documents
*/
public function mxchat_get_rag_context() {
// Check permissions
if (!current_user_can('manage_options')) {
wp_send_json_error(['message' => esc_html__('You do not have sufficient permissions.', 'mxchat')]);
wp_die();
}
// Validate message ID
if (!isset($_POST['message_id']) || empty($_POST['message_id'])) {
wp_send_json_error(['message' => esc_html__('Message ID is required.', 'mxchat')]);
wp_die();
}
$message_id = absint($_POST['message_id']);
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_chat_transcripts';
// Fetch the RAG context for this message
$result = $wpdb->get_row($wpdb->prepare(
"SELECT rag_context FROM {$table_name} WHERE id = %d",
$message_id
));
if (!$result || empty($result->rag_context)) {
wp_send_json_error(['message' => esc_html__('No RAG context found for this message.', 'mxchat')]);
wp_die();
}
// Decode the JSON data
$rag_context = json_decode($result->rag_context, true);
if (json_last_error() !== JSON_ERROR_NONE) {
wp_send_json_error(['message' => esc_html__('Invalid RAG context data.', 'mxchat')]);
wp_die();
}
wp_send_json_success($rag_context);
wp_die();
}
public function display_admin_notices() {
// Check if we're on a MXChat admin page
$screen = get_current_screen();
if (!$screen || strpos($screen->base, 'mxchat') === false) {
return;
}
$dismiss_button = '';
// Check for error notices
$error_notice = get_transient('mxchat_admin_notice_error');
if ($error_notice) {
echo '
' . wp_kses_post($error_notice) . '
' . $dismiss_button . '
';
delete_transient('mxchat_admin_notice_error');
}
// Check for success notices
$success_notice = get_transient('mxchat_admin_notice_success');
if ($success_notice) {
echo '
' . wp_kses_post($success_notice) . '
' . $dismiss_button . '
';
delete_transient('mxchat_admin_notice_success');
}
// Check for info notices
$info_notice = get_transient('mxchat_admin_notice_info');
if ($info_notice) {
echo '
' . wp_kses_post($info_notice) . '
' . $dismiss_button . '
';
delete_transient('mxchat_admin_notice_info');
}
}
public function mxchat_create_activation_page() {
// Include the new Pro & Extensions page template
require_once plugin_dir_path(__FILE__) . 'admin-pro-page.php';
// Get addons configuration from the MxChat_Addons class
require_once plugin_dir_path(__FILE__) . 'class-mxchat-addons.php';
$addons_instance = new MxChat_Addons();
$addons_config = $addons_instance->get_addons_config();
// Render the consolidated Pro & Extensions page
mxchat_render_pro_page($this, $addons_config);
}
/**
* Check if current activation is linked to a domain
* This checks YOUR website's database, not the user's local database
*/
public function is_current_activation_linked($domain) {
$license_key = get_option('mxchat_activation_key');
$email = get_option('mxchat_pro_email');
if (empty($license_key) || empty($email)) {
return false;
}
// Check with YOUR website's API
$response = wp_remote_post('https://mxchat.ai/mxchat-api/check-domain', array(
'body' => array(
'license_key' => $license_key,
'email' => $email,
'domain' => $domain
),
'timeout' => 10,
'sslverify' => false
));
if (is_wp_error($response)) {
return false;
}
$body = json_decode(wp_remote_retrieve_body($response), true);
return isset($body['success']) && $body['success'] && isset($body['data']['linked']) && $body['data']['linked'];
}
public function mxchat_actions_page_html() {
if (!current_user_can('manage_options')) {
return;
}
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_intents';
// Get stats for dashboard
$total_actions = $wpdb->get_var("SELECT COUNT(*) FROM $table_name");
$enabled_actions = $wpdb->get_var("SELECT COUNT(*) FROM $table_name WHERE enabled = 1");
$disabled_actions = $total_actions - $enabled_actions;
// Get unique action types count
$action_types_count = $wpdb->get_var("SELECT COUNT(DISTINCT callback_function) FROM $table_name");
// Get action type distribution
$type_distribution_raw = $wpdb->get_results("SELECT callback_function, COUNT(*) as count FROM $table_name GROUP BY callback_function ORDER BY count DESC LIMIT 10");
$available_callbacks = $this->mxchat_get_available_callbacks();
$callback_groups = $this->mxchat_get_available_callbacks(true, true);
$action_type_distribution = array();
foreach ($type_distribution_raw as $row) {
$label = isset($available_callbacks[$row->callback_function]['label'])
? $available_callbacks[$row->callback_function]['label']
: $row->callback_function;
$action_type_distribution[$label] = $row->count;
}
// Native function-calling (AI Tools) data — plan-mxchat-20260617-a41dee.
// The AI Tools checklist reads from MxChat_Tool_Registry, the SAME single
// source the chat-time function-calling loop reads, so the two never drift.
if (!class_exists('MxChat_Tool_Registry')) {
require_once plugin_dir_path(__FILE__) . 'class-mxchat-tool-registry.php';
}
if (!class_exists('MxChat_Model_Catalog')) {
require_once plugin_dir_path(__FILE__) . 'class-mxchat-model-catalog.php';
}
$fc_options = get_option('mxchat_options', array());
$fc_current_model = isset($fc_options['model']) ? $fc_options['model'] : 'gpt-5.1-chat-latest';
$fc_model_capable = class_exists('MxChat_Model_Catalog')
? MxChat_Model_Catalog::supports_tools($fc_current_model) : true;
$active_tab = (isset($_GET['tab']) && $_GET['tab'] === 'ai-tools') ? 'ai-tools' : 'dashboard';
// Enrich each AI Tool with the dashicon its callback already uses on the
// Trigger Phrases "Choose what it does" grid, so the AI Tools cards/modal
// share the same iconography (plan 8bbf98 part 4). View-layer only — the
// registry's model-facing data is untouched. Default admin-generic.
$fc_tools = MxChat_Tool_Registry::available_tools();
foreach ($fc_tools as &$fc_tool_ref) {
$fc_cb_ref = $fc_tool_ref['callback'];
$fc_tool_ref['icon'] = isset($available_callbacks[$fc_cb_ref]['icon'])
? $available_callbacks[$fc_cb_ref]['icon']
: 'admin-generic';
}
unset($fc_tool_ref);
// Count of ACTIVE tools — drives the AI Tools sidebar nav badge, mirroring
// $total_actions for Trigger Phrases. A tool in the list = active (plan
// d450a7), so the badge shows the same number the list pane shows (plan 5f7409).
$total_tools = count(array_filter($fc_tools, function ($t) {
return !empty($t['enabled']);
}));
// Brave-key dependency check (plan 183856): Web Search + Image Search run on
// the Brave Search API. If either is enabled as a tool but no brave_api_key is
// configured, surface a graceful "key not set" notice so the admin isn't met
// with a silently no-firing tool.
$fc_brave_missing = false;
$brave_key = isset($fc_options['brave_api_key']) ? trim($fc_options['brave_api_key']) : '';
if ($brave_key === '') {
foreach ($fc_tools as $fc_t) {
if (!empty($fc_t['enabled']) && isset($fc_t['requires_key']) && $fc_t['requires_key'] === 'brave_api_key') {
$fc_brave_missing = true;
break;
}
}
}
// Prepare page data
$page_data = array(
'total_actions' => $total_actions,
'enabled_actions' => $enabled_actions,
'disabled_actions' => $disabled_actions,
'action_types_count' => $action_types_count,
'action_type_distribution' => $action_type_distribution,
'available_callbacks' => $available_callbacks,
'callback_groups' => $callback_groups,
// AI Tools section
'active_tab' => $active_tab,
'fc_enabled' => MxChat_Tool_Registry::is_enabled(),
'total_tools' => $total_tools,
'fc_tools' => $fc_tools,
'fc_current_model' => $fc_current_model,
'fc_model_capable' => $fc_model_capable,
'fc_brave_missing' => $fc_brave_missing,
'fc_saved' => isset($_GET['mxchat_fc_saved']),
);
// Include and render the new template
require_once plugin_dir_path(__FILE__) . 'admin-actions-page.php';
mxchat_render_actions_page($this, $page_data);
}
/**
* LEGACY HTML - Preserved below for reference, to be removed in future update
*/
function mxchat_actions_page_legacy_html() {
// This function is deprecated and no longer used
// The new template is in includes/admin-actions-page.php
?>
Actions Manager
callback_function;
$callback_label = isset($available_callbacks[$callback_function]['label'])
? $available_callbacks[$callback_function]['label']
: $callback_function;
$threshold_value = isset($action->similarity_threshold)
? round($action->similarity_threshold * 100)
: 85;
// Check if this is a form action
$is_form_action = strpos($action->intent_label, 'Form ') === 0;
// Get action status (enabled/disabled) - default to true if column doesn't exist
$is_enabled = isset($action->enabled) ? (bool)$action->enabled : true;
// Get enabled bots for display
$enabled_bots = [];
if (isset($action->enabled_bots) && !empty($action->enabled_bots)) {
$enabled_bots = json_decode($action->enabled_bots, true);
if (!is_array($enabled_bots)) {
$enabled_bots = ['default'];
}
} else {
$enabled_bots = ['default']; // Backward compatibility
}
?>
prefix . 'mxchat_intents';
// Check if the column already exists
$columns = $wpdb->get_results("SHOW COLUMNS FROM $table_name LIKE 'enabled'");
if (empty($columns)) {
// Add the column with default value of 1 (enabled)
$wpdb->query("ALTER TABLE $table_name ADD COLUMN enabled TINYINT(1) NOT NULL DEFAULT 1");
}
}
public function mxchat_handle_delete_intent() {
if ( ! current_user_can( 'manage_options' ) ) {
wp_die( esc_html__('Unauthorized user', 'mxchat') );
}
check_admin_referer('mxchat_delete_intent_nonce');
if (isset($_POST['intent_id'])) {
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_intents';
$intent_id = intval($_POST['intent_id']);
$wpdb->delete($table_name, ['id' => $intent_id], ['%d']);
}
wp_safe_redirect(admin_url('admin.php?page=mxchat-actions'));
exit;
}
public function mxchat_handle_edit_intent() {
// Security checks (nonce and permissions)
if (!current_user_can('manage_options')) {
wp_die(esc_html__('Unauthorized user', 'mxchat'));
}
check_admin_referer('mxchat_edit_intent');
// Get POST data
$intent_id = isset($_POST['intent_id']) ? absint($_POST['intent_id']) : 0;
$intent_label = isset($_POST['intent_label']) ? sanitize_text_field($_POST['intent_label']) : '';
$phrases_input = isset($_POST['phrases']) ? sanitize_textarea_field($_POST['phrases']) : '';
$threshold_percentage = isset($_POST['similarity_threshold']) ? intval($_POST['similarity_threshold']) : 85;
$similarity_threshold = min(95, max(10, $threshold_percentage)) / 100; // Convert to 0.10–0.95
// Handle enabled_bots
$enabled_bots = isset($_POST['enabled_bots']) ? $_POST['enabled_bots'] : array('default');
$enabled_bots = array_map('sanitize_text_field', $enabled_bots);
// Ensure default is always included for backward compatibility
if (!in_array('default', $enabled_bots)) {
$enabled_bots[] = 'default';
}
$enabled_bots_json = json_encode($enabled_bots);
// Validate inputs
if (!$intent_id || empty($intent_label) || empty($phrases_input)) {
$this->handle_embedding_error(__('Invalid input. Please ensure all fields are filled out.', 'mxchat'));
return;
}
$phrases_array = array_map('sanitize_text_field', array_filter(array_map('trim', explode(',', $phrases_input))));
if (empty($phrases_array)) {
$this->handle_embedding_error(__('Please enter at least one valid phrase.', 'mxchat'));
return;
}
// Generate embeddings with improved error handling
$vectors = [];
$failed_phrases = [];
foreach ($phrases_array as $phrase) {
$embedding_vector = $this->mxchat_generate_embedding($phrase, $this->options['api_key']);
if (is_array($embedding_vector)) {
$vectors[] = $embedding_vector;
} else {
$failed_phrases[] = $phrase;
}
}
if (!empty($failed_phrases)) {
$this->handle_embedding_error(
sprintf(
__('Error generating embeddings for phrases: %s. Check your embedding API.', 'mxchat'),
implode(', ', $failed_phrases)
)
);
return;
}
if (empty($vectors)) {
$this->handle_embedding_error(__('No valid embeddings generated. Please check your phrases.', 'mxchat'));
return;
}
$combined_vector = $this->mxchat_average_vectors($vectors);
$serialized_vector = maybe_serialize($combined_vector);
// Update the database
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_intents';
$result = $wpdb->update(
$table_name,
array(
'intent_label' => $intent_label,
'phrases' => implode(', ', $phrases_array),
'embedding_vector' => $serialized_vector,
'similarity_threshold' => $similarity_threshold,
'enabled_bots' => $enabled_bots_json, // Include enabled_bots in update
),
array('id' => $intent_id),
array('%s', '%s', '%s', '%f', '%s'), // Format: string, string, string, float, string
array('%d') // Where format: integer
);
if (false === $result) {
$this->handle_embedding_error(__('Failed to update action in database.', 'mxchat'));
return;
}
// Set success message and redirect
set_transient('mxchat_admin_notice_success', __('Intent updated successfully!', 'mxchat'), 60);
$redirect_url = add_query_arg(
array(
'page' => 'mxchat-actions'
),
admin_url('admin.php')
);
wp_safe_redirect($redirect_url);
exit;
}
public function mxchat_handle_add_intent() {
if (!current_user_can('manage_options')) {
wp_die(esc_html__('Unauthorized user', 'mxchat'));
}
check_admin_referer('mxchat_add_intent_nonce');
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_intents';
// Sanitize and get form data
$intent_label = isset($_POST['intent_label']) ? sanitize_text_field($_POST['intent_label']) : '';
$phrases_input = isset($_POST['phrases']) ? sanitize_textarea_field($_POST['phrases']) : '';
$callback_function = isset($_POST['callback_function']) ? sanitize_text_field($_POST['callback_function']) : '';
// Get similarity threshold from form (convert percentage to decimal)
$similarity_threshold = isset($_POST['similarity_threshold']) ? floatval($_POST['similarity_threshold']) / 100 : 0.85;
// Handle enabled_bots
$enabled_bots = isset($_POST['enabled_bots']) ? $_POST['enabled_bots'] : array('default');
$enabled_bots = array_map('sanitize_text_field', $enabled_bots);
// Ensure default is always included for backward compatibility with existing actions
if (!in_array('default', $enabled_bots)) {
$enabled_bots[] = 'default';
}
$enabled_bots_json = json_encode($enabled_bots);
// Validate required fields
if (empty($intent_label) || empty($callback_function) || empty($phrases_input)) {
$this->handle_embedding_error(__('Invalid input. Please ensure all fields are filled out.', 'mxchat'));
return;
}
// Validate callback function
$available_callbacks = $this->mxchat_get_available_callbacks();
if (!array_key_exists($callback_function, $available_callbacks)) {
$this->handle_embedding_error(__('Invalid callback function selected.', 'mxchat'));
return;
}
// Check if this is an add-on promotional placeholder (not a real action)
if (!empty($available_callbacks[$callback_function]['addon_promo'])) {
$addon_name = isset($available_callbacks[$callback_function]['addon_name']) ? $available_callbacks[$callback_function]['addon_name'] : __('an add-on', 'mxchat');
$this->handle_embedding_error(sprintf(
__('This action requires the %s to be installed and activated.', 'mxchat'),
$addon_name
));
return;
}
// Process phrases
$phrases_array = array_map('sanitize_text_field', array_filter(array_map('trim', explode(',', $phrases_input))));
if (empty($phrases_array)) {
$this->handle_embedding_error(__('Please enter at least one valid phrase.', 'mxchat'));
return;
}
// Generate embeddings with improved error handling
$vectors = [];
$failed_phrases = [];
foreach ($phrases_array as $phrase) {
$embedding_vector = $this->mxchat_generate_embedding($phrase, $this->options['api_key']);
if (is_array($embedding_vector)) {
$vectors[] = $embedding_vector;
} else {
$failed_phrases[] = $phrase;
}
}
// Check for embedding failures
if (!empty($failed_phrases)) {
$this->handle_embedding_error(
sprintf(
__('Error generating embeddings for phrases: %s. Check your embedding API.', 'mxchat'),
implode(', ', $failed_phrases)
)
);
return;
}
if (empty($vectors)) {
$this->handle_embedding_error(__('No valid embeddings generated. Please check your phrases.', 'mxchat'));
return;
}
// Create combined vector and insert into database
$combined_vector = $this->mxchat_average_vectors($vectors);
$serialized_vector = maybe_serialize($combined_vector);
$result = $wpdb->insert($table_name, [
'intent_label' => $intent_label,
'phrases' => implode(', ', $phrases_array),
'embedding_vector' => $serialized_vector,
'callback_function' => $callback_function,
'similarity_threshold' => $similarity_threshold,
'enabled_bots' => $enabled_bots_json, // NEW field
]);
if ($result === false) {
$this->handle_embedding_error(__('Database error: ', 'mxchat') . $wpdb->last_error);
return;
}
// Set success message and redirect
set_transient('mxchat_admin_notice_success', __('New intent added successfully!', 'mxchat'), 60);
wp_safe_redirect(admin_url('admin.php?page=mxchat-actions'));
exit;
}
private function handle_embedding_error($message, $redirect = true) {
// Store the error message in the existing transient
set_transient('mxchat_admin_notice_error', $message, 60);
if ($redirect) {
// Redirect back to the actions page
$redirect_url = add_query_arg(
array(
'page' => 'mxchat-actions'
),
admin_url('admin.php')
);
wp_safe_redirect($redirect_url);
exit;
}
}
/**
* AJAX handler to fetch actions list for the new split-panel UI
*/
public function mxchat_fetch_actions_list() {
check_ajax_referer('mxchat_actions_nonce', 'security');
if (!current_user_can('manage_options')) {
wp_send_json_error(__('Unauthorized', 'mxchat'));
}
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_intents';
$page = isset($_POST['page']) ? max(1, intval($_POST['page'])) : 1;
$per_page = isset($_POST['per_page']) ? min(100, max(1, intval($_POST['per_page']))) : 50;
$offset = ($page - 1) * $per_page;
$search = isset($_POST['search']) ? sanitize_text_field($_POST['search']) : '';
$callback_filter = isset($_POST['callback_filter']) ? sanitize_text_field($_POST['callback_filter']) : '';
$sort_order = isset($_POST['sort_order']) && $_POST['sort_order'] === 'asc' ? 'ASC' : 'DESC';
// Build WHERE clause
$where = '1=1';
$params = array();
if ($search) {
$search_like = '%' . $wpdb->esc_like($search) . '%';
$where .= ' AND (intent_label LIKE %s OR phrases LIKE %s)';
$params[] = $search_like;
$params[] = $search_like;
}
if ($callback_filter) {
$where .= ' AND callback_function = %s';
$params[] = $callback_filter;
}
// Get total count
$count_query = "SELECT COUNT(*) FROM $table_name WHERE $where";
if (!empty($params)) {
$count_query = $wpdb->prepare($count_query, $params);
}
$total_actions = $wpdb->get_var($count_query);
// Get actions
$query = "SELECT * FROM $table_name WHERE $where ORDER BY id $sort_order LIMIT %d OFFSET %d";
$all_params = array_merge($params, array($per_page, $offset));
$actions = $wpdb->get_results($wpdb->prepare($query, $all_params));
// Get available callbacks for labels/icons
$available_callbacks = $this->mxchat_get_available_callbacks();
// Prefetch individual phrase counts for all fetched actions
$phrases_table = $wpdb->prefix . 'mxchat_intent_phrases';
$phrase_counts = array();
if ($wpdb->get_var("SHOW TABLES LIKE '$phrases_table'") === $phrases_table) {
$action_ids = wp_list_pluck($actions, 'id');
if (!empty($action_ids)) {
$id_placeholders = implode(',', array_fill(0, count($action_ids), '%d'));
$count_results = $wpdb->get_results($wpdb->prepare(
"SELECT intent_id, COUNT(*) as cnt FROM $phrases_table WHERE intent_id IN ($id_placeholders) GROUP BY intent_id",
$action_ids
));
foreach ($count_results as $row) {
$phrase_counts[$row->intent_id] = intval($row->cnt);
}
}
}
// Format actions for response
$formatted_actions = array();
foreach ($actions as $action) {
$callback_data = isset($available_callbacks[$action->callback_function])
? $available_callbacks[$action->callback_function]
: array('label' => $action->callback_function, 'icon' => 'admin-generic');
$enabled_bots = json_decode($action->enabled_bots, true);
if (!is_array($enabled_bots)) {
$enabled_bots = array('default');
}
$formatted_actions[] = array(
'id' => intval($action->id),
'label' => $action->intent_label,
'phrases' => $action->phrases,
'callback_function' => $action->callback_function,
'callback_label' => $callback_data['label'],
'icon' => isset($callback_data['icon']) ? $callback_data['icon'] : 'admin-generic',
'threshold' => round($action->similarity_threshold * 100),
'enabled' => (bool) $action->enabled,
'enabled_bots' => $enabled_bots,
'has_legacy_vector' => !empty($action->embedding_vector),
'individual_phrase_count' => isset($phrase_counts[$action->id]) ? $phrase_counts[$action->id] : 0,
);
}
$total_pages = ceil($total_actions / $per_page);
$showing_start = $total_actions > 0 ? $offset + 1 : 0;
$showing_end = min($offset + $per_page, $total_actions);
wp_send_json_success(array(
'actions' => $formatted_actions,
'page' => $page,
'per_page' => $per_page,
'total_actions' => intval($total_actions),
'total_pages' => $total_pages,
'showing_start' => $showing_start,
'showing_end' => $showing_end,
));
}
/**
* AJAX handler to toggle action enabled status
*/
public function mxchat_toggle_action_status() {
check_ajax_referer('mxchat_actions_nonce', 'security');
if (!current_user_can('manage_options')) {
wp_send_json_error(__('Unauthorized', 'mxchat'));
}
$action_id = isset($_POST['action_id']) ? intval($_POST['action_id']) : 0;
$enabled = isset($_POST['enabled']) ? intval($_POST['enabled']) : 0;
if (!$action_id) {
wp_send_json_error(__('Invalid action ID', 'mxchat'));
}
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_intents';
$result = $wpdb->update(
$table_name,
array('enabled' => $enabled ? 1 : 0),
array('id' => $action_id),
array('%d'),
array('%d')
);
if ($result === false) {
wp_send_json_error(__('Failed to update action status', 'mxchat'));
}
wp_send_json_success(array('enabled' => (bool) $enabled));
}
/**
* AJAX handler to bulk delete actions
*/
public function mxchat_bulk_delete_actions() {
check_ajax_referer('mxchat_delete_intent_nonce', 'security');
if (!current_user_can('manage_options')) {
wp_send_json_error(__('Unauthorized', 'mxchat'));
}
$action_ids = isset($_POST['action_ids']) ? array_map('intval', (array) $_POST['action_ids']) : array();
if (empty($action_ids)) {
wp_send_json_error(__('No actions selected', 'mxchat'));
}
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_intents';
$placeholders = implode(',', array_fill(0, count($action_ids), '%d'));
$query = $wpdb->prepare("DELETE FROM $table_name WHERE id IN ($placeholders)", $action_ids);
$result = $wpdb->query($query);
if ($result === false) {
wp_send_json_error(__('Failed to delete actions', 'mxchat'));
}
// Also delete individual phrases for these intents
$phrases_table = $wpdb->prefix . 'mxchat_intent_phrases';
if ($wpdb->get_var("SHOW TABLES LIKE '$phrases_table'") === $phrases_table) {
$wpdb->query($wpdb->prepare("DELETE FROM $phrases_table WHERE intent_id IN ($placeholders)", $action_ids));
}
wp_send_json_success(array('deleted' => $result));
}
/**
* AJAX handler to add a new intent/action
*/
public function mxchat_add_intent_ajax() {
check_ajax_referer('mxchat_add_intent_nonce', 'security');
if (!current_user_can('manage_options')) {
wp_send_json_error(__('Unauthorized', 'mxchat'));
}
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_intents';
// Sanitize input
$intent_label = isset($_POST['intent_label']) ? sanitize_text_field($_POST['intent_label']) : '';
$phrases_input = isset($_POST['phrases']) ? sanitize_textarea_field($_POST['phrases']) : '';
$callback_function = isset($_POST['callback_function']) ? sanitize_text_field($_POST['callback_function']) : '';
$similarity_threshold = isset($_POST['similarity_threshold']) ? floatval($_POST['similarity_threshold']) / 100 : 0.85;
$enabled_bots = isset($_POST['enabled_bots']) ? array_map('sanitize_text_field', (array) $_POST['enabled_bots']) : array('default');
// Validate
// Check if using new individual phrases mode or legacy mode
$individual_phrases = isset($_POST['individual_phrases']) ? array_filter(array_map('sanitize_text_field', (array) $_POST['individual_phrases'])) : array();
$use_individual = !empty($individual_phrases);
// Validate required fields (phrases not required when using individual mode)
if (empty($intent_label) || empty($callback_function)) {
wp_send_json_error(__('Please fill in all required fields.', 'mxchat'));
}
if (!$use_individual && empty($phrases_input)) {
wp_send_json_error(__('Please fill in all required fields.', 'mxchat'));
}
// Ensure default bot is included
if (!in_array('default', $enabled_bots)) {
$enabled_bots[] = 'default';
}
$enabled_bots_json = json_encode($enabled_bots);
if ($use_individual) {
// New mode: individual phrases each get their own vector
// Insert the intent row with empty legacy fields
$result = $wpdb->insert(
$table_name,
array(
'intent_label' => $intent_label,
'phrases' => '',
'embedding_vector' => '',
'similarity_threshold' => $similarity_threshold,
'callback_function' => $callback_function,
'enabled' => 1,
'enabled_bots' => $enabled_bots_json,
)
);
if ($result === false) {
wp_send_json_error(__('Failed to add action to database.', 'mxchat'));
}
$intent_id = $wpdb->insert_id;
// Insert each phrase individually with its own embedding
$phrases_table = $wpdb->prefix . 'mxchat_intent_phrases';
$failed_phrases = array();
foreach ($individual_phrases as $phrase) {
$phrase = trim($phrase);
if (empty($phrase)) continue;
$embedding_vector = $this->mxchat_generate_embedding($phrase);
if (is_wp_error($embedding_vector)) {
$failed_phrases[] = $phrase;
continue;
}
$wpdb->insert(
$phrases_table,
array(
'intent_id' => $intent_id,
'phrase' => $phrase,
'embedding_vector' => maybe_serialize($embedding_vector),
)
);
}
$response = array('id' => $intent_id);
if (!empty($failed_phrases)) {
$response['failed_phrases'] = $failed_phrases;
}
wp_send_json_success($response);
} else {
// Legacy mode: combine all phrases into one embedding (backwards compatible)
$phrases_array = array_filter(array_map('trim', preg_split('/[\n,]+/', $phrases_input)));
if (empty($phrases_array)) {
wp_send_json_error(__('Please provide at least one trigger phrase.', 'mxchat'));
}
// Generate embedding (combine phrases into single string for embedding)
$embedding_vector = $this->mxchat_generate_embedding(implode(' ', $phrases_array));
if (is_wp_error($embedding_vector)) {
// Fallback: store without embedding
$serialized_vector = null;
} else {
$serialized_vector = maybe_serialize($embedding_vector);
}
// Insert
$result = $wpdb->insert(
$table_name,
array(
'intent_label' => $intent_label,
'phrases' => implode(', ', $phrases_array),
'embedding_vector' => $serialized_vector,
'similarity_threshold' => $similarity_threshold,
'callback_function' => $callback_function,
'enabled' => 1,
'enabled_bots' => $enabled_bots_json,
)
);
if ($result === false) {
wp_send_json_error(__('Failed to add action to database.', 'mxchat'));
}
wp_send_json_success(array('id' => $wpdb->insert_id));
}
}
/**
* AJAX handler to edit an existing intent/action
*/
public function mxchat_edit_intent_ajax() {
check_ajax_referer('mxchat_edit_intent', 'security');
if (!current_user_can('manage_options')) {
wp_send_json_error(__('Unauthorized', 'mxchat'));
}
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_intents';
// Sanitize input
$intent_id = isset($_POST['intent_id']) ? intval($_POST['intent_id']) : 0;
$intent_label = isset($_POST['intent_label']) ? sanitize_text_field($_POST['intent_label']) : '';
$phrases_input = isset($_POST['phrases']) ? sanitize_textarea_field($_POST['phrases']) : '';
$callback_function = isset($_POST['callback_function']) ? sanitize_text_field($_POST['callback_function']) : '';
$similarity_threshold = isset($_POST['similarity_threshold']) ? floatval($_POST['similarity_threshold']) / 100 : 0.85;
$enabled_bots = isset($_POST['enabled_bots']) ? array_map('sanitize_text_field', (array) $_POST['enabled_bots']) : array('default');
// Validate
if (!$intent_id || empty($intent_label)) {
wp_send_json_error(__('Please fill in all required fields.', 'mxchat'));
}
// Check if phrases are managed individually (empty phrases_input means individual mode)
$uses_individual_phrases = empty($phrases_input);
if ($uses_individual_phrases) {
// Individual phrase mode: only update non-phrase fields, skip embedding regeneration
$update_data = array(
'intent_label' => $intent_label,
'similarity_threshold' => $similarity_threshold,
'callback_function' => $callback_function,
'enabled_bots' => json_encode($enabled_bots),
);
} else {
// Legacy mode: process phrases and regenerate embedding (backwards compatible for add-ons)
$phrases_array = array_filter(array_map('trim', preg_split('/[\n,]+/', $phrases_input)));
if (empty($phrases_array)) {
wp_send_json_error(__('Please provide at least one trigger phrase.', 'mxchat'));
}
// Generate new embedding (combine phrases into single string for embedding)
$embedding_vector = $this->mxchat_generate_embedding(implode(' ', $phrases_array));
if (is_wp_error($embedding_vector)) {
// Keep existing embedding
$update_data = array(
'intent_label' => $intent_label,
'phrases' => implode(', ', $phrases_array),
'similarity_threshold' => $similarity_threshold,
'callback_function' => $callback_function,
'enabled_bots' => json_encode($enabled_bots),
);
} else {
$serialized_vector = maybe_serialize($embedding_vector);
$update_data = array(
'intent_label' => $intent_label,
'phrases' => implode(', ', $phrases_array),
'embedding_vector' => $serialized_vector,
'similarity_threshold' => $similarity_threshold,
'callback_function' => $callback_function,
'enabled_bots' => json_encode($enabled_bots),
);
}
}
// Ensure default bot is included
if (!in_array('default', $enabled_bots)) {
$enabled_bots[] = 'default';
}
$update_data['enabled_bots'] = json_encode($enabled_bots);
$result = $wpdb->update(
$table_name,
$update_data,
array('id' => $intent_id),
null,
array('%d')
);
if ($result === false) {
wp_send_json_error(__('Failed to update action.', 'mxchat'));
}
wp_send_json_success(array('updated' => true));
}
/**
* AJAX handler to delete a single intent/action
*/
public function mxchat_delete_intent_ajax() {
check_ajax_referer('mxchat_delete_intent_nonce', 'security');
if (!current_user_can('manage_options')) {
wp_send_json_error(__('Unauthorized', 'mxchat'));
}
$intent_id = isset($_POST['intent_id']) ? intval($_POST['intent_id']) : 0;
if (!$intent_id) {
wp_send_json_error(__('Invalid action ID', 'mxchat'));
}
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_intents';
$result = $wpdb->delete($table_name, array('id' => $intent_id), array('%d'));
if ($result === false) {
wp_send_json_error(__('Failed to delete action', 'mxchat'));
}
// Also delete individual phrases for this intent
$phrases_table = $wpdb->prefix . 'mxchat_intent_phrases';
if ($wpdb->get_var("SHOW TABLES LIKE '$phrases_table'") === $phrases_table) {
$wpdb->delete($phrases_table, array('intent_id' => $intent_id), array('%d'));
}
wp_send_json_success(array('deleted' => true));
}
/**
* AJAX handler to add a single phrase with its own embedding to an intent
*/
public function mxchat_add_phrase_ajax() {
check_ajax_referer('mxchat_add_phrase_nonce', 'security');
if (!current_user_can('manage_options')) {
wp_send_json_error(__('Unauthorized', 'mxchat'));
}
$intent_id = isset($_POST['intent_id']) ? intval($_POST['intent_id']) : 0;
$phrase = isset($_POST['phrase']) ? sanitize_text_field($_POST['phrase']) : '';
if (!$intent_id || empty($phrase)) {
wp_send_json_error(__('Please provide an intent ID and phrase.', 'mxchat'));
}
// Verify the intent exists
global $wpdb;
$intents_table = $wpdb->prefix . 'mxchat_intents';
$intent = $wpdb->get_row($wpdb->prepare("SELECT id FROM $intents_table WHERE id = %d", $intent_id));
if (!$intent) {
wp_send_json_error(__('Action not found.', 'mxchat'));
}
// Generate embedding for this single phrase
$embedding_vector = $this->mxchat_generate_embedding($phrase);
if (is_wp_error($embedding_vector)) {
wp_send_json_error(__('Failed to generate embedding: ', 'mxchat') . $embedding_vector->get_error_message());
}
$phrases_table = $wpdb->prefix . 'mxchat_intent_phrases';
$result = $wpdb->insert(
$phrases_table,
array(
'intent_id' => $intent_id,
'phrase' => $phrase,
'embedding_vector' => maybe_serialize($embedding_vector),
)
);
if ($result === false) {
wp_send_json_error(__('Failed to add phrase.', 'mxchat'));
}
wp_send_json_success(array('id' => $wpdb->insert_id, 'phrase' => $phrase));
}
/**
* AJAX handler to delete a single phrase from wp_mxchat_intent_phrases
*/
public function mxchat_delete_phrase_ajax() {
check_ajax_referer('mxchat_delete_phrase_nonce', 'security');
if (!current_user_can('manage_options')) {
wp_send_json_error(__('Unauthorized', 'mxchat'));
}
$phrase_id = isset($_POST['phrase_id']) ? intval($_POST['phrase_id']) : 0;
if (!$phrase_id) {
wp_send_json_error(__('Invalid phrase ID.', 'mxchat'));
}
global $wpdb;
$phrases_table = $wpdb->prefix . 'mxchat_intent_phrases';
$result = $wpdb->delete($phrases_table, array('id' => $phrase_id), array('%d'));
if ($result === false) {
wp_send_json_error(__('Failed to delete phrase.', 'mxchat'));
}
wp_send_json_success(array('deleted' => true));
}
/**
* AJAX handler to fetch individual phrases for an intent
*/
public function mxchat_get_phrases_ajax() {
check_ajax_referer('mxchat_get_phrases_nonce', 'security');
if (!current_user_can('manage_options')) {
wp_send_json_error(__('Unauthorized', 'mxchat'));
}
$intent_id = isset($_POST['intent_id']) ? intval($_POST['intent_id']) : 0;
if (!$intent_id) {
wp_send_json_error(__('Invalid intent ID.', 'mxchat'));
}
global $wpdb;
$phrases_table = $wpdb->prefix . 'mxchat_intent_phrases';
$phrases = array();
if ($wpdb->get_var("SHOW TABLES LIKE '$phrases_table'") === $phrases_table) {
$phrases = $wpdb->get_results($wpdb->prepare(
"SELECT id, phrase, created_at FROM $phrases_table WHERE intent_id = %d ORDER BY created_at ASC",
$intent_id
));
}
wp_send_json_success(array('phrases' => $phrases));
}
/**
* AJAX handler to clear legacy phrases and embedding from the main intents table
*/
public function mxchat_delete_legacy_phrases_ajax() {
check_ajax_referer('mxchat_delete_legacy_nonce', 'security');
if (!current_user_can('manage_options')) {
wp_send_json_error(__('Unauthorized', 'mxchat'));
}
$intent_id = isset($_POST['intent_id']) ? intval($_POST['intent_id']) : 0;
if (!$intent_id) {
wp_send_json_error(__('Invalid intent ID.', 'mxchat'));
}
global $wpdb;
$table_name = $wpdb->prefix . 'mxchat_intents';
$result = $wpdb->update(
$table_name,
array('phrases' => '', 'embedding_vector' => ''),
array('id' => $intent_id),
array('%s', '%s'),
array('%d')
);
if ($result === false) {
wp_send_json_error(__('Failed to clear legacy phrases.', 'mxchat'));
}
wp_send_json_success(array('cleared' => true));
}
/**
* Enhanced get_available_callbacks function with form action exclusion
*
* @param bool $grouped Whether to return callbacks grouped by category
* @param bool $include_all Whether to include all potential actions (even if add-on not installed)
* @return array Callbacks data with icons, descriptions and availability status
*/
private function mxchat_get_available_callbacks($grouped = false, $include_all = true) {
// Load WordPress plugin functions if needed
if (!function_exists('get_plugins')) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
}
// Get active plugins
$active_plugins = get_option('active_plugins', array());
// Functions to exclude from the action selector only if Pro is activated
// If user doesn't have Pro, show these so they can see what they're missing
$excluded_when_pro_active_functions = array(
'mxchat_handle_form_collection' // Forms add-on action
);
// Always excluded functions (regardless of Pro status)
$always_excluded_functions = array();
// Combine exclusion lists based on Pro activation status
$excluded_functions = $always_excluded_functions;
if ($this->is_activated) {
// Only exclude add-on managed functions if Pro is active
$excluded_functions = array_merge($excluded_functions, $excluded_when_pro_active_functions);
}
// Define add-on plugin files and their corresponding action functions
$addon_plugins = array(
'mxchat-woo/mxchat-woo.php' => array(
'functions' => array(
'mxchat_handle_product_recommendations',
'mxchat_handle_order_history',
'mxchat_show_product_card',
'mxchat_add_to_cart',
'mxchat_checkout_redirect',
'mxchat_handle_featured_products'
),
'name' => __('WooCommerce Add-on', 'mxchat'),
'pro_required' => true
),
'mxchat-perplexity/mxchat-perplexity.php' => array(
'functions' => array('mxchat_perplexity_research'),
'name' => __('Perplexity Add-on', 'mxchat'),
'pro_required' => true
),
'mxchat-forms/mxchat-forms.php' => array(
'functions' => array('mxchat_handle_form_collection'),
'name' => __('Forms Add-on', 'mxchat'),
'pro_required' => true
),
// Add other add-ons and their functions here
);
// Get the functions that are provided by active add-ons
$addon_provided_functions = array();
$addon_function_mapping = array(); // Maps functions to their add-on info
// Check which add-ons are active
foreach ($addon_plugins as $plugin_file => $addon_info) {
$is_active = in_array($plugin_file, $active_plugins);
// For each function in this addon
foreach ($addon_info['functions'] as $function) {
// Consider a function installed only if:
// 1. The add-on is active AND
// 2. Either it doesn't require Pro OR Pro is activated
$is_installed = $is_active && (!$addon_info['pro_required'] || $this->is_activated);
// If the add-on is installed, mark this function as provided by an add-on
if ($is_installed) {
$addon_provided_functions[] = $function;
}
// Store addon info for this function regardless of installation status
$addon_function_mapping[$function] = array(
'addon' => basename(dirname($plugin_file)),
'addon_name' => $addon_info['name'],
'pro_required' => $addon_info['pro_required'],
'is_active' => $is_active,
'is_installed' => $is_installed
);
}
}
// Core callbacks - always available in the base plugin
$core_callbacks = array(
'mxchat_handle_email_capture' => array(
'label' => __('Loops Email Capture', 'mxchat'),
'pro_only' => false,
'group' => __('Customer Engagement', 'mxchat'),
'icon' => 'email-alt',
'description' => __('Collect visitor emails for your mailing list in Loops', 'mxchat'),
'addon' => false, // Not from an add-on
'installed' => true // Always installed with base plugin
),
'mxchat_handle_search_request' => array(
'label' => __('Brave Web Search', 'mxchat'),
'pro_only' => false,
'group' => __('Search Features', 'mxchat'),
'icon' => 'search',
'description' => __('Let users search the web directly from the chat (requires a Brave Search API key)', 'mxchat'),
'addon' => false,
'installed' => true
),
'mxchat_handle_image_search_request' => array(
'label' => __('Brave Image Search', 'mxchat'),
'pro_only' => false,
'group' => __('Search Features', 'mxchat'),
'icon' => 'format-image',
'description' => __('Search and display images in the chat conversation (requires a Brave Search API key)', 'mxchat'),
'addon' => false,
'installed' => true
),
// Pro core features - check is_activated property
'mxchat_generate_image' => array(
'label' => __('Generate Image (OpenAI)', 'mxchat'),
'pro_only' => false,
'group' => __('Other Features', 'mxchat'),
'icon' => 'art',
'description' => __('Create images with GPT Image from OpenAI (requires OpenAI API key)', 'mxchat'),
'addon' => false,
'installed' => true
),
'mxchat_generate_gemini_image' => array(
'label' => __('Generate Image (Gemini)', 'mxchat'),
'pro_only' => false,
'group' => __('Other Features', 'mxchat'),
'icon' => 'art',
'description' => __('Create images with Imagen from Google (requires Gemini API key)', 'mxchat'),
'addon' => false,
'installed' => true
),
'mxchat_handle_pdf_discussion' => array(
'label' => __('Chat with PDF', 'mxchat'),
'pro_only' => false,
'group' => __('Other Features', 'mxchat'),
'icon' => 'media-document',
'description' => __('Answer questions about uploaded PDF documents', 'mxchat'),
'addon' => false,
'installed' => true
),
'mxchat_live_agent_handover' => array(
'label' => __('Slack Live Agent', 'mxchat'),
'pro_only' => false,
'group' => __('Customer Engagement', 'mxchat'),
'icon' => 'admin-users',
'description' => __('Transfer conversation to a human support agent on Slack', 'mxchat'),
'addon' => false,
'installed' => true
),
'mxchat_telegram_live_agent_handover' => array(
'label' => __('Telegram Live Agent', 'mxchat'),
'pro_only' => false,
'group' => __('Customer Engagement', 'mxchat'),
'icon' => 'format-chat',
'description' => __('Transfer conversation to a human support agent on Telegram', 'mxchat'),
'addon' => false,
'installed' => true
),
'mxchat_handle_switch_to_chatbot_intent' => array(
'label' => __('Back to Chatbot', 'mxchat'),
'pro_only' => false,
'group' => __('Customer Engagement', 'mxchat'),
'icon' => 'backup',
'description' => __('Return from live agent mode to AI chatbot', 'mxchat'),
'addon' => false,
'installed' => true
),
);
// Add-on callbacks with placeholders - only include if the add-on is NOT active
// These are promotional/informational only — not selectable as real actions
$addon_callbacks = array(
// WooCommerce Add-on
'mxchat_handle_product_recommendations' => array(
'label' => __('Product Recommendations', 'mxchat'),
'pro_only' => false,
'addon_promo' => true,
'group' => __('WooCommerce Features', 'mxchat'),
'icon' => 'cart',
'description' => __('Suggest products based on customer preferences', 'mxchat'),
),
'mxchat_handle_order_history' => array(
'label' => __('Order History', 'mxchat'),
'pro_only' => false,
'addon_promo' => true,
'group' => __('WooCommerce Features', 'mxchat'),
'icon' => 'clipboard',
'description' => __('Allow customers to check their order status', 'mxchat'),
),
'mxchat_show_product_card' => array(
'label' => __('Show Product Card', 'mxchat'),
'pro_only' => false,
'addon_promo' => true,
'group' => __('WooCommerce Features', 'mxchat'),
'icon' => 'products',
'description' => __('Display product information in the chat', 'mxchat'),
),
'mxchat_add_to_cart' => array(
'label' => __('Add to Cart', 'mxchat'),
'pro_only' => false,
'addon_promo' => true,
'group' => __('WooCommerce Features', 'mxchat'),
'icon' => 'plus-alt',
'description' => __('Add products to cart directly from chat', 'mxchat'),
),
'mxchat_checkout_redirect' => array(
'label' => __('Proceed to Checkout', 'mxchat'),
'pro_only' => false,
'addon_promo' => true,
'group' => __('WooCommerce Features', 'mxchat'),
'icon' => 'arrow-right-alt',
'description' => __('Redirect customer to checkout page', 'mxchat'),
),
'mxchat_handle_featured_products' => array(
'label' => __('Featured Products Showcase', 'mxchat'),
'pro_only' => false,
'addon_promo' => true,
'group' => __('WooCommerce Features', 'mxchat'),
'icon' => 'star-filled',
'description' => __('Display a curated selection of products with an AI-generated message', 'mxchat'),
),
// Perplexity Add-on
'mxchat_perplexity_research' => array(
'label' => __('Perplexity Research', 'mxchat'),
'pro_only' => false,
'addon_promo' => true,
'group' => __('Search Features', 'mxchat'),
'icon' => 'book-alt',
'description' => __('Allows the chatbot to search the web for accurate, up-to-date answers', 'mxchat'),
),
// Forms Add-on
'mxchat_handle_form_collection' => array(
'label' => __('Form Collection', 'mxchat'),
'pro_only' => false,
'addon_promo' => true,
'group' => __('Form Features', 'mxchat'),
'icon' => 'feedback',
'description' => __('Collect user information through custom forms in chat', 'mxchat'),
),
);
// Enhance add-on callbacks with installation status and addon info
foreach ($addon_callbacks as $function => $data) {
if (isset($addon_function_mapping[$function])) {
$addon_info = $addon_function_mapping[$function];
$addon_callbacks[$function]['addon'] = $addon_info['addon'];
$addon_callbacks[$function]['addon_name'] = $addon_info['addon_name'];
$addon_callbacks[$function]['installed'] = $addon_info['is_installed'];
// Set pro_only based on add-on configuration
$addon_callbacks[$function]['pro_only'] = $addon_info['pro_required'];
} else {
$addon_callbacks[$function]['addon'] = 'unknown';
$addon_callbacks[$function]['addon_name'] = __('Unknown Add-on', 'mxchat');
$addon_callbacks[$function]['installed'] = false;
}
}
// Initialize callbacks with core features
$callbacks = $core_callbacks;
// Get callbacks from active add-ons
$active_addon_callbacks = apply_filters('mxchat_available_callbacks', array());
// Add placeholder callbacks only for add-ons that aren't active
if ($include_all) {
foreach ($addon_callbacks as $function => $data) {
// Skip placeholders for functions provided by active add-ons
if (in_array($function, $addon_provided_functions)) {
continue;
}
// Skip excluded functions
if (in_array($function, $excluded_functions)) {
continue;
}
// Add the placeholder
$callbacks[$function] = $data;
}
}
// Add callbacks from active add-ons (will override placeholders)
foreach ($active_addon_callbacks as $function => $data) {
// Skip excluded functions
if (in_array($function, $excluded_functions)) {
continue;
}
// Always include callbacks from add-ons
$callbacks[$function] = $data;
// Ensure they have the proper add-on info
if (isset($addon_function_mapping[$function])) {
$addon_info = $addon_function_mapping[$function];
$callbacks[$function]['addon'] = $addon_info['addon'];
$callbacks[$function]['addon_name'] = $addon_info['addon_name'];
$callbacks[$function]['installed'] = $addon_info['is_installed'];
$callbacks[$function]['pro_only'] = $addon_info['pro_required'];
}
}
// Just before returning callbacks, sort them to prioritize free features
if (!$grouped) {
// Create temporary arrays for sorting
$free_callbacks = array();
$pro_callbacks = array();
// Split callbacks into free and pro
foreach ($callbacks as $key => $data) {
if (isset($data['pro_only']) && $data['pro_only']) {
$pro_callbacks[$key] = $data;
} else {
$free_callbacks[$key] = $data;
}
}
// Merge with free callbacks first
$callbacks = array_merge($free_callbacks, $pro_callbacks);
}
// Return grouped structure if requested
if ($grouped) {
$grouped_callbacks = array();
foreach ($callbacks as $key => $data) {
$group_label = isset($data['group']) ? $data['group'] : __('Other Features', 'mxchat');
// Ensure we carry forward all the new fields in grouped mode
$callback_data = array(
'label' => $data['label'],
'pro_only' => isset($data['pro_only']) ? $data['pro_only'] : false,
'icon' => isset($data['icon']) ? $data['icon'] : 'admin-generic',
'description' => isset($data['description']) ? $data['description'] : __('Custom action for your chatbot', 'mxchat'),
'addon' => isset($data['addon']) ? $data['addon'] : false,
'addon_name' => isset($data['addon_name']) ? $data['addon_name'] : '',
'installed' => isset($data['installed']) ? $data['installed'] : true
);
$grouped_callbacks[$group_label][$key] = $callback_data;
}
// Sort within each group to prioritize free features
foreach ($grouped_callbacks as $group => $items) {
$free_items = array();
$pro_items = array();
foreach ($items as $key => $data) {
if (isset($data['pro_only']) && $data['pro_only']) {
$pro_items[$key] = $data;
} else {
$free_items[$key] = $data;
}
}
$grouped_callbacks[$group] = array_merge($free_items, $pro_items);
}
return $grouped_callbacks;
}
return $callbacks;
}
public function mxchat_page_init() {
register_setting(
'mxchat_option_group',
'mxchat_options',
array($this, 'mxchat_sanitize')
);
register_setting(
'mxchat_option_group',
'mxchat_similarity_threshold',
array(
'type' => 'number',
'sanitize_callback' => function($value) {
$value = absint($value);
return min(max($value, 20), 95);
},
'default' => 80,
)
);
// Chatbot Settings Section
add_settings_section(
'mxchat_chatbot_section',
esc_html__('Chatbot Settings', 'mxchat'),
null,
'mxchat-chatbot'
);
// API Keys Settings Section
add_settings_section(
'mxchat_api_keys_section',
esc_html__('API Keys', 'mxchat'),
array($this, 'mxchat_api_keys_section_callback'),
'mxchat-api-keys'
);
// OpenAI API Key
add_settings_field(
'api_key',
esc_html__('OpenAI API Key', 'mxchat'),
array($this, 'api_key_callback'),
'mxchat-api-keys',
'mxchat_api_keys_section'
);
// X.AI API Key
add_settings_field(
'xai_api_key',
esc_html__('X.AI API Key', 'mxchat'),
array($this, 'xai_api_key_callback'),
'mxchat-api-keys',
'mxchat_api_keys_section'
);
// Claude API Key
add_settings_field(
'claude_api_key',
esc_html__('Claude API Key', 'mxchat'),
array($this, 'claude_api_key_callback'),
'mxchat-api-keys',
'mxchat_api_keys_section'
);
// DeepSeek API Key
add_settings_field(
'deepseek_api_key',
esc_html__('DeepSeek API Key', 'mxchat'),
array($this, 'deepseek_api_key_callback'),
'mxchat-api-keys',
'mxchat_api_keys_section'
);
// Google Gemini API Key
add_settings_field(
'gemini_api_key',
esc_html__('Google Gemini API Key', 'mxchat'),
array($this, 'gemini_api_key_callback'),
'mxchat-api-keys',
'mxchat_api_keys_section'
);
// Voyage AI API Key
add_settings_field(
'voyage_api_key',
esc_html__('Voyage AI API Key', 'mxchat'),
array($this, 'voyage_api_key_callback'),
'mxchat-api-keys',
'mxchat_api_keys_section'
);
// OpenRouter API Key
add_settings_field(
'openrouter_api_key',
esc_html__('OpenRouter API Key', 'mxchat'),
array($this, 'openrouter_api_key_callback'),
'mxchat-api-keys',
'mxchat_api_keys_section'
);
// Custom (OpenAI-compatible) Provider — for Ollama, LM Studio, vLLM, llama.cpp, Azure OpenAI, etc.
add_settings_field(
'custom_provider',
esc_html__('Custom Provider (OpenAI-compatible)', 'mxchat'),
array($this, 'custom_provider_callback'),
'mxchat-api-keys',
'mxchat_api_keys_section'
);
// Loops API Key
add_settings_field(
'loops_api_key',
esc_html__('Loops API Key', 'mxchat'),
array($this, 'mxchat_loops_api_key_callback'),
'mxchat-api-keys',
'mxchat_api_keys_section'
);
// Brave Search API Key
add_settings_field(
'brave_api_key',
__('Brave API Key', 'mxchat'),
array($this, 'mxchat_brave_api_key_callback'),
'mxchat-api-keys',
'mxchat_api_keys_section'
);
// Similarity Threshold Slider
add_settings_field(
'similarity_threshold', // Field ID
esc_html__('Similarity Threshold', 'mxchat'), // Field title
array($this, 'mxchat_similarity_threshold_callback'), // Callback function
'mxchat-chatbot', // Page
'mxchat_chatbot_section' // Section
);
// RAG Sources Limit Slider
add_settings_field(
'rag_sources_limit', // Field ID
esc_html__('RAG Sources Limit', 'mxchat'), // Field title
array($this, 'mxchat_rag_sources_limit_callback'), // Callback function
'mxchat-chatbot', // Page
'mxchat_chatbot_section' // Section
);
// RAG Chunks Limit Slider
add_settings_field(
'rag_chunks_limit', // Field ID
esc_html__('RAG Chunks Limit', 'mxchat'), // Field title
array($this, 'mxchat_rag_chunks_limit_callback'), // Callback function
'mxchat-chatbot', // Page
'mxchat_chatbot_section' // Section
);
add_settings_field(
'append_to_body',
esc_html__('Auto-Display Chatbot', 'mxchat'),
array($this, 'mxchat_append_to_body_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'contextual_awareness_toggle',
esc_html__('Contextual Awareness', 'mxchat'),
array($this, 'mxchat_contextual_awareness_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'citation_links_toggle',
esc_html__('Citation Links', 'mxchat'),
array($this, 'mxchat_citation_links_toggle_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
// Satisfaction rating toggle (plan-a5b006).
add_settings_field(
'satisfaction_rating_enabled',
esc_html__('Satisfaction Rating Prompt', 'mxchat'),
array($this, 'mxchat_satisfaction_rating_toggle_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
// Satisfaction rating customization (plan-141a12, plan-29caac):
// the 5 customization fields are now inline-rendered inside
// mxchat_satisfaction_rating_toggle_callback's sub-options wrapper.
add_settings_field(
'enable_streaming_toggle',
esc_html__('Enable Streaming', 'mxchat'),
array($this, 'enable_streaming_toggle_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section', // Same section as your working toggle
array(
'class' => 'mxchat-setting-row streaming-setting',
'style' => 'display: none;' // Hidden by default, shown when OpenAI/Claude selected
)
);
add_settings_field(
'model',
esc_html__('Chat Model', 'mxchat'),
array($this, 'mxchat_model_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'embedding_model',
esc_html__('Embedding Model', 'mxchat'),
array($this, 'embedding_model_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'system_prompt_instructions',
esc_html__('AI Instructions (Behavior)', 'mxchat'),
array($this, 'system_prompt_instructions_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'top_bar_title',
esc_html__('Top Bar Title', 'mxchat'),
array($this, 'mxchat_top_bar_title_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'ai_agent_text',
esc_html__('AI Agent Text', 'mxchat'),
array($this, 'mxchat_ai_agent_text_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'enable_email_block',
esc_html__('Require Email To Chat', 'mxchat'),
array($this, 'enable_email_block_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'email_blocker_header_content',
esc_html__('Require Email Chat Content', 'mxchat'),
array($this, 'email_blocker_header_content_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'email_blocker_button_text',
esc_html__('Require Email Chat Button Text', 'mxchat'),
[$this, 'email_blocker_button_text_callback'],
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'enable_name_field',
esc_html__('Require Name Field', 'mxchat'),
array($this, 'enable_name_field_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'name_field_placeholder',
esc_html__('Name Field Placeholder', 'mxchat'),
array($this, 'name_field_placeholder_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'intro_message',
esc_html__('Introductory Message', 'mxchat'),
array($this, 'mxchat_intro_message_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'input_copy',
esc_html__('Input Copy', 'mxchat'),
array($this, 'mxchat_input_copy_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'pre_chat_message',
esc_html__('Chat Teaser Pop-up', 'mxchat'),
array($this, 'mxchat_pre_chat_message_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'privacy_toggle',
esc_html__('Toggle Privacy Notice', 'mxchat'),
array($this, 'mxchat_privacy_toggle_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'complianz_toggle',
esc_html__('Enable Complianz', 'mxchat'),
array($this, 'mxchat_complianz_toggle_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'link_target_toggle',
esc_html__('Open Links in a New Tab', 'mxchat'),
array($this, 'mxchat_link_target_toggle_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'chat_persistence_toggle',
esc_html__('Enable Chat Persistence', 'mxchat'),
array($this, 'mxchat_chat_persistence_toggle_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'print_button_enabled',
esc_html__('Show Download Transcript Button', 'mxchat'),
array($this, 'mxchat_print_button_toggle_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'reset_chat_enabled',
esc_html__('Show Start-New-Chat Button', 'mxchat'),
array($this, 'mxchat_reset_chat_toggle_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'reset_chat_label',
esc_html__('Start-New-Chat Button Label', 'mxchat'),
array($this, 'mxchat_reset_chat_label_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'popular_question_1',
esc_html__('Quick Question 1', 'mxchat'),
array($this, 'mxchat_popular_question_1_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'popular_question_2',
esc_html__('Quick Question 2', 'mxchat'),
array($this, 'mxchat_popular_question_2_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'popular_question_3',
esc_html__('Quick Question 3', 'mxchat'),
array($this, 'mxchat_popular_question_3_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'additional_popular_questions',
esc_html__('Additional Quick Questions', 'mxchat'),
array($this, 'mxchat_additional_popular_questions_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
add_settings_field(
'rate_limits',
__('Rate Limits Settings', 'mxchat'),
array($this, 'mxchat_rate_limits_callback'),
'mxchat-chatbot',
'mxchat_chatbot_section'
);
// Loops Settings Section
add_settings_section(
'mxchat_loops_section',
esc_html__('Loops Settings', 'mxchat'),
null,
'mxchat-embed'
);
// Loops Settings Fields (API Key moved to API Keys tab)
add_settings_field(
'loops_mailing_list',
esc_html__('Loops Mailing List', 'mxchat'),
array($this, 'mxchat_loops_mailing_list_callback'),
'mxchat-embed',
'mxchat_loops_section'
);
add_settings_field(
'triggered_phrase_response',
esc_html__('Triggered Phrase Response', 'mxchat'),
array($this, 'mxchat_triggered_phrase_response_callback'),
'mxchat-embed',
'mxchat_loops_section'
);
add_settings_field(
'email_capture_response',
esc_html__('Email Capture Response', 'mxchat'),
array($this, 'mxchat_email_capture_response_callback'),
'mxchat-embed',
'mxchat_loops_section'
);
// Brave Search Settings Fields
add_settings_section(
'mxchat_brave_section',
__('Brave Search Settings', 'mxchat'),
array($this, 'mxchat_brave_section_callback'),
'mxchat-embed'
);
// Brave API Key moved to API Keys tab
add_settings_field(
'brave_image_count',
__('Number of Images to Return', 'mxchat'),
array($this, 'mxchat_brave_image_count_callback'),
'mxchat-embed',
'mxchat_brave_section'
);
add_settings_field(
'brave_safe_search',
__('Safe Search', 'mxchat'),
array($this, 'mxchat_brave_safe_search_callback'),
'mxchat-embed',
'mxchat_brave_section'
);
add_settings_field(
'brave_news_count',
__('Number of News Articles', 'mxchat'),
array($this, 'mxchat_brave_news_count_callback'),
'mxchat-embed',
'mxchat_brave_section'
);
add_settings_field(
'brave_country',
__('Country', 'mxchat'),
array($this, 'mxchat_brave_country_callback'),
'mxchat-embed',
'mxchat_brave_section'
);
add_settings_field(
'brave_language',
__('Language', 'mxchat'),
array($this, 'mxchat_brave_language_callback'),
'mxchat-embed',
'mxchat_brave_section'
);
// Chat with PDF Intent Settings Fields
add_settings_section(
'mxchat_pdf_intent_section',
__('Toolbar Settings & Intents', 'mxchat'),
array($this, 'mxchat_pdf_intent_section_callback'),
'mxchat-embed'
);
add_settings_field(
'chat_toolbar_toggle',
__('Show Chat Toolbar', 'mxchat'),
array($this, 'mxchat_chat_toolbar_toggle_callback'),
'mxchat-embed',
'mxchat_pdf_intent_section'
);
// PDF Upload Button Toggle
add_settings_field(
'show_pdf_upload_button',
__('Show PDF Upload Button', 'mxchat'),
array($this, 'mxchat_show_pdf_upload_button_callback'),
'mxchat-embed',
'mxchat_pdf_intent_section'
);
// Word Upload Button Toggle
add_settings_field(
'show_word_upload_button',
__('Show Word Upload Button', 'mxchat'),
array($this, 'mxchat_show_word_upload_button_callback'),
'mxchat-embed',
'mxchat_pdf_intent_section'
);
add_settings_field(
'pdf_intent_trigger_text',
__('Intent Trigger Text', 'mxchat'),
array($this, 'mxchat_pdf_intent_trigger_text_callback'),
'mxchat-embed',
'mxchat_pdf_intent_section'
);
add_settings_field(
'pdf_intent_success_text',
__('Success Text', 'mxchat'),
array($this, 'mxchat_pdf_intent_success_text_callback'),
'mxchat-embed',
'mxchat_pdf_intent_section'
);
add_settings_field(
'pdf_intent_error_text',
__('Error Text', 'mxchat'),
array($this, 'mxchat_pdf_intent_error_text_callback'),
'mxchat-embed',
'mxchat_pdf_intent_section'
);
// Add PDF Maximum Pages Field
add_settings_field(
'pdf_max_pages',
__('Maximum Document Pages', 'mxchat'),
array($this, 'mxchat_pdf_max_pages_callback'),
'mxchat-embed',
'mxchat_pdf_intent_section'
);
// Live Agent Settings Fields
add_settings_section(
'mxchat_live_agent_section',
__('Live Agent Settings', 'mxchat'),
array($this, 'mxchat_live_agent_section_callback'),
'mxchat-embed'
);
// Live Agent Status Fields (add at top of live agent settings)
add_settings_field(
'live_agent_status',
__('Live Agent Status', 'mxchat'),
array($this, 'mxchat_live_agent_status_callback'),
'mxchat-embed',
'mxchat_live_agent_section'
);
// Slack availability schedule (plans 8ccaa2 + 99d7a4). Each handoff channel
// owns an independent schedule rendered under its own Integrations tab; this
// one governs Slack only. Same callback as Telegram's, parameterized.
add_settings_field(
'live_agent_schedule_slack',
__('Availability Schedule', 'mxchat'),
array($this, 'mxchat_live_agent_schedule_callback'),
'mxchat-embed',
'mxchat_live_agent_section',
array('channel' => 'slack')
);
add_settings_field(
'live_agent_notification_message',
__('Notification Message', 'mxchat'),
array($this, 'mxchat_live_agent_notification_message_callback'),
'mxchat-embed',
'mxchat_live_agent_section'
);
add_settings_field(
'live_agent_away_message',
__('Away Message', 'mxchat'),
array($this, 'mxchat_live_agent_away_message_callback'),
'mxchat-embed',
'mxchat_live_agent_section'
);
add_settings_field(
'live_agent_user_ids',
__('Slack Agent User IDs', 'mxchat'),
array($this, 'mxchat_live_agent_user_ids_callback'),
'mxchat-embed',
'mxchat_live_agent_section'
);
// Shared handoff channel (plan 9f7756): route every handoff into one
// pre-existing channel as threads instead of creating chat-* channels.
add_settings_field(
'live_agent_shared_channel',
__('Shared Handoff Channel', 'mxchat'),
array($this, 'mxchat_live_agent_shared_channel_callback'),
'mxchat-embed',
'mxchat_live_agent_section'
);
// Auto-archive per-conversation chat- channels on !endchat (plan 7458a7).
// Default OFF; never touches the shared handoff channel.
add_settings_field(
'live_agent_archive_on_end_toggle',
__('Archive Channel When Chat Ends', 'mxchat'),
array($this, 'mxchat_live_agent_archive_on_end_callback'),
'mxchat-embed',
'mxchat_live_agent_section'
);
add_settings_field(
'live_agent_webhook_url',
__('Slack Webhook URL', 'mxchat'),
array($this, 'mxchat_live_agent_webhook_url_callback'),
'mxchat-embed',
'mxchat_live_agent_section'
);
add_settings_field(
'live_agent_secret_key',
__('Slack Secret Key', 'mxchat'),
array($this, 'mxchat_live_agent_secret_key_callback'),
'mxchat-embed',
'mxchat_live_agent_section'
);
// Live Agent Integration Fields
add_settings_field(
'live_agent_bot_token',
__('Slack Bot OAuth Token', 'mxchat'),
array($this, 'mxchat_live_agent_bot_token_callback'),
'mxchat-embed',
'mxchat_live_agent_section'
);
// Telegram Integration Section
add_settings_section(
'mxchat_telegram_section',
__('Telegram Settings', 'mxchat'),
array($this, 'mxchat_telegram_section_callback'),
'mxchat-embed'
);
add_settings_field(
'telegram_status',
__('Live Agent Status', 'mxchat'),
array($this, 'mxchat_telegram_status_callback'),
'mxchat-embed',
'mxchat_telegram_section'
);
// Telegram availability schedule (plan 99d7a4) — independent of Slack's,
// rendered right under the Telegram status toggle it extends.
add_settings_field(
'live_agent_schedule_telegram',
__('Availability Schedule', 'mxchat'),
array($this, 'mxchat_live_agent_schedule_callback'),
'mxchat-embed',
'mxchat_telegram_section',
array('channel' => 'telegram')
);
add_settings_field(
'telegram_notification_message',
__('Notification Message', 'mxchat'),
array($this, 'mxchat_telegram_notification_message_callback'),
'mxchat-embed',
'mxchat_telegram_section'
);
add_settings_field(
'telegram_away_message',
__('Away Message', 'mxchat'),
array($this, 'mxchat_telegram_away_message_callback'),
'mxchat-embed',
'mxchat_telegram_section'
);
add_settings_field(
'telegram_bot_token',
__('Telegram Bot Token', 'mxchat'),
array($this, 'mxchat_telegram_bot_token_callback'),
'mxchat-embed',
'mxchat_telegram_section'
);
add_settings_field(
'telegram_group_id',
__('Telegram Group ID', 'mxchat'),
array($this, 'mxchat_telegram_group_id_callback'),
'mxchat-embed',
'mxchat_telegram_section'
);
add_settings_field(
'telegram_webhook_secret',
__('Webhook Secret Token', 'mxchat'),
array($this, 'mxchat_telegram_webhook_secret_callback'),
'mxchat-embed',
'mxchat_telegram_section'
);
// General Settings Section
add_settings_section(
'mxchat_general_section',
esc_html__('YouTube Tutorials', 'mxchat'),
null,
'mxchat-general'
);
}
public function mxchat_prompts_page_init() {
register_setting(
'mxchat_prompts_options',
'mxchat_prompts_options',
array(
'type' => 'array',
'description' => __('MXChat Knowledge Base Settings', 'mxchat'),
'default' => array(
'mxchat_auto_sync_posts' => 0,
'mxchat_auto_sync_pages' => 0,
'mxchat_use_pinecone' => 0,
'mxchat_pinecone_api_key' => '',
'mxchat_pinecone_environment' => '',
'mxchat_pinecone_index' => '',
'mxchat_pinecone_host' => '',
),
'sanitize_callback' => array($this, 'sanitize_prompts_options'),
)
);
add_action('admin_notices', array($this, 'sync_settings_notice'));
}
public function mxchat_transcripts_page_init() {
register_setting(
'mxchat_transcripts_options',
'mxchat_transcripts_options',
array(
'type' => 'array',
'description' => __('MXChat Transcripts Notification Settings', 'mxchat'),
'default' => array(
'mxchat_enable_notifications' => 0,
'mxchat_notification_email' => get_option('admin_email'),
'mxchat_auto_delete_transcripts' => 'never',
),
'sanitize_callback' => array($this, 'sanitize_transcripts_options'),
)
);
add_settings_section(
'mxchat_transcripts_notification_section',
esc_html__('Chat Notification Settings', 'mxchat'),
array($this, 'mxchat_transcripts_notification_section_callback'),
'mxchat-transcripts'
);
add_settings_field(
'mxchat_enable_notifications',
esc_html__('Enable Chat Notifications', 'mxchat'),
array($this, 'mxchat_enable_notifications_callback'),
'mxchat-transcripts',
'mxchat_transcripts_notification_section'
);
add_settings_field(
'mxchat_notification_email',
esc_html__('Notification Email Address', 'mxchat'),
array($this, 'mxchat_notification_email_callback'),
'mxchat-transcripts',
'mxchat_transcripts_notification_section'
);
add_settings_field(
'mxchat_auto_delete_transcripts',
esc_html__('Auto-Delete Old Transcripts', 'mxchat'),
array($this, 'mxchat_auto_delete_transcripts_callback'),
'mxchat-transcripts',
'mxchat_transcripts_notification_section'
);
add_settings_field(
'mxchat_retention_days',
esc_html__('Custom Retention (Days)', 'mxchat'),
array($this, 'mxchat_retention_days_callback'),
'mxchat-transcripts',
'mxchat_transcripts_notification_section'
);
add_settings_field(
'mxchat_auto_email_transcript',
esc_html__('Auto-Email Full Transcript', 'mxchat'),
array($this, 'mxchat_auto_email_transcript_callback'),
'mxchat-transcripts',
'mxchat_transcripts_notification_section'
);
}
/**
* Sanitize all prompts options
*
* @param array $input The unsanitized options array
* @return array The sanitized options array
*/
public function sanitize_prompts_options($input) {
// Log the incoming input.
//error_log('Sanitizing inputs: ' . print_r($input, true));
$sanitized = array();
// Boolean options
$sanitized['mxchat_auto_sync_posts'] = isset($input['mxchat_auto_sync_posts']) ? 1 : 0;
$sanitized['mxchat_auto_sync_pages'] = isset($input['mxchat_auto_sync_pages']) ? 1 : 0;
$sanitized['mxchat_use_pinecone'] = !empty($input['mxchat_use_pinecone']) ? 1 : 0;
// API Key: if less than 32 characters, flag as invalid.
$api_key = sanitize_text_field($input['mxchat_pinecone_api_key'] ?? '');
if (!empty($api_key) && strlen($api_key) < 32) {
add_settings_error(
'mxchat_prompts_options',
'invalid_api_key',
__('The Pinecone API key appears to be invalid. Please check your API key.', 'mxchat')
);
$existing_options = get_option('mxchat_prompts_options', array());
$sanitized['mxchat_pinecone_api_key'] = $existing_options['mxchat_pinecone_api_key'] ?? '';
} else {
$sanitized['mxchat_pinecone_api_key'] = $api_key;
}
// Environment and Index Name
$sanitized['mxchat_pinecone_environment'] = sanitize_text_field($input['mxchat_pinecone_environment'] ?? '');
$sanitized['mxchat_pinecone_index'] = sanitize_text_field($input['mxchat_pinecone_index'] ?? '');
// Host: Remove protocol and validate format.
$host = sanitize_text_field($input['mxchat_pinecone_host'] ?? '');
$host = preg_replace('#^https?://#', '', $host);
//error_log('Host after removing protocol: ' . $host);
if (!empty($host)) {
if (!preg_match('/^[\w-]+\.svc\.[\w-]+\.pinecone\.io$/', $host)) {
add_settings_error(
'mxchat_prompts_options',
'invalid_host',
__('The Pinecone host appears to be invalid. It should look like "mxchat-vectors-zrmsquq.svc.aped-4627-b74a.pinecone.io"', 'mxchat')
);
$existing_options = get_option('mxchat_prompts_options', array());
$sanitized['mxchat_pinecone_host'] = $existing_options['mxchat_pinecone_host'] ?? '';
} else {
$sanitized['mxchat_pinecone_host'] = $host;
}
} else {
$sanitized['mxchat_pinecone_host'] = '';
}
//error_log('Final sanitized array: ' . print_r($sanitized, true));
return $sanitized;
}
public function sync_settings_notice() {
// Only show notice on our plugin page
if (!isset($_GET['page']) || $_GET['page'] !== 'mxchat-prompts') {
return;
}
// Check if settings were updated
if (isset($_GET['settings-updated'])) {
?>
__('Per Hour', 'mxchat'),
'daily' => __('Per Day', 'mxchat'),
'weekly' => __('Per Week', 'mxchat'),
'monthly' => __('Per Month', 'mxchat')
);
// Get all roles plus a "logged_out" pseudo-role
$roles = wp_roles()->get_names();
$roles['logged_out'] = __('Logged Out Users', 'mxchat');
// Start the wrapper
echo '
';
echo '
';
echo '
' .
esc_html__('Set message limits for each user role and customize the experience when users reach those limits. You can use {limit}, {timeframe}, {count}, and {remaining} as placeholders.', 'mxchat') .
'
';
}
/**
* Renders a "Test key" button + result target next to a built-in provider key
* field, and emits the shared delegated click handler ONCE (static guard). The
* button carries data-target = the key field id so the owner can test the value
* they just typed (test-before-save); the AJAX handler falls back to the saved
* key when the field is empty. Styled with the WP `button` class to match the
* adjacent Custom-provider "Test Connection" button on this same page.
* plan-mxchat-20260623-c41f74.
*/
public function mxchat_provider_key_test_button($provider, $target_id) {
static $script_emitted = false;
$nonce = wp_create_nonce('mxchat_test_provider_key');
$html = '
' . esc_html__('Point MxChat at any OpenAI-compatible /v1/chat/completions endpoint: Ollama, LM Studio, vLLM, llama.cpp, LocalAI, Azure OpenAI, etc. Then select "Custom (OpenAI-compatible)" in the model picker.', 'mxchat') . '
';
// Azure OpenAI quick start — consolidates the 4-field Azure recipe in one scannable callout
// so admins can configure Azure without piecing it together from each field's hint.
echo '
' . esc_html__('Leave empty for unauthenticated local servers. Required for Azure / vLLM / hosted endpoints.', 'mxchat') . '
';
echo '
';
echo '
';
echo '';
echo '';
echo '
' . esc_html__('The model identifier the upstream server expects (e.g. llama3.2, mistral, gpt-oss). For Azure this is the deployment ID — leave empty if the Base URL already includes /deployments/.', 'mxchat') . '
';
echo '
';
echo '
';
echo '';
echo '';
echo '
' . esc_html__('Most OpenAI-compatible servers use Bearer. Azure OpenAI uses the api-key header.', 'mxchat') . '
';
echo '
';
echo '
';
echo '';
echo '';
echo '
' . esc_html__('Appended as ?api-version=... on the request URL. Required for Azure OpenAI; leave empty for non-Azure providers.', 'mxchat') . '
';
echo '
';
// Extended-use checkboxes — opt-in routing of other dispatcher paths through the custom provider.
echo '
';
echo '';
echo '';
echo '';
echo '
' . esc_html__('When off, embeddings and image generation continue to use OpenAI (current behavior). Turn on only if your endpoint exposes OpenAI-compatible /embeddings or /images/generations routes (e.g. Ollama, vLLM, LocalAI).', 'mxchat') . '
';
echo '
';
echo '
';
echo '';
echo '';
echo '
' . esc_html__('Only used when "Use custom provider for embeddings" is on. The embedding model name is separate from the chat model name above (e.g. Ollama embedding models: nomic-embed-text, mxbai-embed-large). Leave blank to fall back to the chat model name.', 'mxchat') . '
';
echo '
';
echo '
';
echo '';
echo '';
echo '
';
echo '';
echo '
';
}
// Voyage API Key
public function voyage_api_key_callback() {
$apiKey = isset($this->options['voyage_api_key']) ? esc_attr($this->options['voyage_api_key']) : '';
$nonce = wp_create_nonce('mxchat_autosave_nonce');
echo '
';
echo '';
echo '';
echo '
' . esc_html__('Required for Voyage AI embedding models. Get your API key from Voyage AI.', 'mxchat') . '
';
echo '
';
}
public function mxchat_loops_api_key_callback() {
$loops_api_key = isset($this->options['loops_api_key']) ? esc_attr($this->options['loops_api_key']) : '';
$nonce = wp_create_nonce('mxchat_autosave_nonce');
echo '
' . esc_html__('Required for Loops email integration. Get your API key from Loops.so', 'mxchat') . '
';
}
public function mxchat_loops_mailing_list_callback() {
// Add error handling and type checking
$loops_api_key = '';
$selected_list = '';
$nonce = wp_create_nonce('mxchat_autosave_nonce');
// Safely get the API key
if (isset($this->options['loops_api_key']) && is_string($this->options['loops_api_key'])) {
$loops_api_key = $this->options['loops_api_key'];
}
// Safely get the selected list
if (isset($this->options['loops_mailing_list']) && is_string($this->options['loops_mailing_list'])) {
$selected_list = $this->options['loops_mailing_list'];
}
if (!empty($loops_api_key)) {
$lists = $this->mxchat_fetch_loops_mailing_lists($loops_api_key);
if (is_array($lists) && !empty($lists)) {
echo '
';
echo '';
echo '
';
echo '
' . esc_html__('Please select a mailing list to use with Loops.', 'mxchat') . '
';
} else {
echo '
' . esc_html__('No lists found. Please verify your API Key.', 'mxchat') . '
';
}
} else {
echo '
' . esc_html__('Enter a valid Loops API Key to load mailing lists.', 'mxchat') . '
';
}
}
public function mxchat_triggered_phrase_response_callback() {
$default_response = __('Would you like to join our mailing list? Please provide your email below.', 'mxchat');
$triggered_response = isset($this->options['triggered_phrase_response'])
? $this->options['triggered_phrase_response']
: $default_response;
$nonce = wp_create_nonce('mxchat_autosave_nonce');
echo '
' . esc_html__('Enter the instruction for the AI when a trigger keyword is detected. The AI will use this as guidance to naturally ask for the user\'s email in a conversational way.', 'mxchat') . '
';
}
public function mxchat_email_capture_response_callback() {
$default_response = __('Thank you for providing your email! You\'ve been added to our list.', 'mxchat');
$email_capture_response = isset($this->options['email_capture_response'])
? $this->options['email_capture_response']
: $default_response;
$nonce = wp_create_nonce('mxchat_autosave_nonce');
echo '
' . esc_html__('Enter the instruction for the AI when a user provides their email. The AI will use this as guidance to naturally confirm the email capture in a conversational way.', 'mxchat') . '
';
}
public function mxchat_pre_chat_message_callback() {
// Load the entire 'mxchat_options' array
$all_options = get_option('mxchat_options', []);
// Retrieve the saved message or use the default value
$default_message = __('Hey there! Ask me anything!', 'mxchat');
$pre_chat_message = isset($all_options['pre_chat_message']) ? $all_options['pre_chat_message'] : $default_message;
// Output the textarea
printf(
'',
esc_textarea($pre_chat_message)
);
}
// Callback for AI Instructions textarea
public function system_prompt_instructions_callback() {
// Retrieve the current value of the system prompt instructions
$instructions = isset($this->options['system_prompt_instructions']) ? esc_textarea($this->options['system_prompt_instructions']) : '';
// Render the textarea field
printf(
'',
$instructions
);
// Personalization hint
echo '
';
echo esc_html__('Use {visitor_name} to personalize AI responses when lead capture is enabled.', 'mxchat') . ' ';
echo '' . esc_html__('Example: The visitor\'s name is {visitor_name}. Address them by name.', 'mxchat') . '';
echo '
';
// Sample instructions button
echo '
';
echo '';
echo '
';
// Add modal to WordPress admin footer instead of inline
add_action('admin_footer', array($this, 'render_sample_instructions_modal'));
}
// New method to render modal in admin footer
public function render_sample_instructions_modal() {
static $modal_rendered = false;
if ($modal_rendered) return; // Prevent duplicate modals
$modal_rendered = true;
echo '
';
echo '
';
echo '
';
echo '
';
echo '';
echo esc_html__('Sample AI Instructions', 'mxchat');
echo '
';
echo '';
echo '
';
echo '
';
echo '
';
echo esc_html('You are an AI Chatbot assistant for this website. Your main goal is to assist visitors with questions and provide helpful information. Here are your key guidelines:
# Response Style - CRITICALLY IMPORTANT
- MAXIMUM LENGTH: 1-3 short sentences per response
- Ultra-concise: Get straight to the answer with no filler
- No introductions like "Sure!" or "I\'d be happy to help"
- No phrases like "based on my knowledge" or "according to information"
- No explanatory text before giving the answer
- No summaries or repetition
- Hyperlink all URLs
- Respond in user\'s language
- Minor chit chat or conversation is okay, but try to keep it focused on [insert topic]
# Knowledge Base Requirements - PREVENT HALLUCINATIONS
- ONLY answer using information explicitly provided in OFFICIAL KNOWLEDGE DATABASE CONTENT sections marked with ===== delimiters
- If required information is NOT in the knowledge database: "I don\'t have enough information in my knowledge base to answer that question accurately."
- NEVER invent or hallucinate URLs, links, product specs, procedures, dates, statistics, names, contacts, or company information
- When knowledge base information is unclear or contradictory, acknowledge the limitation rather than guessing
- Better to admit insufficient information than provide inaccurate answers');
echo '
';
echo '';
echo '
';
echo '';
echo '
';
echo '
';
}
public function mxchat_model_callback() {
// Catalog refactor (plan-d14e89): single source of truth lives in
// includes/class-mxchat-model-catalog.php. Dropdown groups are the
// provider labels; each group maps model_id => "Label" strings.
if (!class_exists('MxChat_Model_Catalog')) {
require_once plugin_dir_path(__FILE__) . 'class-mxchat-model-catalog.php';
}
$models = MxChat_Model_Catalog::settings_dropdown_groups();
// Retrieve the currently selected model from saved options
$selected_model = isset($this->options['model']) ? esc_attr($this->options['model']) : 'gpt-5.1-chat-latest';
// Begin the select dropdown
echo '';
// Add a note for OpenRouter
echo '
';
echo ' ';
echo esc_html__('After entering your OpenRouter API key above, click the button below to load available models.', 'mxchat');
echo '
';
// API Key Status Messages (hidden by default, shown by JS based on selected model)
$has_openai_key = !empty($this->options['api_key']);
$has_claude_key = !empty($this->options['claude_api_key']);
$has_xai_key = !empty($this->options['xai_api_key']);
$has_deepseek_key = !empty($this->options['deepseek_api_key']);
$has_gemini_key = !empty($this->options['gemini_api_key']);
$has_openrouter_key = !empty($this->options['openrouter_api_key']);
// OpenAI/GPT models
echo '
';
if ($has_openai_key) {
echo '✓ ' . esc_html__('API key for OpenAI detected', 'mxchat') . '';
} else {
echo '⚠ ' . esc_html__('No API key for OpenAI detected. Please enter API key in API Keys tab.', 'mxchat') . '';
}
echo '
';
// Claude models
echo '
';
if ($has_claude_key) {
echo '✓ ' . esc_html__('API key for Anthropic (Claude) detected', 'mxchat') . '';
} else {
echo '⚠ ' . esc_html__('No API key for Anthropic (Claude) detected. Please enter API key in API Keys tab.', 'mxchat') . '';
}
echo '
';
// X.AI models
echo '
';
if ($has_xai_key) {
echo '✓ ' . esc_html__('API key for X.AI (Grok) detected', 'mxchat') . '';
} else {
echo '⚠ ' . esc_html__('No API key for X.AI (Grok) detected. Please enter API key in API Keys tab.', 'mxchat') . '';
}
echo '
';
// DeepSeek models
echo '
';
if ($has_deepseek_key) {
echo '✓ ' . esc_html__('API key for DeepSeek detected', 'mxchat') . '';
} else {
echo '⚠ ' . esc_html__('No API key for DeepSeek detected. Please enter API key in API Keys tab.', 'mxchat') . '';
}
echo '
';
// Gemini models
echo '
';
if ($has_gemini_key) {
echo '✓ ' . esc_html__('API key for Google Gemini detected', 'mxchat') . '';
} else {
echo '⚠ ' . esc_html__('No API key for Google Gemini detected. Please enter API key in API Keys tab.', 'mxchat') . '';
}
echo '
';
// OpenRouter models
echo '
';
if ($has_openrouter_key) {
echo '✓ ' . esc_html__('API key for OpenRouter detected', 'mxchat') . '';
} else {
echo '⚠ ' . esc_html__('No API key for OpenRouter detected. Please enter API key in API Keys tab.', 'mxchat') . '';
}
echo '
';
// ADD THESE HIDDEN FIELDS RIGHT HERE:
$openrouter_model = isset($this->options['openrouter_selected_model']) ? esc_attr($this->options['openrouter_selected_model']) : '';
$openrouter_model_name = isset($this->options['openrouter_selected_model_name']) ? esc_attr($this->options['openrouter_selected_model_name']) : '';
echo '';
echo '';
}
// Update your existing callback method
public function enable_streaming_toggle_callback() {
// Get value from options array, default to 'on'
$enabled = isset($this->options['enable_streaming_toggle']) ? $this->options['enable_streaming_toggle'] : 'on';
$checked = ($enabled === 'on') ? 'checked' : '';
echo '';
// Test button — branded .mxch-btn with inline SVG (IDs preserved for AJAX binding)
echo '
';
echo '';
echo '';
echo '
';
}
// Web Search toggle callback
public function enable_web_search_toggle_callback() {
// Get value from options array, default to 'off'
$enabled = isset($this->options['enable_web_search']) ? $this->options['enable_web_search'] : 'off';
$checked = ($enabled === 'on') ? 'checked' : '';
// Get current model to determine if we should show/enable the toggle
$current_model = isset($this->options['model']) ? $this->options['model'] : 'gpt-5.1-chat-latest';
// Models that DON'T support web search — OpenAI-docs-driven exception list.
// Keep hardcoded; the catalog can't infer "supports web search" per-model, so any
// future OpenAI model that lacks Responses-API web_search support is added here.
$unsupported_models = array('gpt-4.1-nano');
// Web-search-capable chat-model allowlists, derived from the central model catalog
// (class-mxchat-model-catalog.php). When a new OpenAI/Gemini chat model is added there,
// the Web Search toggle picks it up automatically — no edit here.
// OpenAI grounds via the Responses-API web_search tool; Gemini grounds natively via the
// Google Search tool (plan 46b9ea wired the Gemini dispatch — every shipped Gemini chat
// model is 2.x/3.x and grounds, matching that path's empty opt-out list, so all catalog
// Gemini models are supported here).
if (!class_exists('MxChat_Model_Catalog')) {
require_once plugin_dir_path(__FILE__) . 'class-mxchat-model-catalog.php';
}
$chat_catalog = MxChat_Model_Catalog::chat_models();
$openai_models = (isset($chat_catalog['openai']['models']) && is_array($chat_catalog['openai']['models']))
? array_keys($chat_catalog['openai']['models'])
: array();
$gemini_models = (isset($chat_catalog['gemini']['models']) && is_array($chat_catalog['gemini']['models']))
? array_keys($chat_catalog['gemini']['models'])
: array();
$is_capable = in_array($current_model, $openai_models) || in_array($current_model, $gemini_models);
$is_supported = $is_capable && !in_array($current_model, $unsupported_models);
// Wrapper div with data attributes for JS to show/hide. data-openai-models is kept for
// back-compat; data-gemini-models is the added second provider the JS now also honors.
echo '
';
echo '';
echo '
';
// Message shown when a model that can't ground (Claude, Grok, DeepSeek, OpenRouter, etc.) is selected
echo '
';
echo '';
echo esc_html__('Web search is only available for OpenAI and Gemini models.', 'mxchat');
echo '
';
}
// AJAX handler to fetch OpenRouter models
public function fetch_openrouter_models() {
check_ajax_referer('mxchat_fetch_openrouter_models', 'nonce');
$api_key = isset($_POST['api_key']) ? sanitize_text_field($_POST['api_key']) : '';
if (empty($api_key)) {
wp_send_json_error(array('message' => 'API key is required'));
}
$response = wp_remote_get('https://openrouter.ai/api/v1/models', array(
'headers' => array(
'Authorization' => 'Bearer ' . $api_key,
'Content-Type' => 'application/json',
),
'timeout' => 15,
));
if (is_wp_error($response)) {
wp_send_json_error(array('message' => $response->get_error_message()));
}
$body = wp_remote_retrieve_body($response);
$data = json_decode($body, true);
if (isset($data['data']) && is_array($data['data'])) {
// Format the models for the frontend
$models = array_map(function($model) {
return array(
'id' => $model['id'],
'name' => $model['name'] ?? $model['id'],
'description' => $model['description'] ?? '',
'context_length' => $model['context_length'] ?? 0,
'pricing' => array(
'prompt' => $model['pricing']['prompt'] ?? 0,
'completion' => $model['pricing']['completion'] ?? 0,
),
);
}, $data['data']);
wp_send_json_success(array('models' => $models));
} else {
wp_send_json_error(array('message' => 'Invalid response from OpenRouter'));
}
}
// Callback function for embedding model selection
public function embedding_model_callback() {
$models = array(
esc_html__('OpenAI Embeddings', 'mxchat') => array(
'text-embedding-3-small' => esc_html__('TE3 Small (1536, Efficient)', 'mxchat'),
'text-embedding-ada-002' => esc_html__('Ada 2 (1536, Recommended)', 'mxchat'),
'text-embedding-3-large' => esc_html__('TE3 Large (3072, Powerful)', 'mxchat'),
),
esc_html__('Voyage AI Embeddings', 'mxchat') => array(
'voyage-3-large' => esc_html__('Voyage-3 Large (2048, Most Capable)', 'mxchat'),
),
esc_html__('Google Gemini Embeddings', 'mxchat') => array(
'gemini-embedding-001' => esc_html__('Gemini Embedding (1536, Stable)', 'mxchat'),
)
);
$selected_model = isset($this->options['embedding_model']) ? esc_attr($this->options['embedding_model']) : 'text-embedding-ada-002';
echo '';
// API Key Status Messages for Embedding Models
$has_openai_key = !empty($this->options['api_key']);
$has_voyage_key = !empty($this->options['voyage_api_key']);
$has_gemini_key = !empty($this->options['gemini_api_key']);
// OpenAI Embeddings
echo '
';
if ($has_openai_key) {
echo '✓ ' . esc_html__('API key for OpenAI detected', 'mxchat') . '';
} else {
echo '⚠ ' . esc_html__('No API key for OpenAI detected. Please enter API key in API Keys tab.', 'mxchat') . '';
}
echo '
';
// Voyage AI Embeddings
echo '
';
if ($has_voyage_key) {
echo '✓ ' . esc_html__('API key for Voyage AI detected', 'mxchat') . '';
} else {
echo '⚠ ' . esc_html__('No API key for Voyage AI detected. Please enter API key in API Keys tab.', 'mxchat') . '';
}
echo '
';
// Gemini Embeddings
echo '
';
if ($has_gemini_key) {
echo '✓ ' . esc_html__('API key for Google Gemini detected', 'mxchat') . '';
} else {
echo '⚠ ' . esc_html__('No API key for Google Gemini detected. Please enter API key in API Keys tab.', 'mxchat') . '';
}
echo '
';
}
public function mxchat_top_bar_title_callback() {
// Retrieve the current value of the top bar title from saved options
$top_bar_title = isset($this->options['top_bar_title']) ? esc_attr($this->options['top_bar_title']) : '';
// Render the input field
echo '';
}
public function mxchat_ai_agent_text_callback() {
// Retrieve the current value of the AI agent text from saved options
$ai_agent_text = isset($this->options['ai_agent_text']) ? esc_attr($this->options['ai_agent_text']) : '';
// Render the input field
echo '';
}
public function enable_email_block_callback() {
// Load full plugin options array
$all_options = get_option('mxchat_options', []);
// Get the value, default to 'off'
$enable_email_block = isset($all_options['enable_email_block']) ? $all_options['enable_email_block'] : 'off';
// Check if it's 'on'
$checked = ($enable_email_block === 'on') ? 'checked' : '';
echo '';
}
public function email_blocker_header_content_callback() {
// Load the entire 'mxchat_options' array
$all_options = get_option('mxchat_options', []);
// Retrieve the saved content or default to empty
$content = isset($all_options['email_blocker_header_content'])
? $all_options['email_blocker_header_content']
: '';
// Render the textarea - IMPORTANT: name should be just "email_blocker_header_content"
echo '';
}
public function email_blocker_button_text_callback() {
// Load the entire 'mxchat_options' array
$all_options = get_option('mxchat_options', []);
// Retrieve the saved button text or default to empty
$button_text = isset($all_options['email_blocker_button_text'])
? $all_options['email_blocker_button_text']
: '';
// Use esc_attr to safely render the existing text
echo '';
}
//Enable name field callback
public function enable_name_field_callback() {
// Load full plugin options array
$all_options = get_option('mxchat_options', []);
// Get the value, default to 'off'
$enable_name_field = isset($all_options['enable_name_field']) ? $all_options['enable_name_field'] : 'off';
// Check if it's 'on'
$checked = ($enable_name_field === 'on') ? 'checked' : '';
echo '';
}
//Name field placeholder callback
public function name_field_placeholder_callback() {
$all_options = get_option('mxchat_options', []);
$placeholder = isset($all_options['name_field_placeholder'])
? $all_options['name_field_placeholder']
: esc_html__('Enter your name', 'mxchat');
echo '';
}
public function mxchat_intro_message_callback() {
// Load the entire 'mxchat_options' array
$all_options = get_option('mxchat_options', []);
// Retrieve the saved intro message or use the default
$default_message = __('Hello! How can I assist you today?', 'mxchat');
$saved_message = isset($all_options['intro_message']) ? $all_options['intro_message'] : $default_message;
// Escape on output (esc_textarea) — neutralizes any payload already stored before the
// Wordfence Stored-XSS fix (CWE-79, plan-3f8158) and prevents context-breakout.
?>
',
esc_attr($input_copy),
esc_attr__('How can I assist?', 'mxchat')
);
}
public function mxchat_append_to_body_callback() {
// Fetch fresh options to ensure we have the latest saved values
$options = get_option('mxchat_options', array());
// Get value from options array, default to 'off'
$append_to_body = isset($options['append_to_body']) ? $options['append_to_body'] : 'off';
$checked = ($append_to_body === 'on') ? 'checked' : '';
// Get post type visibility settings
$visibility_mode = isset($options['post_type_visibility_mode']) ? $options['post_type_visibility_mode'] : 'all';
$visibility_list = isset($options['post_type_visibility_list']) ? $options['post_type_visibility_list'] : array();
if (!is_array($visibility_list)) {
$visibility_list = array();
}
echo '
';
// Main toggle
echo '';
// Post Type Visibility Options (only visible when auto-display is ON)
$display_style = ($append_to_body === 'on') ? '' : 'display: none;';
echo '
';
echo '
';
echo '
' . esc_html__('Post Type Visibility', 'mxchat') . '
';
echo '
';
// Mode selector (radio buttons)
echo '
';
echo '';
echo '';
echo '';
echo '
';
// Post type checkboxes (only visible when mode is include or exclude)
$list_display = ($visibility_mode !== 'all') ? '' : 'display: none;';
echo '
';
// Get all public post types
$post_types = get_post_types(array('public' => true), 'objects');
foreach ($post_types as $post_type) {
// Skip attachments
if ($post_type->name === 'attachment') {
continue;
}
$is_checked = in_array($post_type->name, $visibility_list) ? 'checked' : '';
echo '';
}
echo '
'; // End post-type-list
echo '
'; // End post-type-visibility-options
echo '
'; // End mxchat-autosave-section
}
public function mxchat_contextual_awareness_callback() {
// Get value from options array, default to 'off'
$contextual_awareness = isset($this->options['contextual_awareness_toggle']) ? $this->options['contextual_awareness_toggle'] : 'off';
$checked = ($contextual_awareness === 'on') ? 'checked' : '';
echo '';
}
public function mxchat_citation_links_toggle_callback() {
// Get value from options array, default to 'on' (enabled by default)
$citation_links = isset($this->options['citation_links_toggle']) ? $this->options['citation_links_toggle'] : 'on';
$checked = ($citation_links === 'on') ? 'checked' : '';
echo '';
}
/**
* Toggle for the end-of-session satisfaction rating prompt (plan-a5b006).
* Default ON. The widget reads this through the localized object; the
* mxchat_satisfaction_rating_enabled filter still lets developers force
* the value site-wide.
*
* The 5 customization fields (idle/question/thanks/placeholder/saved) are
* rendered inline here inside a single wrapper div whose initial display
* is set server-side from the toggle value (plan-29caac). Mirrors the
* auto-display chatbot pattern at mxchat_append_to_body_callback — no
* DOMContentLoaded race because rows exist as direct children of this
* callback's output, and the wrapper's display: none is inline at render
* time so refresh shows the correct state with no flash.
*/
public function mxchat_satisfaction_rating_toggle_callback() {
$options = $this->options;
$value = isset($options['satisfaction_rating_enabled']) ? $options['satisfaction_rating_enabled'] : 'off';
$checked = ($value === 'on') ? 'checked' : '';
$idle = isset($options['satisfaction_rating_idle_seconds']) ? intval($options['satisfaction_rating_idle_seconds']) : 60;
$idle = max(5, min(600, $idle));
$question = isset($options['satisfaction_rating_question']) ? $options['satisfaction_rating_question'] : '';
$thanks = isset($options['satisfaction_rating_thanks']) ? $options['satisfaction_rating_thanks'] : '';
$placeholder = isset($options['satisfaction_rating_placeholder']) ? $options['satisfaction_rating_placeholder'] : '';
$saved = isset($options['satisfaction_rating_saved']) ? $options['satisfaction_rating_saved'] : '';
echo '
';
echo '';
?>
';
echo '
' . esc_html__('Customize the prompt (optional)', 'mxchat') . '
';
echo '
';
echo ' ';
printf(
' %s',
(int) $idle,
esc_html__('seconds of user inactivity before the prompt appears (5-600)', 'mxchat')
);
echo '
' . esc_html__('Enter the language code (e.g., "en" for English).', 'mxchat') . '
';
}
// Section Callback
public function mxchat_pdf_intent_section_callback() {
echo '
' . esc_html__('Configure the intent settings for the Chat with PDF feature.', 'mxchat') . '
';
}
public function mxchat_chat_toolbar_toggle_callback() {
// Get chat toolbar toggle value with fallback
$chat_toolbar_toggle = isset($this->options['chat_toolbar_toggle']) ? $this->options['chat_toolbar_toggle'] : 'off';
$checked = ($chat_toolbar_toggle === 'on') ? 'checked' : '';
// Output the toggle switch
echo '';
echo '
' . esc_html__('Enable to display the chat toolbar, adding two icons below the chatbot input field for uploading PDF and Word documents (default is hidden).', 'mxchat') . '
';
}
/**
* Callback for PDF upload button toggle setting
*/
public function mxchat_show_pdf_upload_button_callback() {
// Get toggle value with fallback
$show_pdf_button = isset($this->options['show_pdf_upload_button']) ? $this->options['show_pdf_upload_button'] : 'on';
$checked = ($show_pdf_button === 'on') ? 'checked' : '';
// Output the toggle switch
echo '';
echo '
' . esc_html__('Enable to show the PDF upload button in the chatbot toolbar. Disable to hide it.', 'mxchat') . '
';
}
/**
* Callback for Word upload button toggle setting
*/
public function mxchat_show_word_upload_button_callback() {
// Get toggle value with fallback
$show_word_button = isset($this->options['show_word_upload_button']) ? $this->options['show_word_upload_button'] : 'on';
$checked = ($show_word_button === 'on') ? 'checked' : '';
// Output the toggle switch
echo '';
echo '
' . esc_html__('Enable to show the Word document upload button in the chatbot toolbar. Disable to hide it.', 'mxchat') . '
';
}
public function mxchat_pdf_intent_trigger_text_callback() {
$default_text = __("Please provide the URL to the PDF you'd like to discuss.", 'mxchat');
echo sprintf(
'',
esc_attr__('Enter trigger text', 'mxchat'),
isset($this->options['pdf_intent_trigger_text'])
? esc_textarea($this->options['pdf_intent_trigger_text'])
: esc_textarea($default_text)
);
echo '
' . esc_html__('Text displayed when the intent is triggered.', 'mxchat') . '
';
}
public function mxchat_pdf_intent_success_text_callback() {
$default_text = __("I've processed the PDF. What questions do you have about it?", 'mxchat');
echo sprintf(
'',
esc_attr__('Enter success text', 'mxchat'),
isset($this->options['pdf_intent_success_text'])
? esc_textarea($this->options['pdf_intent_success_text'])
: esc_textarea($default_text)
);
echo '
' . esc_html__('Text displayed when the intent is successful.', 'mxchat') . '
';
}
public function mxchat_pdf_intent_error_text_callback() {
$default_text = __("Sorry, I couldn't process the PDF. Please ensure it's a valid file.", 'mxchat');
echo sprintf(
'',
esc_attr__('Enter error text', 'mxchat'),
isset($this->options['pdf_intent_error_text'])
? esc_textarea($this->options['pdf_intent_error_text'])
: esc_textarea($default_text)
);
echo '
' . esc_html__('Text displayed when an error occurs during the intent.', 'mxchat') . '
' . esc_html__('Set the maximum number of document pages users can upload for processing. (1-69 pages)', 'mxchat') . '
';
}
public function mxchat_live_agent_status_callback() {
// Always get fresh options instead of using cached $this->options
$fresh_options = get_option('mxchat_options');
$status = isset($fresh_options['live_agent_status']) ? $fresh_options['live_agent_status'] : 'off';
echo '';
echo '';
}
/**
* Availability-schedule editor (plans 8ccaa2 + 99d7a4).
*
* ONE callback, parameterized by channel ('slack' | 'telegram' via the
* add_settings_field $args) — the markup and CSS are shared, only the bound
* option and the helper text differ. Each channel's editor renders under its
* own Integrations tab and governs ONLY that channel's handoff. While the
* master toggle is off the day grid is inert and handoff availability stays
* governed solely by that channel's manual status toggle.
*
* The day inputs carry NO name attribute and are marked .mxchat-la-field so the
* generic autosave skips them; the editor JS folds them into the channel's
* hidden live_agent_schedule_ input and fires one change, reusing the
* existing autosave transport rather than growing a second one. All hooks the
* JS needs are CLASSES scoped inside .mxchat-la-schedule, never ids — the
* markup exists twice on the page.
*/
public function mxchat_live_agent_schedule_callback($args = array()) {
if (!class_exists('MxChat_Live_Agent_Schedule')) {
return;
}
$channel = (isset($args['channel']) && $args['channel'] === 'telegram') ? 'telegram' : 'slack';
$field = 'live_agent_schedule_' . $channel;
$sched = MxChat_Live_Agent_Schedule::get($channel);
$labels = MxChat_Live_Agent_Schedule::day_labels();
$tz = MxChat_Live_Agent_Schedule::timezone_label();
$enabled = !empty($sched['enabled']);
$channel_label = ($channel === 'telegram') ? __('Telegram', 'mxchat') : __('Slack', 'mxchat');
?>
options['live_agent_away_message'])
? $this->options['live_agent_away_message']
: __('Sorry, live agents are currently unavailable. I can continue helping you as an AI assistant.', 'mxchat');
printf(
'',
esc_textarea($message)
);
echo '
' . esc_html__('Message shown when live agents are offline.', 'mxchat') . '
';
}
public function mxchat_live_agent_notification_message_callback() {
$message = isset($this->options['live_agent_notification_message'])
? $this->options['live_agent_notification_message']
: __('Live agent has been notified.', 'mxchat');
printf(
'',
esc_textarea($message)
);
echo '
' . esc_html__('Message shown when live transfer activated.', 'mxchat') . '
' . esc_html__('Enter your Slack webhook URL for live agent notifications.', 'mxchat') . '
';
}
public function mxchat_live_agent_secret_key_callback() {
printf(
'',
isset($this->options['live_agent_secret_key']) ? esc_attr($this->options['live_agent_secret_key']) : ''
);
echo '';
echo '
' . esc_html__('Secret key for validating Slack requests. Keep this secure.', 'mxchat') . '
';
}
public function mxchat_live_agent_bot_token_callback() {
printf(
'',
isset($this->options['live_agent_bot_token']) ? esc_attr($this->options['live_agent_bot_token']) : ''
);
echo '';
echo '
' . esc_html__('Your Slack Bot OAuth Token (starts with xoxb-). Keep this secure.', 'mxchat') . '
';
}
public function mxchat_live_agent_user_ids_callback() {
$user_ids = isset($this->options['live_agent_user_ids'])
? esc_textarea($this->options['live_agent_user_ids'])
: '';
printf(
'',
$user_ids
);
echo '
' . esc_html__('Enter Slack User IDs of agents who should be automatically invited to chat channels (one per line). Find user IDs in Slack profiles under "More" → "Copy member ID". Example: U1234567890', 'mxchat') . '
';
}
public function mxchat_live_agent_shared_channel_callback() {
$value = isset($this->options['live_agent_shared_channel']) ? $this->options['live_agent_shared_channel'] : '';
printf(
'',
esc_attr($value)
);
echo '
' . esc_html__('Optional. Route ALL live agent handoffs into this one existing Slack channel — each conversation becomes its own thread there. Enter a channel ID (starts with C) or a #channel-name, and invite your bot to the channel first (/invite @YourBot). Agents reply inside a conversation\'s thread; !endchat inside the thread ends that chat. Leave blank to keep creating a separate chat- channel per conversation.', 'mxchat') . '
';
// Surface the last failed handoff so a wrong name / missing invite is
// visible right where it gets fixed. A successful handoff clears this.
$shared_error = get_option('mxchat_slack_shared_channel_error');
if (!empty($shared_error['error']) && trim((string) $value) !== '' && ($shared_error['configured'] ?? '') === trim((string) $value)) {
echo '
' . esc_html__('⚠ Last handoff could not reach this channel', 'mxchat') . ' — '
. esc_html(sprintf(
/* translators: %s: Slack API error code */
__('Slack said "%s". Handoffs are falling back to per-conversation channels until this is fixed. Check the channel name or ID and make sure the bot has been invited to it.', 'mxchat'),
$shared_error['error']
)) . '
' . esc_html__('Keeps your Slack sidebar tidy on busy sites — each ended conversation\'s channel is archived instead of living forever. Archived channels stay searchable in Slack, so the record is never lost. Only applies to per-conversation chat- channels; a Shared Handoff Channel is never archived. If a returning visitor requests an agent again, a fresh channel is created automatically.', 'mxchat') . '
';
}
/**
* Telegram Integration Callbacks
*/
public function mxchat_telegram_section_callback() {
echo '
' . esc_html__('Configure Telegram integration for live agent support.', 'mxchat') . '
';
}
public function mxchat_telegram_status_callback() {
$fresh_options = get_option('mxchat_options');
$status = isset($fresh_options['telegram_status']) ? $fresh_options['telegram_status'] : 'off';
echo '';
echo '';
}
public function mxchat_telegram_notification_message_callback() {
$message = isset($this->options['telegram_notification_message'])
? $this->options['telegram_notification_message']
: __("I've notified a support agent. Please allow a moment for them to respond.", 'mxchat');
printf(
'',
esc_textarea($message)
);
echo '
' . esc_html__('Message shown when live transfer activated.', 'mxchat') . '
';
}
public function mxchat_telegram_away_message_callback() {
$message = isset($this->options['telegram_away_message'])
? $this->options['telegram_away_message']
: __('Sorry, live agents are currently unavailable. I can continue helping you as an AI assistant.', 'mxchat');
printf(
'',
esc_textarea($message)
);
echo '
' . esc_html__('Message shown when live agents are offline.', 'mxchat') . '
';
}
public function mxchat_telegram_bot_token_callback() {
printf(
'',
isset($this->options['telegram_bot_token']) ? esc_attr($this->options['telegram_bot_token']) : ''
);
echo '';
echo '
' . esc_html__('Secret token for webhook verification. Use this when setting up your Telegram webhook with the secret_token parameter.', 'mxchat') . '
';
}
public function mxchat_similarity_threshold_callback() {
// Load from mxchat_options array
$options = get_option('mxchat_options', []);
// Get value from options array with default of 35
$threshold = isset($options['similarity_threshold']) ? $options['similarity_threshold'] : 35;
echo '
';
}
public function mxchat_rag_chunks_limit_callback() {
// Load from mxchat_options array
$options = get_option('mxchat_options', []);
// Get value from options array with default of 15
$rag_chunks_limit = isset($options['rag_chunks_limit']) ? intval($options['rag_chunks_limit']) : 15;
echo '