assistants.php
3 years ago
chatbot.php
2 years ago
chatbot_legacy.php
2 years ago
discussions.php
2 years ago
security.php
3 years ago
chatbot.php
498 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', |
| 7 | 'textInputPlaceholder', 'textInputMaxLength', 'textCompliance', 'startSentence', 'localMemory', |
| 8 | 'themeId', 'window', 'icon', 'iconText', 'iconAlt', 'iconPosition', 'fullscreen', 'copyButton' |
| 9 | ] ); |
| 10 | define( 'MWAI_CHATBOT_SERVER_PARAMS', [ 'id', 'env', 'mode', 'contentAware', 'context', |
| 11 | 'embeddingsEnvId', 'embeddingsIndex', 'embeddingsNamespace', |
| 12 | 'casuallyFineTuned', 'promptEnding', 'completionEnding', 'model', 'temperature', 'maxTokens', |
| 13 | 'maxResults', 'apiKey', 'service' |
| 14 | ] ); |
| 15 | |
| 16 | // Params for the discussions (front and server) |
| 17 | |
| 18 | define( 'MWAI_DISCUSSIONS_FRONT_PARAMS', [ 'themeId', 'textNewChat' ] ); |
| 19 | define( 'MWAI_DISCUSSIONS_SERVER_PARAMS', [ 'customId' ] ); |
| 20 | |
| 21 | class Meow_MWAI_Modules_Chatbot { |
| 22 | private $core = null; |
| 23 | private $namespace = 'mwai-ui/v1'; |
| 24 | private $siteWideChatId = null; |
| 25 | |
| 26 | public function __construct() { |
| 27 | global $mwai_core; |
| 28 | $this->core = $mwai_core; |
| 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' => array( $this, 'rest_chat' ), |
| 61 | 'permission_callback' => '__return_true' |
| 62 | ) ); |
| 63 | |
| 64 | } |
| 65 | |
| 66 | public function basics_security_check( $botId, $customId, $newMessage ) { |
| 67 | if ( empty( $newMessage ) ) { |
| 68 | error_log("AI Engine: The query was rejected - message was empty."); |
| 69 | return false; |
| 70 | } |
| 71 | if ( !$botId && !$customId ) { |
| 72 | error_log("AI Engine: The query was rejected - no botId nor id was specified."); |
| 73 | return false; |
| 74 | } |
| 75 | |
| 76 | $length = strlen( $newMessage ); |
| 77 | if ( $length < 1 || $length > ( 4096 * 16 ) ) { |
| 78 | error_log("AI Engine: The query was rejected - message was too short or too long."); |
| 79 | return false; |
| 80 | } |
| 81 | return true; |
| 82 | } |
| 83 | |
| 84 | public function rest_chat( $request ) { |
| 85 | $params = $request->get_json_params(); |
| 86 | $botId = $params['botId'] ?? null; |
| 87 | $customId = $params['customId'] ?? null; |
| 88 | $stream = $params['stream'] ?? false; |
| 89 | $newMessage = trim( $params['newMessage'] ?? '' ); |
| 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, $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, $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->getChatbot( $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 | // Create QueryText |
| 136 | $context = null; |
| 137 | $mode = $chatbot['mode'] ?? 'chat'; |
| 138 | |
| 139 | if ( $mode === 'images' ) { |
| 140 | $query = new Meow_MWAI_Query_Image( $newMessage ); |
| 141 | |
| 142 | // Handle Params |
| 143 | $newParams = []; |
| 144 | foreach ( $chatbot as $key => $value ) { |
| 145 | $newParams[$key] = $value; |
| 146 | } |
| 147 | foreach ( $params as $key => $value ) { |
| 148 | $newParams[$key] = $value; |
| 149 | } |
| 150 | $params = apply_filters( 'mwai_chatbot_params', $newParams ); |
| 151 | $params['env'] = empty( $params['env'] ) ? 'chatbot' : $params['env']; |
| 152 | $query->injectParams( $params ); |
| 153 | } |
| 154 | else { |
| 155 | $query = new Meow_MWAI_Query_Text( $newMessage, 1024 ); |
| 156 | $streamCallback = null; |
| 157 | |
| 158 | // Handle Params |
| 159 | $newParams = []; |
| 160 | foreach ( $chatbot as $key => $value ) { |
| 161 | $newParams[$key] = $value; |
| 162 | } |
| 163 | foreach ( $params as $key => $value ) { |
| 164 | $newParams[$key] = $value; |
| 165 | } |
| 166 | $params = apply_filters( 'mwai_chatbot_params', $newParams ); |
| 167 | $params['env'] = empty( $params['env'] ) ? 'chatbot' : $params['env']; |
| 168 | $query->injectParams( $params ); |
| 169 | |
| 170 | // Takeover |
| 171 | $takeoverAnswer = apply_filters( 'mwai_chatbot_takeover', null, $query, $params ); |
| 172 | if ( !empty( $takeoverAnswer ) ) { |
| 173 | return [ |
| 174 | 'reply' => $takeoverAnswer, |
| 175 | 'images' => null, |
| 176 | 'usage' => null |
| 177 | ]; |
| 178 | } |
| 179 | |
| 180 | // Moderation |
| 181 | if ( $this->core->get_option( 'shortcode_chat_moderation' ) ) { |
| 182 | global $mwai; |
| 183 | $isFlagged = $mwai->moderationCheck( $query->prompt ); |
| 184 | if ( $isFlagged ) { |
| 185 | throw new Exception( 'Sorry, your message has been rejected by moderation.' ); |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | // Awareness & Embeddings |
| 190 | // TODO: This is same in Chatbot Legacy and Forms, maybe we should move it to the core? |
| 191 | $embeddingsEnvId = $params['embeddingsEnvId'] ?? null; |
| 192 | $embeddingsIndex = $params['embeddingsIndex'] ?? null; |
| 193 | $embeddingsNamespace = $params['embeddingsNamespace'] ?? null; |
| 194 | if ( $query->mode === 'chat' ) { |
| 195 | $context = apply_filters( 'mwai_context_search', $context, $query, [ |
| 196 | 'embeddingsEnvId' => $embeddingsEnvId, |
| 197 | 'embeddingsIndex' => $embeddingsIndex, |
| 198 | 'embeddingsNamespace' => $embeddingsNamespace |
| 199 | ] ); |
| 200 | if ( !empty( $context ) ) { |
| 201 | if ( isset( $context['content'] ) ) { |
| 202 | $content = $this->core->cleanSentences( $context['content'] ); |
| 203 | $query->injectContext( $content ); |
| 204 | } |
| 205 | else { |
| 206 | error_log( "AI Engine: A context without content was returned." ); |
| 207 | } |
| 208 | } |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | // Process Query |
| 213 | if ( $stream ) { |
| 214 | $streamCallback = function( $reply ) { |
| 215 | //$raw = _wp_specialchars( $reply, ENT_NOQUOTES, 'UTF-8', true ); |
| 216 | $raw = $reply; |
| 217 | $this->stream_push( [ 'type' => 'live', 'data' => $raw ] ); |
| 218 | if ( ob_get_level() > 0 ) { |
| 219 | ob_flush(); |
| 220 | } |
| 221 | flush(); |
| 222 | }; |
| 223 | header( 'Cache-Control: no-cache' ); |
| 224 | header( 'Content-Type: text/event-stream' ); |
| 225 | header( 'X-Accel-Buffering: no' ); // This is useful to disable buffering in nginx through headers. |
| 226 | ob_implicit_flush( true ); |
| 227 | ob_end_flush(); |
| 228 | } |
| 229 | |
| 230 | $reply = $this->core->ai->run( $query, $streamCallback ); |
| 231 | $rawText = $reply->result; |
| 232 | $extra = []; |
| 233 | if ( $context ) { |
| 234 | $extra = [ 'embeddings' => $context['embeddings'] ]; |
| 235 | } |
| 236 | |
| 237 | $rawText = apply_filters( 'mwai_chatbot_reply', $rawText, $query, $params, $extra ); |
| 238 | // TODO: There is no need for the shortcode_chat_formatting sice Markdown is handled on the client side. |
| 239 | // if ( $this->core->get_option( 'shortcode_chat_formatting' ) ) { |
| 240 | // $html = $this->core->markdown_to_html( $rawText ); |
| 241 | // } |
| 242 | |
| 243 | $restRes = [ |
| 244 | 'reply' => $rawText, |
| 245 | 'images' => $reply->getType() === 'images' ? $reply->results : null, |
| 246 | 'usage' => $reply->usage |
| 247 | ]; |
| 248 | |
| 249 | // Process Reply |
| 250 | if ( $stream ) { |
| 251 | $this->stream_push( [ |
| 252 | 'type' => 'end', |
| 253 | 'data' => json_encode([ |
| 254 | 'success' => true, |
| 255 | 'reply' => $restRes['reply'], |
| 256 | 'images' => $restRes['images'], |
| 257 | 'usage' => $restRes['usage'] |
| 258 | ]) |
| 259 | ] ); |
| 260 | die(); |
| 261 | } |
| 262 | else { |
| 263 | return $restRes; |
| 264 | } |
| 265 | |
| 266 | } |
| 267 | catch ( Exception $e ) { |
| 268 | $message = apply_filters( 'mwai_ai_exception', $e->getMessage() ); |
| 269 | if ( $stream ) { |
| 270 | $this->stream_push( [ 'type' => 'error', 'data' => $message ] ); |
| 271 | die(); |
| 272 | } |
| 273 | else { |
| 274 | throw $e; |
| 275 | } |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | public function stream_push( $data ) { |
| 280 | $out = "data: " . json_encode( $data ); |
| 281 | echo $out; |
| 282 | echo "\n\n"; |
| 283 | if (ob_get_level() > 0) { |
| 284 | ob_end_flush(); |
| 285 | } |
| 286 | flush(); |
| 287 | } |
| 288 | |
| 289 | public function inject_chat() { |
| 290 | $params = $this->core->getChatbot( $this->siteWideChatId ); |
| 291 | $cleanParams = []; |
| 292 | if ( !empty( $params ) ) { |
| 293 | $cleanParams['window'] = true; |
| 294 | $cleanParams['id'] = $this->siteWideChatId; |
| 295 | echo $this->chat_shortcode( $cleanParams ); |
| 296 | } |
| 297 | return null; |
| 298 | } |
| 299 | |
| 300 | public function build_front_params( $botId, $customId ) { |
| 301 | $frontSystem = [ |
| 302 | 'botId' => $botId, |
| 303 | 'customId' => $customId, |
| 304 | 'userData' => $this->core->getUserData(), |
| 305 | 'sessionId' => $this->core->get_session_id(), |
| 306 | 'restNonce' => $this->core->get_nonce(), |
| 307 | 'contextId' => get_the_ID(), |
| 308 | 'pluginUrl' => MWAI_URL, |
| 309 | 'restUrl' => untrailingslashit( rest_url() ), |
| 310 | 'debugMode' => $this->core->get_option( 'debug_mode' ), |
| 311 | 'typewriter' => $this->core->get_option( 'shortcode_chat_typewriter' ), |
| 312 | 'speech_recognition' => $this->core->get_option( 'speech_recognition' ), |
| 313 | 'speech_synthesis' => $this->core->get_option( 'speech_synthesis' ), |
| 314 | 'stream' => $this->core->get_option( 'shortcode_chat_stream' ), |
| 315 | ]; |
| 316 | return $frontSystem; |
| 317 | } |
| 318 | |
| 319 | public function resolveBotInfo( &$atts ) |
| 320 | { |
| 321 | $chatbot = null; |
| 322 | $botId = $atts['id'] ?? null; |
| 323 | $customId = $atts['custom_id'] ?? null; |
| 324 | if (!$botId && !$customId) { |
| 325 | $botId = "default"; |
| 326 | } |
| 327 | if ( $botId ) { |
| 328 | $chatbot = $this->core->getChatbot( $botId ); |
| 329 | if (!$chatbot) { |
| 330 | $botId = $botId ?: 'N/A'; |
| 331 | return [ |
| 332 | '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'.", |
| 333 | ]; |
| 334 | } |
| 335 | } |
| 336 | $chatbot = $chatbot ?: $this->core->getChatbot( 'default' ); |
| 337 | if ( !empty( $customId ) ) { |
| 338 | $botId = null; |
| 339 | } |
| 340 | unset( $atts['id'] ); |
| 341 | return [ |
| 342 | 'chatbot' => $chatbot, |
| 343 | 'botId' => $botId, |
| 344 | 'customId' => $customId, |
| 345 | ]; |
| 346 | } |
| 347 | |
| 348 | public function chat_shortcode( $atts ) { |
| 349 | $atts = empty($atts) ? [] : $atts; |
| 350 | |
| 351 | // Let the user override the chatbot params |
| 352 | $atts = apply_filters( 'mwai_chatbot_params', $atts ); |
| 353 | |
| 354 | // Resolve the bot info |
| 355 | $resolvedBot = $this->resolveBotInfo( $atts, 'chatbot' ); |
| 356 | if ( isset( $resolvedBot['error'] ) ) { |
| 357 | return $resolvedBot['error']; |
| 358 | } |
| 359 | $chatbot = $resolvedBot['chatbot']; |
| 360 | $botId = $resolvedBot['botId']; |
| 361 | $customId = $resolvedBot['customId']; |
| 362 | |
| 363 | // Rename the keys of the atts into camelCase to match the internal params system. |
| 364 | $atts = array_map( function( $key, $value ) { |
| 365 | $key = str_replace( '_', ' ', $key ); |
| 366 | $key = ucwords( $key ); |
| 367 | $key = str_replace( ' ', '', $key ); |
| 368 | $key = lcfirst( $key ); |
| 369 | return [ $key => $value ]; |
| 370 | }, array_keys( $atts ), $atts ); |
| 371 | $atts = array_merge( ...$atts ); |
| 372 | |
| 373 | $frontParams = []; |
| 374 | foreach ( MWAI_CHATBOT_FRONT_PARAMS as $param ) { |
| 375 | if ( isset( $atts[$param] ) ) { |
| 376 | if ( $param === 'localMemory' ) { |
| 377 | $frontParams[$param] = $atts[$param] === 'true'; |
| 378 | } |
| 379 | else { |
| 380 | $frontParams[$param] = $atts[$param]; |
| 381 | } |
| 382 | } |
| 383 | else if ( isset( $chatbot[$param] ) ) { |
| 384 | $frontParams[$param] = $chatbot[$param]; |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | // Server Params |
| 389 | $serverParams = []; |
| 390 | foreach ( MWAI_CHATBOT_SERVER_PARAMS as $param ) { |
| 391 | if ( isset( $atts[$param] ) ) { |
| 392 | $serverParams[$param] = $atts[$param]; |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | // Front Params |
| 397 | $frontSystem = $this->build_front_params( $botId, $customId ); |
| 398 | |
| 399 | // Clean Params |
| 400 | $frontParams = $this->cleanParams( $frontParams ); |
| 401 | $frontSystem = $this->cleanParams( $frontSystem ); |
| 402 | $serverParams = $this->cleanParams( $serverParams ); |
| 403 | |
| 404 | // Server-side: Keep the System Params |
| 405 | if ( count( $serverParams ) > 0 ) { |
| 406 | if ( empty( $customId ) ) { |
| 407 | $customId = md5( json_encode( $serverParams ) ); |
| 408 | $frontSystem['customId'] = $customId; |
| 409 | } |
| 410 | set_transient( 'mwai_custom_chatbot_' . $customId, $serverParams, 60 * 60 * 24 ); |
| 411 | } |
| 412 | |
| 413 | // Client-side: Prepare JSON for Front Params and System Params |
| 414 | $theme = isset( $frontParams['themeId'] ) ? $this->core->getTheme( $frontParams['themeId'] ) : null; |
| 415 | $jsonFrontParams = htmlspecialchars( json_encode( $frontParams ), ENT_QUOTES, 'UTF-8' ); |
| 416 | $jsonFrontSystem = htmlspecialchars( json_encode( $frontSystem ), ENT_QUOTES, 'UTF-8' ); |
| 417 | $jsonFrontTheme = htmlspecialchars( json_encode( $theme ), ENT_QUOTES, 'UTF-8' ); |
| 418 | //$jsonAttributes = htmlspecialchars(json_encode($atts), ENT_QUOTES, 'UTF-8'); |
| 419 | |
| 420 | $this->enqueue_scripts(); |
| 421 | return "<div class='mwai-chatbot-container' data-params='{$jsonFrontParams}' data-system='{$jsonFrontSystem}' data-theme='{$jsonFrontTheme}'></div>"; |
| 422 | } |
| 423 | |
| 424 | function shortcode_chat_discussions( $atts ) { |
| 425 | $atts = empty($atts) ? [] : $atts; |
| 426 | |
| 427 | // Resolve the bot info |
| 428 | $resolvedBot = $this->resolveBotInfo( $atts ); |
| 429 | if ( isset( $resolvedBot['error'] ) ) { |
| 430 | return $resolvedBot['error']; |
| 431 | } |
| 432 | $chatbot = $resolvedBot['chatbot']; |
| 433 | $botId = $resolvedBot['botId']; |
| 434 | $customId = $resolvedBot['customId']; |
| 435 | |
| 436 | // Rename the keys of the atts into camelCase to match the internal params system. |
| 437 | $atts = array_map( function( $key, $value ) { |
| 438 | $key = str_replace( '_', ' ', $key ); |
| 439 | $key = ucwords( $key ); |
| 440 | $key = str_replace( ' ', '', $key ); |
| 441 | $key = lcfirst( $key ); |
| 442 | return [ $key => $value ]; |
| 443 | }, array_keys( $atts ), $atts ); |
| 444 | $atts = array_merge( ...$atts ); |
| 445 | |
| 446 | // Front Params |
| 447 | $frontParams = []; |
| 448 | foreach ( MWAI_DISCUSSIONS_FRONT_PARAMS as $param ) { |
| 449 | if ( isset( $atts[$param] ) ) { |
| 450 | $frontParams[$param] = $atts[$param]; |
| 451 | } |
| 452 | else if ( isset( $chatbot[$param] ) ) { |
| 453 | $frontParams[$param] = $chatbot[$param]; |
| 454 | } |
| 455 | } |
| 456 | |
| 457 | // Server Params |
| 458 | $serverParams = []; |
| 459 | foreach ( MWAI_DISCUSSIONS_SERVER_PARAMS as $param ) { |
| 460 | if ( isset( $atts[$param] ) ) { |
| 461 | $serverParams[$param] = $atts[$param]; |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | // Front System |
| 466 | $frontSystem = $this->build_front_params( $botId, $customId ); |
| 467 | |
| 468 | // Clean Params |
| 469 | $frontParams = $this->cleanParams( $frontParams ); |
| 470 | $frontSystem = $this->cleanParams( $frontSystem ); |
| 471 | $serverParams = $this->cleanParams( $serverParams ); |
| 472 | |
| 473 | $theme = isset( $frontParams['themeId'] ) ? $this->core->getTheme( $frontParams['themeId'] ) : null; |
| 474 | $jsonFrontParams = htmlspecialchars( json_encode( $frontParams ), ENT_QUOTES, 'UTF-8' ); |
| 475 | $jsonFrontSystem = htmlspecialchars( json_encode( $frontSystem ), ENT_QUOTES, 'UTF-8' ); |
| 476 | $jsonFrontTheme = htmlspecialchars( json_encode( $theme ), ENT_QUOTES, 'UTF-8' ); |
| 477 | |
| 478 | return "<div class='mwai-discussions-container' data-params='{$jsonFrontParams}' data-system='{$jsonFrontSystem}' data-theme='{$jsonFrontTheme}'></div>"; |
| 479 | } |
| 480 | |
| 481 | function cleanParams( &$params ) { |
| 482 | foreach ( $params as $param => $value ) { |
| 483 | if ( empty( $value ) || is_array( $value ) ) { |
| 484 | continue; |
| 485 | } |
| 486 | $lowerCaseValue = strtolower( $value ); |
| 487 | if ( $lowerCaseValue === 'true' || $lowerCaseValue === 'false' || is_bool( $value ) ) { |
| 488 | $params[$param] = filter_var( $value, FILTER_VALIDATE_BOOLEAN ); |
| 489 | } |
| 490 | else if ( is_numeric( $value ) ) { |
| 491 | $params[$param] = filter_var( $value, FILTER_VALIDATE_FLOAT ); |
| 492 | } |
| 493 | } |
| 494 | return $params; |
| 495 | } |
| 496 | |
| 497 | } |
| 498 |