-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathController.php
More file actions
665 lines (532 loc) · 21.8 KB
/
Controller.php
File metadata and controls
665 lines (532 loc) · 21.8 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
663
664
665
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\EventsEnhanced;
use Piwik\Common;
use Piwik\Piwik;
use Piwik\Plugins\CustomDimensions\API as CustomDimensionsAPI;
use Piwik\Plugins\CustomDimensions\CustomDimensions;
use Piwik\ViewDataTable\Factory as ViewDataTableFactory;
/**
* Controller for EventsEnhanced plugin
* Uses plugin's own archived data via API methods
*/
class Controller extends \Piwik\Plugin\Controller
{
/**
* Render the Event Detail page
* Vue component handles all report loading via WidgetLoader
*/
public function getEventDetail()
{
$this->checkSitePermission();
// Default to 'name' dimension when accessing via menu (shows top event names)
$dimensionType = Common::getRequestVar('eventDimensionType', 'name', 'string');
if (!in_array($dimensionType, ['category', 'action', 'name'])) {
$dimensionType = 'name';
}
$dimensionValue = Common::getRequestVar('eventDimensionValue', '', 'string');
$dimensionValue = Common::unsanitizeInputValue($dimensionValue);
// Fetch dimension values for selector
$dimensionValues = $this->fetchDimensionValues($dimensionType);
// If no dimension value selected, use first available
if (empty($dimensionValue) && !empty($dimensionValues)) {
$dimensionValue = $dimensionValues[0]['key'];
}
// Get custom dimensions for this site
$customDimensions = $this->getActiveCustomDimensions();
return $this->renderTemplate('eventDetails', [
'selectedDimensionType' => $dimensionType,
'selectedDimensionValue' => $dimensionValue,
'dimensionValues' => $dimensionValues,
'customDimensions' => $customDimensions,
]);
}
/**
* Get active custom dimensions for the current site
*/
private function getActiveCustomDimensions()
{
$customDimensions = [];
try {
$api = CustomDimensionsAPI::getInstance();
$dimensions = $api->getConfiguredCustomDimensionsHavingScope(
$this->idSite,
CustomDimensions::SCOPE_ACTION
);
foreach ($dimensions as $dim) {
if (!empty($dim['active'])) {
$customDimensions[] = [
'id' => (int) $dim['idcustomdimension'],
'name' => $dim['name'],
];
}
}
// Sort by dimension ID ASC
usort($customDimensions, function ($a, $b) {
return $a['id'] - $b['id'];
});
} catch (\Exception $e) {
// CustomDimensions plugin might not be available
}
return $customDimensions;
}
/**
* Fetch dimension values for the selector
*/
private function fetchDimensionValues($dimensionType)
{
$apiMethodMap = [
'category' => 'Events.getCategory',
'action' => 'Events.getAction',
'name' => 'Events.getName',
];
$apiMethod = $apiMethodMap[$dimensionType] ?? 'Events.getCategory';
try {
$report = \Piwik\API\Request::processRequest($apiMethod, [
'idSite' => $this->idSite,
'period' => Common::getRequestVar('period', 'day', 'string'),
'date' => Common::getRequestVar('date', 'today', 'string'),
'filter_limit' => 500,
'filter_sort_order' => 'desc',
'filter_sort_column' => 'nb_events',
'showColumns' => 'label,nb_events',
]);
$values = [];
foreach ($report->getRows() as $row) {
$label = $row->getColumn('label');
$nbEvents = $row->getColumn('nb_events');
if ($label && $label !== '-') {
$values[] = [
'key' => $label,
'value' => $label . ' (' . $nbEvents . ')',
];
}
}
return $values;
} catch (\Exception $e) {
return [];
}
}
/**
* Controller action for Page URLs report - uses plugin's archived data
*/
public function getPageUrlsForEvent()
{
$this->checkSitePermission();
$dimensionType = Common::getRequestVar('eventDimensionType', 'category', 'string');
if (!in_array($dimensionType, ['category', 'action', 'name'])) {
$dimensionType = 'category';
}
$dimensionValue = $this->getDimensionValueFromRequest($dimensionType);
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getPageUrlsForEvent',
'EventsEnhanced.getPageUrlsForEvent'
);
$view->requestConfig->request_parameters_to_modify['dimensionType'] = $dimensionType;
$view->requestConfig->request_parameters_to_modify['dimensionValue'] = $dimensionValue;
$view->config->title = Piwik::translate('Actions_PageUrls');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Controller action for Page Titles report - uses plugin's archived data
*/
public function getPageTitlesForEvent()
{
$this->checkSitePermission();
$dimensionType = Common::getRequestVar('eventDimensionType', 'category', 'string');
if (!in_array($dimensionType, ['category', 'action', 'name'])) {
$dimensionType = 'category';
}
$dimensionValue = $this->getDimensionValueFromRequest($dimensionType);
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getPageTitlesForEvent',
'EventsEnhanced.getPageTitlesForEvent'
);
$view->requestConfig->request_parameters_to_modify['dimensionType'] = $dimensionType;
$view->requestConfig->request_parameters_to_modify['dimensionValue'] = $dimensionValue;
$view->config->title = Piwik::translate('Actions_WidgetPageTitles');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Controller action for Countries report - uses plugin's archived data
*/
public function getCountriesForEvent()
{
$this->checkSitePermission();
$dimensionType = Common::getRequestVar('eventDimensionType', 'category', 'string');
if (!in_array($dimensionType, ['category', 'action', 'name'])) {
$dimensionType = 'category';
}
$dimensionValue = $this->getDimensionValueFromRequest($dimensionType);
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getCountriesForEvent',
'EventsEnhanced.getCountriesForEvent'
);
$view->requestConfig->request_parameters_to_modify['dimensionType'] = $dimensionType;
$view->requestConfig->request_parameters_to_modify['dimensionValue'] = $dimensionValue;
$view->config->title = Piwik::translate('UserCountry_Country');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Controller action for related Event Actions (for category dimension)
*/
public function getEventActionsForCategory()
{
$this->checkSitePermission();
$eventCategory = $this->getDimensionValueFromRequest('category');
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getEventActionsForCategory',
'EventsEnhanced.getEventActionsForCategory'
);
$view->requestConfig->request_parameters_to_modify['eventCategory'] = $eventCategory;
$view->config->title = Piwik::translate('Events_EventActions');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Controller action for related Event Names (for category dimension)
*/
public function getEventNamesForCategory()
{
$this->checkSitePermission();
$eventCategory = $this->getDimensionValueFromRequest('category');
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getEventNamesForCategory',
'EventsEnhanced.getEventNamesForCategory'
);
$view->requestConfig->request_parameters_to_modify['eventCategory'] = $eventCategory;
$view->config->title = Piwik::translate('Events_EventNames');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Controller action for related Event Categories (for action dimension)
*/
public function getEventCategoriesForAction()
{
$this->checkSitePermission();
$eventAction = $this->getDimensionValueFromRequest('action');
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getEventCategoriesForAction',
'EventsEnhanced.getEventCategoriesForAction'
);
$view->requestConfig->request_parameters_to_modify['eventAction'] = $eventAction;
$view->config->title = Piwik::translate('Events_EventCategories');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Controller action for related Event Names (for action dimension)
*/
public function getEventNamesForAction()
{
$this->checkSitePermission();
$eventAction = $this->getDimensionValueFromRequest('action');
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getEventNamesForAction',
'EventsEnhanced.getEventNamesForAction'
);
$view->requestConfig->request_parameters_to_modify['eventAction'] = $eventAction;
$view->config->title = Piwik::translate('Events_EventNames');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Controller action for related Event Categories (for name dimension)
*/
public function getEventCategoriesForName()
{
$this->checkSitePermission();
$eventName = $this->getDimensionValueFromRequest('name');
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getEventCategoriesForName',
'EventsEnhanced.getEventCategoriesForName'
);
$view->requestConfig->request_parameters_to_modify['eventName'] = $eventName;
$view->config->title = Piwik::translate('Events_EventCategories');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Controller action for related Event Actions (for name dimension)
*/
public function getEventActionsForName()
{
$this->checkSitePermission();
$eventName = $this->getDimensionValueFromRequest('name');
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getEventActionsForName',
'EventsEnhanced.getEventActionsForName'
);
$view->requestConfig->request_parameters_to_modify['eventName'] = $eventName;
$view->config->title = Piwik::translate('Events_EventActions');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Controller action for Event Values (for category dimension)
*/
public function getEventValuesForCategory()
{
$this->checkSitePermission();
$eventCategory = $this->getDimensionValueFromRequest('category');
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getEventValuesForCategory',
'EventsEnhanced.getEventValuesForCategory'
);
$view->requestConfig->request_parameters_to_modify['eventCategory'] = $eventCategory;
$view->config->title = Piwik::translate('Events_EventValue');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Controller action for Event Values (for action dimension)
*/
public function getEventValuesForAction()
{
$this->checkSitePermission();
$eventAction = $this->getDimensionValueFromRequest('action');
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getEventValuesForAction',
'EventsEnhanced.getEventValuesForAction'
);
$view->requestConfig->request_parameters_to_modify['eventAction'] = $eventAction;
$view->config->title = Piwik::translate('Events_EventValue');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Controller action for Event Values (for name dimension)
*/
public function getEventValuesForName()
{
$this->checkSitePermission();
$eventName = $this->getDimensionValueFromRequest('name');
$view = ViewDataTableFactory::build(
'table',
'EventsEnhanced.getEventValuesForName',
'EventsEnhanced.getEventValuesForName'
);
$view->requestConfig->request_parameters_to_modify['eventName'] = $eventName;
$view->config->title = Piwik::translate('Events_EventValue');
$this->configureEventDimensionTable($view);
return $this->renderView($view);
}
/**
* Get evolution graph for event metrics
*/
public function getEvolutionGraph()
{
$this->checkSitePermission();
$dimensionType = Common::getRequestVar('eventDimensionType', 'category', 'string');
if (!in_array($dimensionType, ['category', 'action', 'name'])) {
$dimensionType = 'category';
}
$dimensionValue = $this->getDimensionValueFromRequest($dimensionType);
$apiMethod = $this->getEventsApiMethod($dimensionType);
$columns = Common::getRequestVar('columns', false);
if (false !== $columns) {
$columns = Piwik::getArrayFromApiParameter($columns);
}
$view = $this->getLastUnitGraph(
'EventsEnhanced',
__FUNCTION__,
$apiMethod
);
// Use label parameter to filter by specific dimension value
if (!empty($dimensionValue)) {
$view->requestConfig->request_parameters_to_modify['label'] = $dimensionValue;
}
$selectableColumns = ['nb_visits', 'nb_events', 'sum_event_value', 'nb_events_with_value'];
$view->config->selectable_columns = $selectableColumns;
// Use requested columns or default to nb_events
if (!empty($columns)) {
$view->config->columns_to_display = $columns;
} else {
$view->config->columns_to_display = ['nb_events'];
}
// Use same translation keys as native Events plugin
$view->config->addTranslation('nb_events', Piwik::translate('Events_Events'));
$view->config->addTranslation('nb_visits', Piwik::translate('General_ColumnNbVisits'));
$view->config->addTranslation('sum_event_value', Piwik::translate('Events_EventValue'));
$view->config->addTranslation('nb_events_with_value', Piwik::translate('Events_EventsWithValue'));
$view->config->addTranslation('min_event_value', Piwik::translate('Events_MinValue'));
$view->config->addTranslation('max_event_value', Piwik::translate('Events_MaxValue'));
$view->config->addTranslation('avg_event_value', Piwik::translate('Events_AvgValue'));
// Remove the ProfessionalServices promo footer injected by native Events report
$view->config->filters[] = function () use ($view) {
$view->config->show_footer_message = '';
};
return $this->renderView($view);
}
/**
* Get dimension value from URL parameters
*/
private function getDimensionValueFromRequest($dimensionType)
{
// First try the new param name
$value = Common::getRequestVar('eventDimensionValue', '', 'string');
// Fallback to legacy param names
if (empty($value)) {
$paramMap = [
'category' => 'eventCategory',
'action' => 'eventAction',
'name' => 'eventName',
];
$paramName = $paramMap[$dimensionType] ?? 'eventCategory';
$value = Common::getRequestVar($paramName, '', 'string');
}
return Common::unsanitizeInputValue($value);
}
/**
* Get Events API method for dimension type
*/
private function getEventsApiMethod($dimensionType)
{
$methodMap = [
'category' => 'Events.getCategory',
'action' => 'Events.getAction',
'name' => 'Events.getName',
];
return $methodMap[$dimensionType] ?? 'Events.getCategory';
}
/**
* AJAX endpoint to get dimension values for a specific dimension type
* Returns JSON with dimension values
*/
public function getDimensionValues()
{
$this->checkSitePermission();
$dimensionType = Common::getRequestVar('dimensionType', 'category', 'string');
if (!in_array($dimensionType, ['category', 'action', 'name'])) {
$dimensionType = 'category';
}
$values = $this->fetchDimensionValues($dimensionType);
return json_encode($values);
}
/**
* Render the Event Names evolution graph
* Shows top event names over time
*/
public function getEventNamesEvolutionGraph()
{
$this->checkSitePermission();
$view = $this->getLastUnitGraph(
'EventsEnhanced',
__FUNCTION__,
'EventsEnhanced.getEventNamesEvolution'
);
$this->configureEvolutionGraph($view);
return $this->renderView($view);
}
/**
* Render the Event Categories evolution graph
* Shows top event categories over time
*/
public function getEventCategoriesEvolutionGraph()
{
$this->checkSitePermission();
$view = $this->getLastUnitGraph(
'EventsEnhanced',
__FUNCTION__,
'EventsEnhanced.getEventCategoriesEvolution'
);
$this->configureEvolutionGraph($view);
return $this->renderView($view);
}
/**
* Render the Event Actions evolution graph
* Shows top event actions over time
*/
public function getEventActionsEvolutionGraph()
{
$this->checkSitePermission();
$view = $this->getLastUnitGraph(
'EventsEnhanced',
__FUNCTION__,
'EventsEnhanced.getEventActionsEvolution'
);
$this->configureEvolutionGraph($view);
return $this->renderView($view);
}
/**
* Configure common settings for evolution graph views
* Metrics in order: total events, visits, unique visitors, avg events per visit, sum event value
*/
private function configureEvolutionGraph($view)
{
// Limit the number of series to prevent browser overload with high cardinality
$view->requestConfig->filter_sort_column = 'nb_events';
$view->requestConfig->filter_sort_order = 'desc';
$view->requestConfig->filter_limit = 10;
// Configure metrics to display: 5 metrics in specific order
$selectableColumns = ['nb_events', 'nb_visits', 'nb_uniq_visitors', 'sum_event_value'];
$view->config->selectable_columns = $selectableColumns;
// Check if columns parameter was passed in the request (user changed metric selection)
$columns = Common::getRequestVar('columns', false);
if (false !== $columns) {
$columns = Piwik::getArrayFromApiParameter($columns);
}
// Use requested columns or default to nb_events
if (!empty($columns)) {
$view->config->columns_to_display = $columns;
} else {
$view->config->columns_to_display = ['nb_events'];
}
// Add translations
$view->config->addTranslation('nb_events', Piwik::translate('Events_TotalEvents'));
$view->config->addTranslation('nb_visits', Piwik::translate('General_ColumnNbVisits'));
$view->config->addTranslation('nb_uniq_visitors', Piwik::translate('General_ColumnNbUniqVisitors'));
$view->config->addTranslation('sum_event_value', Piwik::translate('Events_TotalValue'));
$view->config->show_goals = false;
}
/**
* Configure table view for dimension-to-dimension reports (has nb_events)
* Used for: Category→Actions, Category→Names, Action→Categories, etc.
* Available metrics: nb_events, nb_visits
*/
private function configureEventDimensionTable($view)
{
// Disable "display table with engagement metrics" option
$view->config->show_table_all_columns = false;
// Set default columns: Total Events and Visits only
$view->config->columns_to_display = ['label', 'nb_events', 'nb_visits'];
// Enable selectable columns for bar/pie chart visualizations
$view->config->selectable_columns = ['nb_events', 'nb_visits'];
// Add translations
$view->config->addTranslation('nb_events', Piwik::translate('Events_TotalEvents'));
$view->config->addTranslation('nb_visits', Piwik::translate('General_ColumnNbVisits'));
// Show totals row option in UI (only for visualizations that support it)
if (property_exists($view->config, 'show_totals_row')) {
$view->config->show_totals_row = true;
}
// Sort by nb_events by default
$view->requestConfig->filter_sort_column = 'nb_events';
$view->requestConfig->filter_sort_order = 'desc';
// Enable visualization switching
$view->config->show_all_views_icons = true;
$view->config->show_bar_chart = true;
$view->config->show_pie_chart = true;
// Disable goals
$view->config->show_goals = false;
}
}