assistants.php
3 years ago
chatbot.php
3 years ago
chatbot_logs.php
3 years ago
discussions.php
3 years ago
discussions.php
191 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Modules_Discussions { |
| 4 | private $wpdb = null; |
| 5 | private $core = null; |
| 6 | private $table_chats = null; |
| 7 | private $db_check = false; |
| 8 | private $namespace = 'ai-engine/v1'; |
| 9 | |
| 10 | public function __construct() { |
| 11 | global $wpdb; |
| 12 | global $mwai_core; |
| 13 | $this->core = $mwai_core; |
| 14 | $this->wpdb = $wpdb; |
| 15 | $this->table_chats = $wpdb->prefix . 'mwai_chats'; |
| 16 | |
| 17 | if ( $this->core->get_option( 'shortcode_chat_discussions' ) ) { |
| 18 | add_filter( 'mwai_chatbot_reply', [ $this, 'chatbot_reply' ], 10, 4 ); |
| 19 | add_action( 'rest_api_init', array( $this, 'rest_api_init' ) ); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | public function rest_api_init() { |
| 24 | register_rest_route( $this->namespace, '/chats', array( |
| 25 | 'methods' => 'POST', |
| 26 | 'callback' => array( $this, 'rest_chats' ), |
| 27 | 'permission_callback' => '__return_true' |
| 28 | ) ); |
| 29 | register_rest_route( $this->namespace, '/chats_delete', array( |
| 30 | 'methods' => 'POST', |
| 31 | 'callback' => array( $this, 'rest_chats_delete' ), |
| 32 | 'permission_callback' => '__return_true' |
| 33 | ) ); |
| 34 | } |
| 35 | |
| 36 | function rest_chats( $request ) { |
| 37 | try { |
| 38 | $params = $request->get_json_params(); |
| 39 | $offset = $params['offset']; |
| 40 | $limit = $params['limit']; |
| 41 | $filters = $params['filters']; |
| 42 | $sort = $params['sort']; |
| 43 | $chats = $this->chats_query( [], $offset, $limit, $filters, $sort ); |
| 44 | return new WP_REST_Response([ 'success' => true, 'total' => $chats['total'], 'chats' => $chats['rows'] ], 200 ); |
| 45 | } |
| 46 | catch ( Exception $e ) { |
| 47 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | function rest_chats_delete( $request ) { |
| 52 | try { |
| 53 | $params = $request->get_json_params(); |
| 54 | $chatsIds = $params['chatIds']; |
| 55 | if ( is_array( $chatsIds ) ) { |
| 56 | foreach( $chatsIds as $chatId ) { |
| 57 | $this->wpdb->delete( $this->table_chats, [ 'chatId' => $chatId ] ); |
| 58 | } |
| 59 | } |
| 60 | return new WP_REST_Response([ 'success' => true ], 200 ); |
| 61 | } |
| 62 | catch ( Exception $e ) { |
| 63 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | function chats_query( $chats = [], $offset = 0, $limit = null, $filters = null, $sort = null ) { |
| 68 | $this->check_db(); |
| 69 | $offset = !empty( $offset ) ? intval( $offset ) : 0; |
| 70 | $limit = !empty( $limit ) ? intval( $limit ) : 5; |
| 71 | $filters = !empty( $filters ) ? $filters : []; |
| 72 | $sort = !empty( $sort ) ? $sort : [ "accessor" => "time", "by" => "desc" ]; |
| 73 | $query = "SELECT * FROM $this->table_chats"; |
| 74 | |
| 75 | // Filters |
| 76 | $where = array(); |
| 77 | if ( isset( $filters['from'] ) ) { |
| 78 | $where[] = "time >= '" . esc_sql( $filters['from'] ) . "'"; |
| 79 | } |
| 80 | if ( isset( $filters['to'] ) ) { |
| 81 | $where[] = "time <= '" . esc_sql( $filters['to'] ) . "'"; |
| 82 | } |
| 83 | if ( count( $where ) > 0 ) { |
| 84 | $query .= " WHERE " . implode( " AND ", $where ); |
| 85 | } |
| 86 | |
| 87 | // Count based on this query |
| 88 | $chats['total'] = $this->wpdb->get_var( "SELECT COUNT(*) FROM ($query) AS t" ); |
| 89 | |
| 90 | // Order by |
| 91 | $query .= " ORDER BY " . esc_sql( $sort['accessor'] ) . " " . esc_sql( $sort['by'] ); |
| 92 | |
| 93 | // Limits |
| 94 | if ( $limit > 0 ) { |
| 95 | $query .= " LIMIT $offset, $limit"; |
| 96 | } |
| 97 | |
| 98 | $chats['rows'] = $this->wpdb->get_results( $query, ARRAY_A ); |
| 99 | return $chats; |
| 100 | } |
| 101 | |
| 102 | function chatbot_reply( $rawText, $query, $params, $extra ) { |
| 103 | global $mwai_core; |
| 104 | $userIp = $mwai_core->get_ip_address(); |
| 105 | $userId = $mwai_core->get_user_id(); |
| 106 | $chatClientId = isset( $params['clientId'] ) ? $params['clientId'] : $query->session; |
| 107 | $ssChatId = hash( 'sha256', $userIp . $userId . $chatClientId ); |
| 108 | $this->check_db(); |
| 109 | $chat = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT * FROM $this->table_chats WHERE chatId = %s", $ssChatId ) ); |
| 110 | $extra = [ |
| 111 | 'embeddings' => isset( $extra['embeddings'] ) ? $extra['embeddings'] : null |
| 112 | ]; |
| 113 | if ( $chat ) { |
| 114 | $chat->messages = json_decode( $chat->messages ); |
| 115 | $chat->messages[] = [ |
| 116 | 'type' => 'user', |
| 117 | 'text' => $params['rawInput'] |
| 118 | ]; |
| 119 | $chat->messages[] = [ |
| 120 | 'type' => 'ai', |
| 121 | 'text' => $rawText, |
| 122 | 'extra' => $extra |
| 123 | ]; |
| 124 | $chat->messages = json_encode( $chat->messages ); |
| 125 | $this->wpdb->update( $this->table_chats, [ |
| 126 | 'messages' => $chat->messages, |
| 127 | 'updated' => date( 'Y-m-d H:i:s' ) |
| 128 | ], [ 'id' => $chat->id ] ); |
| 129 | } |
| 130 | else { |
| 131 | $chat = [ |
| 132 | 'chatId' => $ssChatId, |
| 133 | 'messages' => json_encode( [ |
| 134 | [ |
| 135 | 'type' => 'user', |
| 136 | 'text' => $params['rawInput'] |
| 137 | ], |
| 138 | [ |
| 139 | 'type' => 'ai', |
| 140 | 'text' => $rawText, |
| 141 | 'extra' => $extra |
| 142 | ] |
| 143 | ] ), |
| 144 | 'extra' => json_encode( [ |
| 145 | 'ip' => $userIp, |
| 146 | 'userId' => $userId, |
| 147 | 'session' => $query->session, |
| 148 | 'model' => $query->model, |
| 149 | 'temperature' => $query->temperature |
| 150 | ] ), |
| 151 | 'created' => date( 'Y-m-d H:i:s' ), |
| 152 | 'updated' => date( 'Y-m-d H:i:s' ) |
| 153 | ]; |
| 154 | $this->wpdb->insert( $this->table_chats, $chat ); |
| 155 | } |
| 156 | return $rawText; |
| 157 | } |
| 158 | |
| 159 | function check_db() { |
| 160 | if ( $this->db_check ) { |
| 161 | return true; |
| 162 | } |
| 163 | $this->db_check = !( strtolower( |
| 164 | $this->wpdb->get_var( "SHOW TABLES LIKE '$this->table_chats'" ) ) != strtolower( $this->table_chats ) |
| 165 | ); |
| 166 | if ( !$this->db_check ) { |
| 167 | $this->create_db(); |
| 168 | $this->db_check = !( strtolower( |
| 169 | $this->wpdb->get_var( "SHOW TABLES LIKE '$this->table_chats'" ) ) != strtolower( $this->table_chats ) |
| 170 | ); |
| 171 | } |
| 172 | return $this->db_check; |
| 173 | } |
| 174 | |
| 175 | function create_db() { |
| 176 | $charset_collate = $this->wpdb->get_charset_collate(); |
| 177 | $sqlLogs = "CREATE TABLE $this->table_chats ( |
| 178 | id BIGINT(20) NOT NULL AUTO_INCREMENT, |
| 179 | chatId VARCHAR(64) NOT NULL NULL, |
| 180 | messages TEXT NOT NULL NULL, |
| 181 | extra TEXT NOT NULL NULL, |
| 182 | created DATETIME NOT NULL, |
| 183 | updated DATETIME NOT NULL, |
| 184 | PRIMARY KEY (id), |
| 185 | INDEX chatId (chatId) |
| 186 | ) $charset_collate;"; |
| 187 | require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
| 188 | dbDelta( $sqlLogs ); |
| 189 | } |
| 190 | |
| 191 | } |