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
|
<?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\Goals\DataTable\Filter;
use Piwik\DataTable\BaseFilter;
use Piwik\DataTable;
class RemoveUnusedGoalRevenueColumns extends BaseFilter
{
/**
* @param DataTable $table
*/
public function filter($table)
{
$goals = $this->getGoalsInTable($table);
if (count($goals) === 0) {
return;
}
$columnNames = [
'revenue',
'revenue_entry',
'revenue_per_entry',
'revenue_per_visit',
'revenue_attrib',
];
// Build array of columns to check
$columnsToCheck = [];
foreach ($goals as $goalId) {
foreach ($columnNames as $columnName) {
$columnsToCheck['goal_' . $goalId . '_' . $columnName] = true;
}
}
// Check if there are any values in each column
foreach ($table->getRowsWithoutSummaryRow() as $row) {
foreach ($columnsToCheck as $colName => $shouldRemove) {
if (isset($row[$colName]) && $row[$colName] > 0) {
$columnsToCheck[$colName] = false;
}
}
}
$columnsToCheck = array_filter($columnsToCheck);
if (empty($columnsToCheck)) {
return;
}
$table->deleteColumns(array_keys($columnsToCheck));
}
/**
* Get the ids of all goals used in the table
*
*
* @return array
*/
private function getGoalsInTable(DataTable &$table)
{
$result = [];
foreach ($table->getRows() as $row) {
$goals = $row->getColumn('goals');
if (!$goals) {
continue;
}
foreach ($goals as $goalIdString => $metrics) {
$result[] = substr($goalIdString, 7);
}
}
return array_unique($result);
}
}
|