image.php
2 days ago
message-builder.php
3 weeks ago
model-environment.php
7 months ago
response-id-manager.php
2 days ago
session.php
11 months ago
usage-stats.php
1 month ago
response-id-manager.php
214 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Centralized manager for AI response IDs. |
| 5 | * |
| 6 | * Handles storage, retrieval, and validation of response IDs |
| 7 | * used for stateful conversations with various AI APIs. |
| 8 | */ |
| 9 | class Meow_MWAI_Services_ResponseIdManager { |
| 10 | private Meow_MWAI_Core $core; |
| 11 | private array $cache = []; |
| 12 | |
| 13 | // Response ID patterns for different providers |
| 14 | public const OPENAI_RESPONSES_PATTERN = '/^resp_/'; |
| 15 | public const OPENAI_CHAT_PATTERN = '/^chatcmpl-/'; |
| 16 | public const ANTHROPIC_PATTERN = '/^msg_/'; |
| 17 | public const GOOGLE_INTERACTIONS_PATTERN = '/^v1_/'; |
| 18 | |
| 19 | // Expiry time (30 days as per OpenAI's policy) |
| 20 | public const EXPIRY_DAYS = 30; |
| 21 | |
| 22 | public function __construct( Meow_MWAI_Core $core ) { |
| 23 | $this->core = $core; |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Store a response ID with metadata |
| 28 | */ |
| 29 | public function store( string $discussionId, string $responseId, array $metadata = [] ): void { |
| 30 | $data = [ |
| 31 | 'responseId' => $responseId, |
| 32 | 'responseDate' => gmdate( 'Y-m-d H:i:s' ), |
| 33 | 'provider' => $this->detect_provider( $responseId ), |
| 34 | 'apiType' => $this->detect_api_type( $responseId ) |
| 35 | ]; |
| 36 | |
| 37 | // Merge additional metadata |
| 38 | $data = array_merge( $data, $metadata ); |
| 39 | |
| 40 | // Cache for current request |
| 41 | $this->cache[$discussionId] = $data; |
| 42 | |
| 43 | // Let the discussion system handle persistence |
| 44 | // This is called by the chatbot module when storing discussions |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Retrieve a response ID if valid |
| 49 | */ |
| 50 | public function retrieve( string $discussionId, array $extra = [] ): ?string { |
| 51 | // Check cache first |
| 52 | if ( isset( $this->cache[$discussionId] ) ) { |
| 53 | $data = $this->cache[$discussionId]; |
| 54 | return $this->is_valid_data( $data ) ? $data['responseId'] : null; |
| 55 | } |
| 56 | |
| 57 | // Check provided extra data (from discussion storage) |
| 58 | if ( !empty( $extra['responseId'] ) ) { |
| 59 | $responseDate = $extra['responseDate'] ?? null; |
| 60 | |
| 61 | if ( $this->is_valid_date( $responseDate ) ) { |
| 62 | // Cache for future use in this request |
| 63 | $this->cache[$discussionId] = $extra; |
| 64 | return $extra['responseId']; |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | return null; |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Validate a response ID for a specific API type |
| 73 | */ |
| 74 | public function validate( string $responseId, string $apiType ): bool { |
| 75 | switch ( $apiType ) { |
| 76 | case 'openai_responses': |
| 77 | return $this->is_responses_api_id( $responseId ); |
| 78 | |
| 79 | case 'openai_chat': |
| 80 | return $this->is_chat_completions_id( $responseId ); |
| 81 | |
| 82 | case 'anthropic': |
| 83 | return $this->is_anthropic_id( $responseId ); |
| 84 | |
| 85 | default: |
| 86 | return true; // Allow unknown types |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Check if ID is from OpenAI Responses API |
| 92 | */ |
| 93 | public function is_responses_api_id( string $responseId ): bool { |
| 94 | return preg_match( self::OPENAI_RESPONSES_PATTERN, $responseId ) === 1; |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Check if ID is from Google's Interactions API (stateful, server-side history) |
| 99 | */ |
| 100 | public function is_interactions_api_id( string $responseId ): bool { |
| 101 | return preg_match( self::GOOGLE_INTERACTIONS_PATTERN, $responseId ) === 1; |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Whether the ID refers to a stateful, server-side conversation that must be |
| 106 | * kept consistent (OpenAI Responses or Google Interactions). Used to avoid |
| 107 | * skipping the function-result round-trip on all-static turns, which would |
| 108 | * leave the server-side conversation half-answered. |
| 109 | */ |
| 110 | public function is_stateful_conversation_id( string $responseId ): bool { |
| 111 | return $this->is_responses_api_id( $responseId ) |
| 112 | || $this->is_interactions_api_id( $responseId ); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Check if ID is from OpenAI Chat Completions API |
| 117 | */ |
| 118 | public function is_chat_completions_id( string $responseId ): bool { |
| 119 | return preg_match( self::OPENAI_CHAT_PATTERN, $responseId ) === 1; |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Check if ID is from Anthropic |
| 124 | */ |
| 125 | public function is_anthropic_id( string $responseId ): bool { |
| 126 | return preg_match( self::ANTHROPIC_PATTERN, $responseId ) === 1; |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Detect provider from response ID format |
| 131 | */ |
| 132 | private function detect_provider( string $responseId ): string { |
| 133 | if ( $this->is_responses_api_id( $responseId ) ) { |
| 134 | return 'openai'; |
| 135 | } |
| 136 | if ( $this->is_chat_completions_id( $responseId ) ) { |
| 137 | return 'openai'; |
| 138 | } |
| 139 | if ( $this->is_anthropic_id( $responseId ) ) { |
| 140 | return 'anthropic'; |
| 141 | } |
| 142 | return 'unknown'; |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Detect API type from response ID format |
| 147 | */ |
| 148 | private function detect_api_type( string $responseId ): string { |
| 149 | if ( $this->is_responses_api_id( $responseId ) ) { |
| 150 | return 'responses_api'; |
| 151 | } |
| 152 | if ( $this->is_chat_completions_id( $responseId ) ) { |
| 153 | return 'chat_completions'; |
| 154 | } |
| 155 | if ( $this->is_anthropic_id( $responseId ) ) { |
| 156 | return 'messages_api'; |
| 157 | } |
| 158 | return 'unknown'; |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Check if stored data is still valid |
| 163 | */ |
| 164 | private function is_valid_data( array $data ): bool { |
| 165 | if ( empty( $data['responseId'] ) ) { |
| 166 | return false; |
| 167 | } |
| 168 | |
| 169 | $responseDate = $data['responseDate'] ?? null; |
| 170 | return $this->is_valid_date( $responseDate ); |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Check if a response date is within validity period |
| 175 | */ |
| 176 | private function is_valid_date( ?string $responseDate ): bool { |
| 177 | if ( empty( $responseDate ) ) { |
| 178 | return false; |
| 179 | } |
| 180 | |
| 181 | $date = strtotime( $responseDate ); |
| 182 | if ( $date === false ) { |
| 183 | return false; |
| 184 | } |
| 185 | |
| 186 | $expiryTime = time() - ( self::EXPIRY_DAYS * 24 * 60 * 60 ); |
| 187 | return $date > $expiryTime; |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * Clean up expired response IDs (for maintenance) |
| 192 | */ |
| 193 | public function cleanup_expired(): int { |
| 194 | // This would be called by a scheduled task |
| 195 | // Implementation depends on how discussions are stored |
| 196 | // Return count of cleaned items |
| 197 | return 0; |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Get debug information about a response ID |
| 202 | */ |
| 203 | public function get_debug_info( string $responseId ): array { |
| 204 | return [ |
| 205 | 'id' => $responseId, |
| 206 | 'provider' => $this->detect_provider( $responseId ), |
| 207 | 'api_type' => $this->detect_api_type( $responseId ), |
| 208 | 'is_valid_responses_api' => $this->is_responses_api_id( $responseId ), |
| 209 | 'is_valid_chat_completions' => $this->is_chat_completions_id( $responseId ), |
| 210 | 'is_valid_anthropic' => $this->is_anthropic_id( $responseId ) |
| 211 | ]; |
| 212 | } |
| 213 | } |
| 214 |