image.php
7 months ago
message-builder.php
8 months ago
model-environment.php
7 months ago
response-id-manager.php
6 months ago
session.php
11 months ago
usage-stats.php
6 months ago
session.php
192 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Services_Session { |
| 4 | private $core; |
| 5 | private $nonce = null; |
| 6 | |
| 7 | public function __construct( $core ) { |
| 8 | $this->core = $core; |
| 9 | } |
| 10 | |
| 11 | public function can_start_session() { |
| 12 | // Check if session already started |
| 13 | if ( session_status() !== PHP_SESSION_NONE ) { |
| 14 | return false; |
| 15 | } |
| 16 | |
| 17 | // Check if we're in a context where sessions shouldn't be started |
| 18 | if ( wp_doing_cron() || defined( 'DOING_AUTOSAVE' ) ) { |
| 19 | return false; |
| 20 | } |
| 21 | |
| 22 | // For AI Engine REST endpoints only - check if it's actually our endpoint |
| 23 | if ( $this->core->is_rest ) { |
| 24 | $request_uri = $_SERVER['REQUEST_URI'] ?? ''; |
| 25 | // Only start sessions for actual AI Engine endpoints |
| 26 | if ( strpos( $request_uri, '/mwai/' ) === false && strpos( $request_uri, 'rest_route=/mwai/' ) === false ) { |
| 27 | return false; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | // Allow developers to override |
| 32 | return apply_filters( 'mwai_allow_session', true ); |
| 33 | } |
| 34 | |
| 35 | public function get_nonce( $force = false ) { |
| 36 | // NONCE GENERATION LOGIC: |
| 37 | // - For logged-out users (unless forced): Return null - they must use /start_session endpoint |
| 38 | // - For logged-in users: Create user-specific nonce tied to their WP session |
| 39 | // - With $force=true: Always create nonce (used by /start_session endpoint) |
| 40 | // |
| 41 | // This ensures logged-in users get a nonce matching their auth context on page load, |
| 42 | // preventing rest_cookie_invalid_nonce errors when cookies are present. |
| 43 | if ( !$force && !is_user_logged_in() ) { |
| 44 | return null; |
| 45 | } |
| 46 | if ( isset( $this->nonce ) ) { |
| 47 | return $this->nonce; |
| 48 | } |
| 49 | $this->nonce = wp_create_nonce( 'wp_rest' ); |
| 50 | return $this->nonce; |
| 51 | } |
| 52 | |
| 53 | // ChatID |
| 54 | public function fix_chat_id( $query, $params ) { |
| 55 | if ( isset( $query->chatId ) && $query->chatId !== 'N/A' ) { |
| 56 | return $query->chatId; |
| 57 | } |
| 58 | $chatId = isset( $params['chatId'] ) ? $params['chatId'] : $query->session; |
| 59 | if ( $chatId === 'N/A' ) { |
| 60 | $chatId = $this->core->get_random_id( 8 ); |
| 61 | } |
| 62 | $query->set_chat_id( $chatId ); |
| 63 | return $chatId; |
| 64 | } |
| 65 | |
| 66 | public function get_session_id() { |
| 67 | // Check if we have the session cookie |
| 68 | if ( isset( $_COOKIE['mwai_session_id'] ) ) { |
| 69 | return $_COOKIE['mwai_session_id']; |
| 70 | } |
| 71 | |
| 72 | // If no cookie exists and we can set one, create it now (lazy initialization) |
| 73 | if ( !headers_sent() && !wp_doing_cron() ) { |
| 74 | $sessionId = uniqid(); |
| 75 | @setcookie( 'mwai_session_id', $sessionId, [ |
| 76 | 'expires' => 0, |
| 77 | 'path' => '/', |
| 78 | 'secure' => is_ssl(), |
| 79 | 'httponly' => true, |
| 80 | ] ); |
| 81 | return $sessionId; |
| 82 | } |
| 83 | |
| 84 | // For cron jobs or when headers are sent, return a temporary session ID |
| 85 | return wp_doing_cron() ? 'wp-cron' : 'N/A'; |
| 86 | } |
| 87 | |
| 88 | public function get_ip_address( $force = false ) { |
| 89 | // Get the actual IP address |
| 90 | $ip_keys = [ 'HTTP_CF_CONNECTING_IP', 'HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', |
| 91 | 'HTTP_X_FORWARDED', 'HTTP_X_CLUSTER_CLIENT_IP', 'HTTP_X_REAL_IP', 'HTTP_FORWARDED_FOR', |
| 92 | 'HTTP_FORWARDED', 'REMOTE_ADDR' ]; |
| 93 | $actual_ip = null; |
| 94 | foreach ( $ip_keys as $key ) { |
| 95 | if ( array_key_exists( $key, $_SERVER ) === true ) { |
| 96 | $ips = explode( ',', $_SERVER[$key] ); |
| 97 | foreach ( $ips as $ip ) { |
| 98 | $ip = trim( $ip ); |
| 99 | if ( $this->validate_ip( $ip ) ) { |
| 100 | $actual_ip = $ip; |
| 101 | break 2; |
| 102 | } |
| 103 | } |
| 104 | } |
| 105 | } |
| 106 | if ( !$actual_ip ) { |
| 107 | $actual_ip = isset( $_SERVER['REMOTE_ADDR'] ) ? $_SERVER['REMOTE_ADDR'] : '127.0.0.1'; |
| 108 | } |
| 109 | |
| 110 | // If privacy_first is enabled and not forced, return hashed IP |
| 111 | if ( !$force && $this->core->get_option( 'privacy_first' ) ) { |
| 112 | // Use a salt that's unique per site but consistent |
| 113 | $salt = wp_salt( 'auth' ); |
| 114 | // Create a hash that's consistent for the same IP but anonymized |
| 115 | return 'hashed_' . substr( hash( 'sha256', $actual_ip . $salt ), 0, 16 ); |
| 116 | } |
| 117 | |
| 118 | return $actual_ip; |
| 119 | } |
| 120 | |
| 121 | public function get_user_data() { |
| 122 | $user = wp_get_current_user(); |
| 123 | if ( empty( $user ) || empty( $user->ID ) ) { |
| 124 | return null; |
| 125 | } |
| 126 | |
| 127 | // Return both the new format (for frontend) and placeholder format (for do_placeholders) |
| 128 | $userData = [ |
| 129 | 'ID' => $user->ID, |
| 130 | 'name' => $user->display_name, |
| 131 | 'email' => $user->user_email, |
| 132 | 'avatar' => get_avatar_url( $user->ID ), |
| 133 | 'type' => 'logged-in', |
| 134 | // Add placeholder keys for do_placeholders function |
| 135 | 'FIRST_NAME' => get_user_meta( $user->ID, 'first_name', true ), |
| 136 | 'LAST_NAME' => get_user_meta( $user->ID, 'last_name', true ), |
| 137 | 'USER_LOGIN' => isset( $user->data ) && isset( $user->data->user_login ) ? |
| 138 | $user->data->user_login : null, |
| 139 | 'DISPLAY_NAME' => isset( $user->data ) && isset( $user->data->display_name ) ? |
| 140 | $user->data->display_name : null, |
| 141 | 'AVATAR_URL' => get_avatar_url( $user->ID ), |
| 142 | ]; |
| 143 | |
| 144 | return $userData; |
| 145 | } |
| 146 | |
| 147 | public function get_user_id() { |
| 148 | // This function has to be re-thinked for all other API endpoints |
| 149 | $userId = null; |
| 150 | // If there is a current session, we probably know the current user |
| 151 | if ( is_user_logged_in() ) { |
| 152 | $userId = get_current_user_id(); |
| 153 | } |
| 154 | // For guest users, return null instead of generating a string ID |
| 155 | // This allows the database to store NULL for guests, which displays as "Guest" in the UI |
| 156 | return $userId; |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Get session-based user ID for guest users |
| 161 | * This creates a unique identifier based on session ID for tracking guest uploads |
| 162 | * |
| 163 | * @return string|null Session-based user ID or null if no session |
| 164 | */ |
| 165 | public function get_session_user_id() { |
| 166 | $sessionId = $this->get_session_id(); |
| 167 | if ( !$sessionId || $sessionId === 'N/A' ) { |
| 168 | return null; |
| 169 | } |
| 170 | // Create a consistent user ID based on session |
| 171 | // Prefix with 'session_' to distinguish from real user IDs |
| 172 | return 'session_' . $sessionId; |
| 173 | } |
| 174 | |
| 175 | public function get_admin_user() { |
| 176 | $users = get_users( [ 'role' => 'administrator' ] ); |
| 177 | if ( !empty( $users ) ) { |
| 178 | return $users[0]; |
| 179 | } |
| 180 | return null; |
| 181 | } |
| 182 | |
| 183 | // Private helper methods |
| 184 | private function validate_ip( $ip ) { |
| 185 | if ( filter_var( $ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_IPV6 | FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE ) === false ) { |
| 186 | return false; |
| 187 | } |
| 188 | return true; |
| 189 | } |
| 190 | |
| 191 | } |
| 192 |