assistants.php
3 years ago
chatbot.php
3 years ago
chatbot_legacy.php
3 years ago
chatbot_logs.php
3 years ago
discussions.php
3 years ago
chatbot.php
232 lines
| 1 | <?php |
| 2 | |
| 3 | define( 'MWAI_CHATBOT_FRONT_PARAMS', [ 'aiName', 'userName', 'guestName', 'textSend', 'textClear', |
| 4 | 'textInputPlaceholder', 'textInputMaxLength', 'textCompliance', 'startSentence', 'localMemory', |
| 5 | 'themeId', 'window', 'icon', 'iconText', 'iconAlt', 'iconPosition', 'fullscreen', 'copyButton' |
| 6 | ] ); |
| 7 | |
| 8 | class Meow_MWAI_Modules_Chatbot { |
| 9 | private $core = null; |
| 10 | private $namespace = 'mwai-bot/v1'; |
| 11 | private $siteWideChatId = null; |
| 12 | |
| 13 | public function __construct() { |
| 14 | global $mwai_core; |
| 15 | $this->core = $mwai_core; |
| 16 | add_shortcode( 'mwai_chatbot_v2', array( $this, 'chat' ) ); |
| 17 | add_action( 'rest_api_init', array( $this, 'rest_api_init' ) ); |
| 18 | $this->siteWideChatId = $this->core->get_option( 'chatId' ); |
| 19 | add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); |
| 20 | } |
| 21 | |
| 22 | public function register_scripts() { |
| 23 | wp_register_script( 'mwai_highlight', MWAI_URL . 'vendor/highlightjs/highlight.min.js', [], '11.7', false ); |
| 24 | $physical_file = MWAI_PATH . '/app/chatbot.js'; |
| 25 | $cache_buster = file_exists( $physical_file ) ? filemtime( $physical_file ) : MWAI_VERSION; |
| 26 | wp_register_script( 'mwai_chatbot', MWAI_URL . '/app/chatbot.js', [ 'wp-element' ], $cache_buster, false ); |
| 27 | if ( !empty( $this->siteWideChatId ) && $this->siteWideChatId !== 'none' ) { |
| 28 | $this->enqueue_scripts(); |
| 29 | add_action( 'wp_footer', array( $this, 'inject_chat' ) ); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | public function enqueue_scripts() { |
| 34 | wp_enqueue_script( "mwai_chatbot" ); |
| 35 | if ( $this->core->get_option( 'shortcode_chat_syntax_highlighting' ) ) { |
| 36 | wp_enqueue_script( "mwai_highlight" ); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | public function rest_api_init() { |
| 41 | register_rest_route( $this->namespace, '/chat', array( |
| 42 | 'methods' => 'POST', |
| 43 | 'callback' => array( $this, 'rest_chat' ), |
| 44 | 'permission_callback' => '__return_true' |
| 45 | ) ); |
| 46 | } |
| 47 | |
| 48 | public function basics_security_check( $params ) { |
| 49 | if ( empty( $params['newMessage'] ) ) { |
| 50 | return false; |
| 51 | } |
| 52 | if ( empty( $params['chatId'] ) ) { |
| 53 | return false; |
| 54 | } |
| 55 | $length = strlen( trim( $params['newMessage'] ) ); |
| 56 | if ( $length < 1 || $length > ( 4096 - 512 ) ) { |
| 57 | return false; |
| 58 | } |
| 59 | return true; |
| 60 | } |
| 61 | |
| 62 | public function rest_chat( $request ) { |
| 63 | try { |
| 64 | $params = $request->get_json_params(); |
| 65 | if ( !$this->basics_security_check( $params )) { |
| 66 | return new WP_REST_Response( [ |
| 67 | 'success' => false, |
| 68 | 'message' => 'Sorry, your query has been rejected.' ], 403 |
| 69 | ); |
| 70 | } |
| 71 | $chatbot = $this->core->getChatbot( $params['chatId'] ); |
| 72 | if ( !$chatbot ) { |
| 73 | return new WP_REST_Response( [ |
| 74 | 'success' => false, |
| 75 | 'message' => 'Sorry, your query has been rejected.' ], 403 |
| 76 | ); |
| 77 | } |
| 78 | |
| 79 | // Create QueryText |
| 80 | $context = null; |
| 81 | if ( $chatbot['mode'] === 'images' ) { |
| 82 | $query = new Meow_MWAI_QueryImage( $params['newMessage'] ); |
| 83 | |
| 84 | // Handle Params |
| 85 | $newParams = []; |
| 86 | foreach ( $chatbot as $key => $value ) { |
| 87 | $newParams[$key] = $value; |
| 88 | } |
| 89 | foreach ( $params as $key => $value ) { |
| 90 | $newParams[$key] = $value; |
| 91 | } |
| 92 | $params = apply_filters( 'mwai_chatbot_params', $newParams ); |
| 93 | $query->injectParams( $params ); |
| 94 | } |
| 95 | else { |
| 96 | $query = new Meow_MWAI_QueryText( $params['newMessage'], 1024 ); |
| 97 | $query->setIsChat( true ); |
| 98 | |
| 99 | // Handle Params |
| 100 | $newParams = []; |
| 101 | foreach ( $chatbot as $key => $value ) { |
| 102 | $newParams[$key] = $value; |
| 103 | } |
| 104 | foreach ( $params as $key => $value ) { |
| 105 | $newParams[$key] = $value; |
| 106 | } |
| 107 | $params = apply_filters( 'mwai_chatbot_params', $newParams ); |
| 108 | $query->injectParams( $params ); |
| 109 | |
| 110 | // Takeover |
| 111 | $takeoverAnswer = apply_filters( 'mwai_chatbot_takeover', null, $query, $params ); |
| 112 | if ( !empty( $takeoverAnswer ) ) { |
| 113 | return new WP_REST_Response( [ 'success' => true, 'answer' => $takeoverAnswer, |
| 114 | 'html' => $takeoverAnswer, 'usage' => null ], 200 ); |
| 115 | } |
| 116 | |
| 117 | // Moderation |
| 118 | if ( $this->core->get_option( 'shortcode_chat_moderation' ) ) { |
| 119 | global $mwai; |
| 120 | $isFlagged = $mwai->moderationCheck( $query->prompt ); |
| 121 | if ( $isFlagged ) { |
| 122 | return new WP_REST_Response( [ |
| 123 | 'success' => false, |
| 124 | 'message' => 'Sorry, your message has been rejected by moderation.' ], 403 |
| 125 | ); |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | // Awareness & Embeddings |
| 130 | $embeddingsIndex = $params['embeddingsIndex']; |
| 131 | if ( $query->mode === 'chat' && !empty( $embeddingsIndex ) ) { |
| 132 | $context = apply_filters( 'mwai_context_search', $query, $embeddingsIndex ); |
| 133 | if ( !empty( $context ) ) { |
| 134 | $content = $this->core->cleanSentences( $context['content'] ); |
| 135 | $query->injectContext( $content ); |
| 136 | } |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | // Query the AI |
| 141 | $answer = $this->core->ai->run( $query ); |
| 142 | $rawText = $answer->result; |
| 143 | $extra = []; |
| 144 | if ( $context ) { |
| 145 | $extra = [ 'embeddings' => $context['embeddings'] ]; |
| 146 | } |
| 147 | $html = apply_filters( 'mwai_chatbot_reply', $rawText, $query, $params, $extra ); |
| 148 | if ( $this->core->get_option( 'shortcode_chat_formatting' ) ) { |
| 149 | $html = $this->core->markdown_to_html( $html ); |
| 150 | } |
| 151 | return new WP_REST_Response( [ |
| 152 | 'success' => true, |
| 153 | 'answer' => $rawText, |
| 154 | 'images' => $chatbot['mode'] === 'images' ? $answer->results : null, |
| 155 | 'html' => $html, |
| 156 | 'usage' => $answer->usage |
| 157 | ], 200 ); |
| 158 | } |
| 159 | catch ( Exception $e ) { |
| 160 | return new WP_REST_Response( [ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | public function inject_chat() { |
| 165 | $params = $this->core->getChatbot( $this->siteWideChatId ); |
| 166 | $cleanParams = []; |
| 167 | if ( !empty( $params ) ) { |
| 168 | $cleanParams['window'] = true; |
| 169 | $cleanParams['id'] = $this->siteWideChatId; |
| 170 | echo $this->chat( $cleanParams ); |
| 171 | } |
| 172 | return null; |
| 173 | } |
| 174 | |
| 175 | public function chat( $atts ) { |
| 176 | $chatId = isset( $atts['id'] ) ? $atts['id'] : 'default'; |
| 177 | $chatbot = $this->core->getChatbot( $chatId ); |
| 178 | if ( !$chatbot ) { |
| 179 | return "Chatbot not found."; |
| 180 | } |
| 181 | unset( $atts['id'] ); |
| 182 | |
| 183 | // Rename the keys of the atts into camelCase to match the internal params system. |
| 184 | $atts = array_map( function( $key, $value ) { |
| 185 | $key = str_replace( '_', ' ', $key ); |
| 186 | $key = ucwords( $key ); |
| 187 | $key = str_replace( ' ', '', $key ); |
| 188 | $key = lcfirst( $key ); |
| 189 | return [ $key => $value ]; |
| 190 | }, array_keys( $atts ), $atts ); |
| 191 | $atts = array_merge( ...$atts ); |
| 192 | |
| 193 | $frontParams = []; |
| 194 | foreach ( MWAI_CHATBOT_FRONT_PARAMS as $param ) { |
| 195 | if ( isset( $atts[$param] ) ) { |
| 196 | if ( $param === 'localMemory' ) { |
| 197 | // It's a boolean |
| 198 | $frontParams[$param] = $atts[$param] === 'true'; |
| 199 | } |
| 200 | else { |
| 201 | $frontParams[$param] = $atts[$param]; |
| 202 | } |
| 203 | } |
| 204 | else if ( isset( $chatbot[$param] ) ) { |
| 205 | $frontParams[$param] = $chatbot[$param]; |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | $frontSystem = [ |
| 210 | 'chatId' => $chatId, |
| 211 | 'userData' => $this->core->getUserData(), |
| 212 | 'sessionId' => $this->core->get_session_id(), |
| 213 | 'restNonce' => wp_create_nonce( 'wp_rest' ), |
| 214 | 'contextId' => get_the_ID(), |
| 215 | 'pluginUrl' => MWAI_URL, |
| 216 | 'restUrl' => untrailingslashit( rest_url() ), |
| 217 | 'debugMode' => $this->core->get_option( 'debug_mode' ), |
| 218 | 'typewriter' => $this->core->get_option( 'shortcode_chat_typewriter' ) |
| 219 | ]; |
| 220 | |
| 221 | $theme = isset( $frontParams['themeId'] ) ? $this->core->getTheme( $frontParams['themeId'] ) : null; |
| 222 | $jsonFrontParams = htmlspecialchars(json_encode($frontParams), ENT_QUOTES, 'UTF-8'); |
| 223 | $jsonFrontSystem = htmlspecialchars(json_encode($frontSystem), ENT_QUOTES, 'UTF-8'); |
| 224 | $jsonFrontTheme = htmlspecialchars(json_encode($theme), ENT_QUOTES, 'UTF-8'); |
| 225 | $jsonAttributes = htmlspecialchars(json_encode($atts), ENT_QUOTES, 'UTF-8'); |
| 226 | |
| 227 | $this->enqueue_scripts(); |
| 228 | return "<div class='mwai-chatbot-container' data-params='{$jsonFrontParams}' data-system='{$jsonFrontSystem}' data-theme='{$jsonFrontTheme}' data-atts='{$jsonAttributes}'></div>"; |
| 229 | } |
| 230 | |
| 231 | } |
| 232 |