-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPI.php
More file actions
662 lines (555 loc) · 22.3 KB
/
API.php
File metadata and controls
662 lines (555 loc) · 22.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\MistralAI;
use Piwik\API\Request;
use Piwik\Common;
use Piwik\Option;
use Piwik\Piwik;
use Exception;
/**
* API for plugin MistralAI
*
* @method static \Piwik\Plugins\MistralAI\API getInstance()
*/
class API extends \Piwik\Plugin\API
{
private $logger;
/**
* Request timeout in seconds
*/
private const REQUEST_TIMEOUT = 60;
/**
* Rate limit settings
*/
private const RATE_LIMIT_REQUESTS = 30;
private const RATE_LIMIT_WINDOW = 3600; // 1 hour
public function __construct(\Piwik\Log\LoggerInterface $logger)
{
$this->logger = $logger;
}
public function getResponse(int $idSite, string $period, string $date, $messages = []): array
{
Piwik::checkUserHasSomeViewAccess();
$idSite = (int) Common::getRequestVar('idSite');
Piwik::checkUserHasViewAccess($idSite);
// Get messages from request if not passed or if passed as JSON string
$messages = $this->parseMessagesParam($messages);
// Check rate limit
$this->checkRateLimit($idSite);
$systemSettings = new SystemSettings();
$measurableSettings = new MeasurableSettings($idSite);
$chatBasePrompt = $measurableSettings->chatBasePrompt->getValue() ?: $systemSettings->chatBasePrompt->getValue();
$conversationBase = [
[
"role" => "system",
"content" => $chatBasePrompt,
]
];
return $this->fetchModelAi(array_merge($conversationBase, $messages), $idSite);
}
public function getInsights(int $idSite, string $period, string $date, $messages = [], $widgetParams = []): array
{
Piwik::checkUserHasSomeViewAccess();
$idSite = (int) Common::getRequestVar('idSite');
Piwik::checkUserHasViewAccess($idSite);
// Parse messages and widgetParams from POST
$messages = $this->parseMessagesParam($messages);
$widgetParams = $this->parseWidgetParams($widgetParams);
// Check rate limit
$this->checkRateLimit($idSite);
$systemSettings = new SystemSettings();
$measurableSettings = new MeasurableSettings($idSite);
$insightBasePrompt = $measurableSettings->insightBasePrompt->getValue() ?: $systemSettings->insightBasePrompt->getValue();
$requestParams = $this->buildRequestParams($widgetParams, $idSite, $date, $period);
$apiMethod = $this->resolveReportMethod($requestParams['_apiMethod'], $widgetParams);
unset($requestParams['_apiMethod']);
// Validate API method format (Module.action)
if (!preg_match('/^[a-zA-Z0-9]+\.[a-zA-Z0-9]+$/', $apiMethod)) {
throw new Exception('Invalid API method format');
}
// Matomo's Request::processRequest handles permission checks internally
$data = Request::processRequest($apiMethod, $requestParams);
$conversationBase = [
[
"role" => "system",
"content" => "$insightBasePrompt $data",
]
];
return $this->fetchModelAi(array_merge($conversationBase, $messages), $idSite);
}
/**
* Streams a response from the AI model using Server-Sent Events
* If widgetParams are present, fetches report data first (insight mode)
*/
public function getStreamingResponse(int $idSite, string $period, string $date, $messages = [], $widgetParams = []): void
{
Piwik::checkUserHasSomeViewAccess();
$idSite = (int) Common::getRequestVar('idSite');
Piwik::checkUserHasViewAccess($idSite);
// Parse messages and widgetParams from POST
$messages = $this->parseMessagesParam($messages);
$widgetParams = $this->parseWidgetParams($widgetParams);
$this->checkRateLimit($idSite);
$systemSettings = new SystemSettings();
$measurableSettings = new MeasurableSettings($idSite);
// Check if this is an insight request (has widgetParams with module/action)
$isInsight = !empty($widgetParams) && (isset($widgetParams['module']) || isset($widgetParams['action']));
if ($isInsight) {
// Insight mode: fetch report data and use insight prompt
$insightBasePrompt = $measurableSettings->insightBasePrompt->getValue() ?: $systemSettings->insightBasePrompt->getValue();
$requestParams = $this->buildRequestParams($widgetParams, $idSite, $date, $period);
$apiMethod = $this->resolveReportMethod($requestParams['_apiMethod'], $widgetParams);
unset($requestParams['_apiMethod']);
// Validate API method format (Module.action)
if (!preg_match('/^[a-zA-Z0-9]+\.[a-zA-Z0-9]+$/', $apiMethod)) {
throw new Exception('Invalid API method format');
}
// Fetch report data
$data = Request::processRequest($apiMethod, $requestParams);
$conversationBase = [
[
"role" => "system",
"content" => "$insightBasePrompt $data",
]
];
} else {
// Regular chat mode
$chatBasePrompt = $measurableSettings->chatBasePrompt->getValue() ?: $systemSettings->chatBasePrompt->getValue();
$conversationBase = [
[
"role" => "system",
"content" => $chatBasePrompt,
]
];
}
$this->streamModelAi(array_merge($conversationBase, $messages), $idSite);
}
/**
* Check and enforce rate limits per site
* @throws Exception if rate limit exceeded
*/
private function checkRateLimit(int $idSite): void
{
$userLogin = Piwik::getCurrentUserLogin();
$rateLimitKey = 'MistralAI_ratelimit_' . $idSite . '_' . $userLogin;
$currentTime = time();
$rateData = Option::get($rateLimitKey);
if ($rateData) {
$rateData = json_decode($rateData, true);
$windowStart = $rateData['window_start'] ?? 0;
$requestCount = $rateData['count'] ?? 0;
// Reset window if expired
if ($currentTime - $windowStart > self::RATE_LIMIT_WINDOW) {
$rateData = ['window_start' => $currentTime, 'count' => 0];
}
// Check limit
if ($rateData['count'] >= self::RATE_LIMIT_REQUESTS) {
$resetTime = $windowStart + self::RATE_LIMIT_WINDOW - $currentTime;
throw new Exception("Rate limit exceeded. Please wait {$resetTime} seconds before making another request.");
}
} else {
$rateData = ['window_start' => $currentTime, 'count' => 0];
}
// Increment counter
$rateData['count']++;
Option::set($rateLimitKey, json_encode($rateData));
}
/**
* Builds request parameters from widget parameters with proper validation
*/
private function buildRequestParams(array $widgetParams, int $idSite, string $date, string $period): array
{
// Check if this is an evolution graph that needs multiple data points
$action = isset($widgetParams['action']) ? $widgetParams['action'] : '';
$isEvolutionGraph = in_array($action, ['getEvolutionGraph', 'getEvolutionOverview', 'getRowEvolution'], true);
// For evolution graphs, use day period with last90 to get multiple data points
if ($isEvolutionGraph) {
$period = 'day';
$date = 'last90';
}
$requestParams = [
'idSite' => $idSite,
'date' => $this->sanitizeDate($date),
'period' => $this->sanitizePeriod($period),
'format' => 'json',
];
// Sanitize module and action (alphanumeric only)
$module = isset($widgetParams['module']) ? preg_replace('/[^a-zA-Z0-9]/', '', $widgetParams['module']) : '';
$action = preg_replace('/[^a-zA-Z0-9]/', '', $action);
$requestParams['_apiMethod'] = $module . '.' . $action;
// Define supported parameters with their validation rules
$supportedParams = [
// Standard Matomo API parameters
'idSubtable' => 'int',
'idAlert' => 'int',
'idGoal' => 'int',
'idDimension' => 'int',
'idNote' => 'int',
'idExperiment' => 'int',
'idCustomReport' => 'int',
'idExport' => 'int',
'idLogCrash' => 'int',
'idFailure' => 'int',
// Premium plugin parameters
'idForm' => 'int',
'idFunnel' => 'int',
'idHeatmap' => 'int',
'idSessionRecording' => 'int',
// Common parameters
'segment' => 'segment',
'flat' => 'bool',
'expanded' => 'bool',
'filter_limit' => 'int',
'filter_offset' => 'int',
];
foreach ($supportedParams as $param => $type) {
if (isset($widgetParams[$param]) && $widgetParams[$param] !== '') {
$requestParams[$param] = $this->sanitizeParam($widgetParams[$param], $type);
}
}
return $requestParams;
}
/**
* Sanitizes a parameter value based on its type
*/
private function sanitizeParam($value, string $type)
{
switch ($type) {
case 'int':
return (int) $value;
case 'bool':
return $value ? 1 : 0;
case 'segment':
return Common::unsanitizeInputValue($value);
default:
return Common::sanitizeInputValue($value);
}
}
/**
* Validates and sanitizes date parameter
*/
private function sanitizeDate(string $date): string
{
if (preg_match('/^(today|yesterday|last\d+|previous\d+|\d{4}-\d{2}-\d{2}(,\d{4}-\d{2}-\d{2})?)$/', $date)) {
return $date;
}
return 'today';
}
/**
* Validates and sanitizes period parameter
*/
private function sanitizePeriod(string $period): string
{
$allowedPeriods = ['day', 'week', 'month', 'year', 'range'];
return in_array($period, $allowedPeriods, true) ? $period : 'day';
}
/**
* Resolves the API method from widget parameters
* Handles evolution graph controller actions by extracting the real API method
*/
private function resolveReportMethod(string $reportId, array $widgetParams = []): string
{
$evolutionActions = ['getEvolutionGraph', 'getEvolutionOverview', 'getRowEvolution'];
$parts = explode('.', $reportId, 2);
if (count($parts) !== 2) {
return $reportId;
}
$module = $parts[0];
$action = $parts[1];
if (in_array($action, $evolutionActions, true)) {
if (!empty($widgetParams['apiMethod'])) {
return $widgetParams['apiMethod'];
}
if (!empty($widgetParams['method'])) {
return $widgetParams['method'];
}
// Special handling for CustomReports evolution graphs
// CustomReports doesn't have a 'get' method, always use getCustomReport
if ($module === 'CustomReports') {
return 'CustomReports.getCustomReport';
}
return $module . '.get';
}
return $reportId;
}
/**
* Validates that the URL is a valid HTTPS API endpoint
*/
private function isValidApiUrl(?string $url): bool
{
if (empty($url)) {
return false;
}
$parsed = parse_url($url);
return isset($parsed['scheme']) && $parsed['scheme'] === 'https' && isset($parsed['host']);
}
/**
* Sends a conversation to the AI model and returns the response
*
* @throws Exception if configuration is missing or API call fails
*/
private function fetchModelAi(array $conversation, int $idSite): array
{
$config = $this->getAiConfig($idSite);
// Sanitize conversation messages
$sanitizedConversation = $this->sanitizeConversation($conversation);
$data = [
"model" => $config['model'],
"messages" => $sanitizedConversation,
];
$headers = [
'Content-Type: application/json',
'Accept: application/json',
'Authorization: Bearer ' . $config['apiKey'],
];
$this->logger->info('MistralAI API request to model: ' . $config['model'] . ' at ' . $config['host']);
$ch = curl_init($config['host']);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_TIMEOUT, self::REQUEST_TIMEOUT);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$curlError = curl_error($ch);
curl_close($ch);
if ($curlError) {
$this->logger->error('MistralAI API curl error: ' . $curlError);
throw new Exception('Connection error: ' . $curlError);
}
if (empty($response)) {
throw new Exception('Empty response from MistralAI API');
}
$result = json_decode($response, true);
if (json_last_error() !== JSON_ERROR_NONE) {
$this->logger->error('MistralAI API invalid JSON response: ' . substr($response, 0, 500));
throw new Exception('Invalid JSON response from MistralAI API');
}
if (isset($result['error'])) {
$errorMessage = $result['error']['message'] ?? 'Unknown API error';
$this->logger->warning('MistralAI API error: ' . $errorMessage);
return ['error' => ['message' => $errorMessage]];
}
if ($httpCode !== 200) {
$this->logger->error('MistralAI API HTTP ' . $httpCode . ': ' . substr($response, 0, 500));
throw new Exception('MistralAI API returned HTTP ' . $httpCode);
}
return $result;
}
/**
* Streams a conversation response using Server-Sent Events
* This method outputs directly to the response stream
*/
private function streamModelAi(array $conversation, int $idSite): void
{
$config = $this->getAiConfig($idSite);
$sanitizedConversation = $this->sanitizeConversation($conversation);
$data = [
"model" => $config['model'],
"messages" => $sanitizedConversation,
"stream" => true,
];
// Disable all output buffering for streaming
while (ob_get_level()) {
ob_end_clean();
}
// Disable PHP time limit for long streams
set_time_limit(0);
// Set SSE headers
header('Content-Type: text/event-stream');
header('Cache-Control: no-cache, no-store, must-revalidate');
header('Pragma: no-cache');
header('Expires: 0');
header('Connection: keep-alive');
header('X-Accel-Buffering: no'); // Nginx
header('X-Content-Type-Options: nosniff');
// Immediately flush headers
flush();
$ch = curl_init($config['host']);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: Bearer ' . $config['apiKey'],
'Content-Type: application/json',
'Accept: text/event-stream',
]);
curl_setopt($ch, CURLOPT_TIMEOUT, 0); // No timeout for streaming
curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);
// Stream the response chunk by chunk
curl_setopt($ch, CURLOPT_WRITEFUNCTION, function ($ch, $chunk) {
echo $chunk;
flush();
return strlen($chunk);
});
curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if ($error) {
echo "data: " . json_encode(['error' => ['message' => $error]]) . "\n\n";
flush();
}
echo "data: [DONE]\n\n";
flush();
}
/**
* Gets AI configuration for a site
* @throws Exception if configuration is invalid
*/
private function getAiConfig(int $idSite): array
{
$systemSettings = new SystemSettings();
$measurableSettings = new MeasurableSettings($idSite);
$host = $measurableSettings->host->getValue() ?: $systemSettings->host->getValue();
$apiKey = $measurableSettings->apiKey->getValue() ?: $systemSettings->apiKey->getValue();
// Get model: prefer custom model if set, otherwise use preset
$model = $systemSettings->modelCustom->getValue();
if (empty($model)) {
$model = $systemSettings->modelPreset->getValue();
}
// Check measurable settings override
$measurableModelCustom = $measurableSettings->modelCustom->getValue();
$measurableModelPreset = $measurableSettings->modelPreset->getValue();
if (!empty($measurableModelCustom)) {
$model = $measurableModelCustom;
} elseif (!empty($measurableModelPreset)) {
$model = $measurableModelPreset;
}
if (empty($host)) {
throw new Exception('MistralAI host is not configured');
}
if (empty($apiKey)) {
throw new Exception('MistralAI API key is not configured');
}
if (empty($model) || (is_array($model) && empty($model[0]))) {
throw new Exception('MistralAI model is not configured');
}
if (!$this->isValidApiUrl($host)) {
throw new Exception('Invalid API host URL - HTTPS required');
}
return [
'host' => $host,
'apiKey' => $apiKey,
'model' => is_array($model) ? $model[0] : $model,
];
}
/**
* Parses the messages parameter from POST request
* Handles both array and JSON string formats
*/
private function parseMessagesParam($messages): array
{
// First check $_POST directly
if (isset($_POST['messages']) && !empty($_POST['messages'])) {
$postMessages = $_POST['messages'];
if (is_string($postMessages)) {
$decoded = json_decode($postMessages, true);
if (json_last_error() === JSON_ERROR_NONE && is_array($decoded)) {
return $decoded;
}
} elseif (is_array($postMessages)) {
return $postMessages;
}
}
// Fallback to Common::getRequestVar
if (empty($messages) || !is_array($messages)) {
$postMessages = Common::getRequestVar('messages', '', 'string', $_POST);
if (!empty($postMessages)) {
if (is_string($postMessages)) {
$decoded = json_decode($postMessages, true);
if (json_last_error() === JSON_ERROR_NONE && is_array($decoded)) {
return $decoded;
}
} elseif (is_array($postMessages)) {
return $postMessages;
}
}
}
// If messages is a JSON string, decode it
if (is_string($messages)) {
$decoded = json_decode($messages, true);
if (json_last_error() === JSON_ERROR_NONE && is_array($decoded)) {
return $decoded;
}
return [];
}
return is_array($messages) ? $messages : [];
}
/**
* Parses the widgetParams parameter from POST request
* Handles both array and JSON string formats
*/
private function parseWidgetParams($widgetParams): array
{
// First check $_POST directly
if (isset($_POST['widgetParams']) && !empty($_POST['widgetParams'])) {
$postParams = $_POST['widgetParams'];
if (is_string($postParams)) {
$decoded = json_decode($postParams, true);
if (json_last_error() === JSON_ERROR_NONE && is_array($decoded)) {
return $decoded;
}
} elseif (is_array($postParams)) {
return $postParams;
}
}
// Fallback to Common::getRequestVar
if (empty($widgetParams) || !is_array($widgetParams)) {
$postParams = Common::getRequestVar('widgetParams', '', 'string', $_POST);
if (!empty($postParams)) {
if (is_string($postParams)) {
$decoded = json_decode($postParams, true);
if (json_last_error() === JSON_ERROR_NONE && is_array($decoded)) {
return $decoded;
}
} elseif (is_array($postParams)) {
return $postParams;
}
}
}
// If widgetParams is a JSON string, decode it
if (is_string($widgetParams)) {
$decoded = json_decode($widgetParams, true);
if (json_last_error() === JSON_ERROR_NONE && is_array($decoded)) {
return $decoded;
}
return [];
}
return is_array($widgetParams) ? $widgetParams : [];
}
/**
* Sanitizes conversation messages to prevent injection
* Note: Mistral API only accepts 'role' and 'content' fields, no 'name' field
*/
private function sanitizeConversation(array $conversation): array
{
$sanitized = [];
$allowedRoles = ['system', 'user', 'assistant'];
foreach ($conversation as $message) {
if (!is_array($message)) {
continue;
}
$role = $message['role'] ?? '';
if (!in_array($role, $allowedRoles, true)) {
continue;
}
// Mistral API only accepts role and content - no name field
$sanitizedMessage = [
'role' => $role,
'content' => (string) ($message['content'] ?? ''),
];
$sanitized[] = $sanitizedMessage;
}
return $sanitized;
}
}