chatbot.php
2 years ago
discussions.php
2 years ago
files.php
2 years ago
security.php
2 years ago
tasks.php
2 years ago
utilities.php
2 years ago
wand.php
2 years ago
chatbot.php
572 lines
| 1 | <?php |
| 2 | |
| 3 | // Params for the chatbot (front and server) |
| 4 | |
| 5 | define( 'MWAI_CHATBOT_FRONT_PARAMS', [ 'id', 'customId', 'aiName', 'userName', 'guestName', |
| 6 | 'textSend', 'textClear', 'imageUpload', 'fileSearch', |
| 7 | 'textInputPlaceholder', 'textInputMaxLength', 'textCompliance', 'startSentence', 'localMemory', |
| 8 | 'themeId', 'window', 'icon', 'iconText', 'iconAlt', 'iconPosition', 'fullscreen', 'copyButton' |
| 9 | ] ); |
| 10 | define( 'MWAI_CHATBOT_SERVER_PARAMS', [ 'id', 'envId', 'scope', 'mode', 'contentAware', 'context', |
| 11 | 'embeddingsEnvId', 'embeddingsIndex', 'embeddingsNamespace', 'assistantId', 'instructions', |
| 12 | 'model', 'temperature', 'maxTokens', 'contextMaxLength', 'maxResults', 'apiKey', 'functions' |
| 13 | ] ); |
| 14 | |
| 15 | // Params for the discussions (front and server) |
| 16 | |
| 17 | define( 'MWAI_DISCUSSIONS_FRONT_PARAMS', [ 'themeId', 'textNewChat' ] ); |
| 18 | define( 'MWAI_DISCUSSIONS_SERVER_PARAMS', [ 'customId' ] ); |
| 19 | |
| 20 | class Meow_MWAI_Modules_Chatbot { |
| 21 | private $core = null; |
| 22 | private $namespace = 'mwai-ui/v1'; |
| 23 | private $siteWideChatId = null; |
| 24 | |
| 25 | public function __construct() { |
| 26 | global $mwai_core; |
| 27 | $this->core = $mwai_core; |
| 28 | add_shortcode( 'mwai_chatbot', array( $this, 'chat_shortcode' ) ); |
| 29 | add_shortcode( 'mwai_chatbot_v2', array( $this, 'chat_shortcode' ) ); |
| 30 | add_action( 'rest_api_init', array( $this, 'rest_api_init' ) ); |
| 31 | $this->siteWideChatId = $this->core->get_option( 'botId' ); |
| 32 | add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); |
| 33 | |
| 34 | if ( $this->core->get_option( 'shortcode_chat_discussions' ) ) { |
| 35 | add_shortcode( 'mwai_discussions', [ $this, 'shortcode_chat_discussions' ] ); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | public function register_scripts() { |
| 40 | $physical_file = trailingslashit( MWAI_PATH ) . 'app/chatbot.js'; |
| 41 | $cache_buster = file_exists( $physical_file ) ? filemtime( $physical_file ) : MWAI_VERSION; |
| 42 | wp_register_script( 'mwai_chatbot', trailingslashit( MWAI_URL ) . 'app/chatbot.js', |
| 43 | [ 'wp-element' ], $cache_buster, false ); |
| 44 | if ( !empty( $this->siteWideChatId ) && $this->siteWideChatId !== 'none' ) { |
| 45 | $this->enqueue_scripts(); |
| 46 | add_action( 'wp_footer', array( $this, 'inject_chat' ) ); |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | public function enqueue_scripts() { |
| 51 | wp_enqueue_script( "mwai_chatbot" ); |
| 52 | if ( $this->core->get_option( 'shortcode_chat_syntax_highlighting' ) ) { |
| 53 | wp_enqueue_script( "mwai_highlight" ); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | public function rest_api_init() { |
| 58 | register_rest_route( $this->namespace, '/chats/submit', array( |
| 59 | 'methods' => 'POST', |
| 60 | 'callback' => [ $this, 'rest_chat' ], |
| 61 | 'permission_callback' => array( $this->core, 'check_rest_nonce' ) |
| 62 | ) ); |
| 63 | } |
| 64 | |
| 65 | public function basics_security_check( $botId, $customId, $newMessage ) { |
| 66 | if ( empty( $newMessage ) ) { |
| 67 | error_log("AI Engine: The query was rejected - message was empty."); |
| 68 | return false; |
| 69 | } |
| 70 | if ( !$botId && !$customId ) { |
| 71 | error_log("AI Engine: The query was rejected - no botId nor id was specified."); |
| 72 | return false; |
| 73 | } |
| 74 | |
| 75 | $length = strlen( $newMessage ); |
| 76 | if ( $length < 1 || $length > ( 4096 * 16 ) ) { |
| 77 | error_log("AI Engine: The query was rejected - message was too short or too long."); |
| 78 | return false; |
| 79 | } |
| 80 | return true; |
| 81 | } |
| 82 | |
| 83 | public function rest_chat( $request ) { |
| 84 | $params = $request->get_json_params(); |
| 85 | $botId = $params['botId'] ?? null; |
| 86 | $customId = $params['customId'] ?? null; |
| 87 | $stream = $params['stream'] ?? false; |
| 88 | $newMessage = trim( $params['newMessage'] ?? '' ); |
| 89 | $newFileId = $params['newFileId'] ?? null; |
| 90 | |
| 91 | if ( !$this->basics_security_check( $botId, $customId, $newMessage )) { |
| 92 | return new WP_REST_Response( [ |
| 93 | 'success' => false, |
| 94 | 'message' => apply_filters( 'mwai_ai_exception', 'Sorry, your query has been rejected.' ) |
| 95 | ], 403 ); |
| 96 | } |
| 97 | |
| 98 | try { |
| 99 | $data = $this->chat_submit( $botId, $newMessage, $newFileId, $params, $stream ); |
| 100 | return new WP_REST_Response( [ |
| 101 | 'success' => true, |
| 102 | 'reply' => $data['reply'], |
| 103 | 'images' => $data['images'], |
| 104 | 'usage' => $data['usage'] |
| 105 | ], 200 ); |
| 106 | } |
| 107 | catch ( Exception $e ) { |
| 108 | $message = apply_filters( 'mwai_ai_exception', $e->getMessage() ); |
| 109 | return new WP_REST_Response( [ |
| 110 | 'success' => false, |
| 111 | 'message' => $message |
| 112 | ], 500 ); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | public function chat_submit( $botId, $newMessage, $newFileId = null, $params = [], $stream = false ) { |
| 117 | try { |
| 118 | $chatbot = null; |
| 119 | $customId = $params['customId'] ?? null; |
| 120 | |
| 121 | // Custom Chatbot |
| 122 | if ( $customId ) { |
| 123 | $chatbot = get_transient( 'mwai_custom_chatbot_' . $customId ); |
| 124 | } |
| 125 | // Registered Chatbot |
| 126 | if ( !$chatbot && $botId ) { |
| 127 | $chatbot = $this->core->get_chatbot( $botId ); |
| 128 | } |
| 129 | |
| 130 | if ( !$chatbot ) { |
| 131 | error_log("AI Engine: No chatbot was found for this query."); |
| 132 | throw new Exception( 'Sorry, your query has been rejected.' ); |
| 133 | } |
| 134 | |
| 135 | $textInputMaxLength = $chatbot['textInputMaxLength'] ?? null; |
| 136 | if ( $textInputMaxLength && strlen( $newMessage ) > (int)$textInputMaxLength ) { |
| 137 | throw new Exception( 'Sorry, your query has been rejected.' ); |
| 138 | } |
| 139 | |
| 140 | // Create QueryText |
| 141 | $context = null; |
| 142 | $mode = $chatbot['mode'] ?? 'chat'; |
| 143 | |
| 144 | if ( $mode === 'images' ) { |
| 145 | $query = new Meow_MWAI_Query_Image( $newMessage ); |
| 146 | |
| 147 | // Handle Params |
| 148 | $newParams = []; |
| 149 | foreach ( $chatbot as $key => $value ) { |
| 150 | $newParams[$key] = $value; |
| 151 | } |
| 152 | foreach ( $params as $key => $value ) { |
| 153 | $newParams[$key] = $value; |
| 154 | } |
| 155 | $params = apply_filters( 'mwai_chatbot_params', $newParams ); |
| 156 | $params['scope'] = empty( $params['scope'] ) ? 'chatbot' : $params['scope']; |
| 157 | $query->inject_params( $params ); |
| 158 | } |
| 159 | else { |
| 160 | $query = $mode === 'assistant' ? new Meow_MWAI_Query_Assistant( $newMessage ) : |
| 161 | new Meow_MWAI_Query_Text( $newMessage, 1024 ); |
| 162 | $streamCallback = null; |
| 163 | |
| 164 | // Handle Params |
| 165 | $newParams = []; |
| 166 | foreach ( $chatbot as $key => $value ) { |
| 167 | $newParams[$key] = $value; |
| 168 | } |
| 169 | foreach ( $params as $key => $value ) { |
| 170 | $newParams[$key] = $value; |
| 171 | } |
| 172 | $params = apply_filters( 'mwai_chatbot_params', $newParams ); |
| 173 | $params['scope'] = empty( $params['scope'] ) ? 'chatbot' : $params['scope']; |
| 174 | $query->inject_params( $params ); |
| 175 | |
| 176 | $storeId = null; |
| 177 | if ( $mode === 'assistant' ) { |
| 178 | $chatId = $params['chatId'] ?? null; |
| 179 | if ( !empty( $chatId ) ) { |
| 180 | $discussion = $this->core->discussions->get_discussion( $query->botId, $chatId ); |
| 181 | if ( isset( $discussion['storeId'] ) ) { |
| 182 | $storeId = $discussion['storeId']; |
| 183 | $query->setStoreId( $storeId ); |
| 184 | } |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | // Support for Uploaded Image |
| 189 | if ( !empty( $newFileId ) ) { |
| 190 | |
| 191 | // Get extension and mime type |
| 192 | $isImage = $this->core->files->is_image( $newFileId ); |
| 193 | |
| 194 | if ( $mode === 'assistant' && !$isImage ) { |
| 195 | $url = $this->core->files->get_path( $newFileId ); |
| 196 | $data = $this->core->files->get_data( $newFileId ); |
| 197 | $openai = Meow_MWAI_Engines_Factory::get_openai( $this->core, $query->envId ); |
| 198 | $filename = basename( $url ); |
| 199 | |
| 200 | // Upload the file |
| 201 | $file = $openai->upload_file( $filename, $data, 'assistants' ); |
| 202 | |
| 203 | // Create a store |
| 204 | if ( empty( $storeId ) ) { |
| 205 | $chatbotName = 'mwai_' . strtolower( !empty( $chatbot['name'] ) ? $chatbot['name'] : 'default' ); |
| 206 | if ( !empty( $query->chatId ) ) { |
| 207 | $chatbotName .= "_" . $query->chatId; |
| 208 | } |
| 209 | $expiry = $this->core->get_option( 'image_expires' ); |
| 210 | $metadata = []; |
| 211 | if ( !empty( $chatbot['assistantId'] ) ) { |
| 212 | $metadata['assistantId'] = $chatbot['assistantId']; |
| 213 | } |
| 214 | if ( !empty( $query->chatId ) ) { |
| 215 | $metadata['chatId'] = $query->chatId; |
| 216 | } |
| 217 | $storeId = $openai->create_vector_store( $chatbotName, $expiry, $metadata ); |
| 218 | $query->setStoreId( $storeId ); |
| 219 | } |
| 220 | |
| 221 | // Add the file to the store |
| 222 | $storeFileId = $openai->add_vector_store_file( $storeId, $file['id'] ); |
| 223 | |
| 224 | // Update the local file with the OpenAI RefId, StoreId and StoreFileId |
| 225 | $openAiRefId = $file['id']; |
| 226 | $internalFileId = $this->core->files->get_id_from_refId( $newFileId ); |
| 227 | $this->core->files->update_refId( $internalFileId, $openAiRefId ); |
| 228 | $this->core->files->update_envId( $internalFileId, $query->envId ); |
| 229 | $this->core->files->add_metadata( $internalFileId, 'assistant_storeId', $storeId ); |
| 230 | $this->core->files->add_metadata( $internalFileId, 'assistant_storeFileId', $storeFileId ); |
| 231 | $newFileId = $openAiRefId; |
| 232 | $scope = $params['fileSearch']; |
| 233 | if ( $scope === 'discussion' || $scope === 'user' || $scope === 'assistant' ) { |
| 234 | $id = $this->core->files->get_id_from_refId( $newFileId ); |
| 235 | $this->core->files->add_metadata( $id, 'assistant_scope', $scope ); |
| 236 | } |
| 237 | } |
| 238 | else { |
| 239 | $url = $this->core->files->get_url( $newFileId ); |
| 240 | $mimeType = $this->core->files->get_mime_type( $newFileId ); |
| 241 | $query->set_file( Meow_MWAI_Query_AttachedFile::from_url( $url, 'vision', $mimeType ) ); |
| 242 | $fileId = $this->core->files->get_id_from_refId( $newFileId ); |
| 243 | $this->core->files->update_envId( $fileId, $query->envId ); |
| 244 | $this->core->files->add_metadata( $fileId, 'query_envId', $query->envId ); |
| 245 | $this->core->files->add_metadata( $fileId, 'query_session', $query->session ); |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | // Takeover |
| 250 | $takeoverAnswer = apply_filters( 'mwai_chatbot_takeover', null, $query, $params ); |
| 251 | if ( !empty( $takeoverAnswer ) ) { |
| 252 | return [ |
| 253 | 'reply' => $takeoverAnswer, |
| 254 | 'images' => null, |
| 255 | 'usage' => null |
| 256 | ]; |
| 257 | } |
| 258 | |
| 259 | // Moderation |
| 260 | $moderationEnabled = $this->core->get_option( 'module_moderation' ) && |
| 261 | $this->core->get_option( 'shortcode_chat_moderation' ); |
| 262 | if ( $moderationEnabled ) { |
| 263 | global $mwai; |
| 264 | $isFlagged = $mwai->moderationCheck( $query->get_message() ); |
| 265 | if ( $isFlagged ) { |
| 266 | throw new Exception( 'Sorry, your message has been rejected by moderation.' ); |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | // Awareness & Embeddings |
| 271 | $context = $this->core->retrieve_context( $params, $query ); |
| 272 | if ( !empty( $context ) ) { |
| 273 | $query->set_context( $context['content'] ); |
| 274 | } |
| 275 | |
| 276 | // Function Aware |
| 277 | $query = apply_filters( 'mwai_chatbot_query', $query, $params ); |
| 278 | } |
| 279 | |
| 280 | // Process Query |
| 281 | if ( $stream ) { |
| 282 | $streamCallback = function( $reply ) { |
| 283 | $raw = $reply; |
| 284 | $this->stream_push( [ 'type' => 'live', 'data' => $raw ] ); |
| 285 | if ( ob_get_level() > 0 ) { |
| 286 | ob_flush(); |
| 287 | } |
| 288 | flush(); |
| 289 | }; |
| 290 | header( 'Cache-Control: no-cache' ); |
| 291 | header( 'Content-Type: text/event-stream' ); |
| 292 | // This is useful to disable buffering in nginx through headers. |
| 293 | header( 'X-Accel-Buffering: no' ); |
| 294 | ob_implicit_flush( true ); |
| 295 | ob_end_flush(); |
| 296 | } |
| 297 | |
| 298 | $reply = $this->core->run_query( $query, $streamCallback, true ); |
| 299 | $rawText = $reply->result; |
| 300 | $extra = []; |
| 301 | if ( $context ) { |
| 302 | $extra = [ 'embeddings' => $context['embeddings'] ]; |
| 303 | } |
| 304 | $rawText = apply_filters( 'mwai_chatbot_reply', $rawText, $query, $params, $extra ); |
| 305 | |
| 306 | $restRes = [ |
| 307 | 'reply' => $rawText, |
| 308 | 'images' => $reply->get_type() === 'images' ? $reply->results : null, |
| 309 | 'usage' => $reply->usage |
| 310 | ]; |
| 311 | |
| 312 | // Process Reply |
| 313 | if ( $stream ) { |
| 314 | $this->stream_push( [ |
| 315 | 'type' => 'end', |
| 316 | 'data' => json_encode([ |
| 317 | 'success' => true, |
| 318 | 'reply' => $restRes['reply'], |
| 319 | 'images' => $restRes['images'], |
| 320 | 'usage' => $restRes['usage'] |
| 321 | ]) |
| 322 | ] ); |
| 323 | die(); |
| 324 | } |
| 325 | else { |
| 326 | return $restRes; |
| 327 | } |
| 328 | |
| 329 | } |
| 330 | catch ( Exception $e ) { |
| 331 | $message = apply_filters( 'mwai_ai_exception', $e->getMessage() ); |
| 332 | if ( $stream ) { |
| 333 | $this->stream_push( [ 'type' => 'error', 'data' => $message ] ); |
| 334 | die(); |
| 335 | } |
| 336 | else { |
| 337 | throw $e; |
| 338 | } |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | public function stream_push( $data ) { |
| 343 | $out = "data: " . json_encode( $data ); |
| 344 | echo $out; |
| 345 | echo "\n\n"; |
| 346 | if (ob_get_level() > 0) { |
| 347 | ob_end_flush(); |
| 348 | } |
| 349 | flush(); |
| 350 | } |
| 351 | |
| 352 | public function inject_chat() { |
| 353 | $params = $this->core->get_chatbot( $this->siteWideChatId ); |
| 354 | $clean_params = []; |
| 355 | if ( !empty( $params ) ) { |
| 356 | $clean_params['window'] = true; |
| 357 | $clean_params['id'] = $this->siteWideChatId; |
| 358 | echo $this->chat_shortcode( $clean_params ); |
| 359 | } |
| 360 | return null; |
| 361 | } |
| 362 | |
| 363 | public function build_front_params( $botId, $customId ) { |
| 364 | $frontSystem = [ |
| 365 | 'botId' => $customId ? null : $botId, |
| 366 | 'customId' => $customId, |
| 367 | 'userData' => $this->core->get_user_data(), |
| 368 | 'sessionId' => $this->core->get_session_id(), |
| 369 | 'restNonce' => $this->core->get_nonce(), |
| 370 | 'contextId' => get_the_ID(), |
| 371 | 'pluginUrl' => MWAI_URL, |
| 372 | 'restUrl' => untrailingslashit( get_rest_url() ), |
| 373 | 'debugMode' => $this->core->get_option( 'debug_mode' ), |
| 374 | 'typewriter' => $this->core->get_option( 'shortcode_chat_typewriter' ), |
| 375 | 'speech_recognition' => $this->core->get_option( 'speech_recognition' ), |
| 376 | 'speech_synthesis' => $this->core->get_option( 'speech_synthesis' ), |
| 377 | 'stream' => $this->core->get_option( 'shortcode_chat_stream' ), |
| 378 | ]; |
| 379 | return $frontSystem; |
| 380 | } |
| 381 | |
| 382 | public function resolveBotInfo( &$atts ) |
| 383 | { |
| 384 | $chatbot = null; |
| 385 | $botId = $atts['id'] ?? null; |
| 386 | $customId = $atts['custom_id'] ?? null; |
| 387 | if (!$botId && !$customId) { |
| 388 | $botId = "default"; |
| 389 | } |
| 390 | if ( $botId ) { |
| 391 | $chatbot = $this->core->get_chatbot( $botId ); |
| 392 | if (!$chatbot) { |
| 393 | $botId = $botId ?: 'N/A'; |
| 394 | return [ |
| 395 | 'error' => "AI Engine: Chatbot '{$botId}' not found. If you meant to set an ID for your custom chatbot, please use 'custom_id' instead of 'id'.", |
| 396 | ]; |
| 397 | } |
| 398 | } |
| 399 | $chatbot = $chatbot ?: $this->core->get_chatbot( 'default' ); |
| 400 | if ( !empty( $customId ) ) { |
| 401 | $botId = null; |
| 402 | } |
| 403 | unset( $atts['id'] ); |
| 404 | return [ |
| 405 | 'chatbot' => $chatbot, |
| 406 | 'botId' => $botId, |
| 407 | 'customId' => $customId, |
| 408 | ]; |
| 409 | } |
| 410 | |
| 411 | public function chat_shortcode( $atts ) { |
| 412 | $atts = empty( $atts ) ? [] : $atts; |
| 413 | |
| 414 | // Let the user override the chatbot params |
| 415 | $atts = apply_filters( 'mwai_chatbot_params', $atts ); |
| 416 | |
| 417 | // Resolve the bot info |
| 418 | $resolvedBot = $this->resolveBotInfo( $atts, 'chatbot' ); |
| 419 | if ( isset( $resolvedBot['error'] ) ) { |
| 420 | return $resolvedBot['error']; |
| 421 | } |
| 422 | $chatbot = $resolvedBot['chatbot']; |
| 423 | $botId = $resolvedBot['botId']; |
| 424 | $customId = $resolvedBot['customId']; |
| 425 | |
| 426 | // Rename the keys of the atts into camelCase to match the internal params system. |
| 427 | $atts = array_map( function( $key, $value ) { |
| 428 | $key = str_replace( '_', ' ', $key ); |
| 429 | $key = ucwords( $key ); |
| 430 | $key = str_replace( ' ', '', $key ); |
| 431 | $key = lcfirst( $key ); |
| 432 | return [ $key => $value ]; |
| 433 | }, array_keys( $atts ), $atts ); |
| 434 | $atts = array_merge( ...$atts ); |
| 435 | |
| 436 | $frontParams = []; |
| 437 | foreach ( MWAI_CHATBOT_FRONT_PARAMS as $param ) { |
| 438 | if ( isset( $atts[$param] ) ) { |
| 439 | if ( $param === 'localMemory' ) { |
| 440 | $frontParams[$param] = $atts[$param] === 'true'; |
| 441 | } |
| 442 | else { |
| 443 | $frontParams[$param] = $atts[$param]; |
| 444 | } |
| 445 | } |
| 446 | else if ( isset( $chatbot[$param] ) ) { |
| 447 | $frontParams[$param] = $chatbot[$param]; |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | // Server Params |
| 452 | // NOTE: We don't need the server params for the chatbot if there are no overrides, it means |
| 453 | // we are using the default or a specific chatbot. |
| 454 | $hasServerOverrides = count( array_intersect( array_keys( $atts ), MWAI_CHATBOT_SERVER_PARAMS ) ) > 0; |
| 455 | $serverParams = []; |
| 456 | if ( $hasServerOverrides ) { |
| 457 | foreach ( MWAI_CHATBOT_SERVER_PARAMS as $param ) { |
| 458 | if ( isset( $atts[$param] ) ) { |
| 459 | $serverParams[$param] = $atts[$param]; |
| 460 | } |
| 461 | else { |
| 462 | $serverParams[$param] = $chatbot[$param] ?? null; |
| 463 | } |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | // Front Params |
| 468 | $frontSystem = $this->build_front_params( $botId, $customId ); |
| 469 | |
| 470 | // Clean Params |
| 471 | $frontParams = $this->clean_params( $frontParams ); |
| 472 | $frontSystem = $this->clean_params( $frontSystem ); |
| 473 | $serverParams = $this->clean_params( $serverParams ); |
| 474 | |
| 475 | // Server-side: Keep the System Params |
| 476 | if ( $hasServerOverrides ) { |
| 477 | if ( empty( $customId ) ) { |
| 478 | $customId = md5( json_encode( $serverParams ) ); |
| 479 | $frontSystem['customId'] = $customId; |
| 480 | } |
| 481 | set_transient( 'mwai_custom_chatbot_' . $customId, $serverParams, 60 * 60 * 24 ); |
| 482 | } |
| 483 | |
| 484 | // Client-side: Prepare JSON for Front Params and System Params |
| 485 | $theme = isset( $frontParams['themeId'] ) ? $this->core->get_theme( $frontParams['themeId'] ) : null; |
| 486 | $jsonFrontParams = htmlspecialchars( json_encode( $frontParams ), ENT_QUOTES, 'UTF-8' ); |
| 487 | $jsonFrontSystem = htmlspecialchars( json_encode( $frontSystem ), ENT_QUOTES, 'UTF-8' ); |
| 488 | $jsonFrontTheme = htmlspecialchars( json_encode( $theme ), ENT_QUOTES, 'UTF-8' ); |
| 489 | //$jsonAttributes = htmlspecialchars(json_encode($atts), ENT_QUOTES, 'UTF-8'); |
| 490 | |
| 491 | $this->enqueue_scripts(); |
| 492 | return "<div class='mwai-chatbot-container' data-params='{$jsonFrontParams}' data-system='{$jsonFrontSystem}' data-theme='{$jsonFrontTheme}'></div>"; |
| 493 | } |
| 494 | |
| 495 | function shortcode_chat_discussions( $atts ) { |
| 496 | $atts = empty($atts) ? [] : $atts; |
| 497 | |
| 498 | // Resolve the bot info |
| 499 | $resolvedBot = $this->resolveBotInfo( $atts ); |
| 500 | if ( isset( $resolvedBot['error'] ) ) { |
| 501 | return $resolvedBot['error']; |
| 502 | } |
| 503 | $chatbot = $resolvedBot['chatbot']; |
| 504 | $botId = $resolvedBot['botId']; |
| 505 | $customId = $resolvedBot['customId']; |
| 506 | |
| 507 | // Rename the keys of the atts into camelCase to match the internal params system. |
| 508 | $atts = array_map( function( $key, $value ) { |
| 509 | $key = str_replace( '_', ' ', $key ); |
| 510 | $key = ucwords( $key ); |
| 511 | $key = str_replace( ' ', '', $key ); |
| 512 | $key = lcfirst( $key ); |
| 513 | return [ $key => $value ]; |
| 514 | }, array_keys( $atts ), $atts ); |
| 515 | $atts = array_merge( ...$atts ); |
| 516 | |
| 517 | // Front Params |
| 518 | $frontParams = []; |
| 519 | foreach ( MWAI_DISCUSSIONS_FRONT_PARAMS as $param ) { |
| 520 | if ( isset( $atts[$param] ) ) { |
| 521 | $frontParams[$param] = $atts[$param]; |
| 522 | } |
| 523 | else if ( isset( $chatbot[$param] ) ) { |
| 524 | $frontParams[$param] = $chatbot[$param]; |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | // Server Params |
| 529 | $serverParams = []; |
| 530 | foreach ( MWAI_DISCUSSIONS_SERVER_PARAMS as $param ) { |
| 531 | if ( isset( $atts[$param] ) ) { |
| 532 | $serverParams[$param] = $atts[$param]; |
| 533 | } |
| 534 | } |
| 535 | |
| 536 | // Front System |
| 537 | $frontSystem = $this->build_front_params( $botId, $customId ); |
| 538 | |
| 539 | // Clean Params |
| 540 | $frontParams = $this->clean_params( $frontParams ); |
| 541 | $frontSystem = $this->clean_params( $frontSystem ); |
| 542 | $serverParams = $this->clean_params( $serverParams ); |
| 543 | |
| 544 | $theme = isset( $frontParams['themeId'] ) ? $this->core->get_theme( $frontParams['themeId'] ) : null; |
| 545 | $jsonFrontParams = htmlspecialchars( json_encode( $frontParams ), ENT_QUOTES, 'UTF-8' ); |
| 546 | $jsonFrontSystem = htmlspecialchars( json_encode( $frontSystem ), ENT_QUOTES, 'UTF-8' ); |
| 547 | $jsonFrontTheme = htmlspecialchars( json_encode( $theme ), ENT_QUOTES, 'UTF-8' ); |
| 548 | |
| 549 | return "<div class='mwai-discussions-container' data-params='{$jsonFrontParams}' data-system='{$jsonFrontSystem}' data-theme='{$jsonFrontTheme}'></div>"; |
| 550 | } |
| 551 | |
| 552 | function clean_params( &$params ) { |
| 553 | foreach ( $params as $param => $value ) { |
| 554 | if ( $param === 'restNonce' ) { |
| 555 | continue; |
| 556 | } |
| 557 | if ( empty( $value ) || is_array( $value ) ) { |
| 558 | continue; |
| 559 | } |
| 560 | $lowerCaseValue = strtolower( $value ); |
| 561 | if ( $lowerCaseValue === 'true' || $lowerCaseValue === 'false' || is_bool( $value ) ) { |
| 562 | $params[$param] = filter_var( $value, FILTER_VALIDATE_BOOLEAN ); |
| 563 | } |
| 564 | else if ( is_numeric( $value ) ) { |
| 565 | $params[$param] = filter_var( $value, FILTER_VALIDATE_FLOAT ); |
| 566 | } |
| 567 | } |
| 568 | return $params; |
| 569 | } |
| 570 | |
| 571 | } |
| 572 |