Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AddColumnsProcessedMetrics.php « Filter « DataTable « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc41dacdc7feebccd17492320acce9bfc1b9f543 (plain)
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
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 * @category Piwik
 * @package Piwik
 */
namespace Piwik\DataTable\Filter;

use Piwik\DataTable\Filter;
use Piwik\DataTable\Row;
use Piwik\Metrics;
use Piwik\DataTable;

/**
 * @package Piwik
 * @subpackage DataTable
 */
class AddColumnsProcessedMetrics extends Filter
{
    protected $invalidDivision = 0;
    protected $roundPrecision = 2;
    protected $deleteRowsWithNoVisit = true;

    /**
     * @param DataTable $table
     * @param bool $deleteRowsWithNoVisit  Automatically set to true when filter_add_columns_when_show_all_columns is found in the API request
     * @return AddColumnsProcessedMetrics
     */
    public function __construct($table, $deleteRowsWithNoVisit = true)
    {
        $this->deleteRowsWithNoVisit = $deleteRowsWithNoVisit;
        parent::__construct($table);
    }

    /**
     * Filters the given data table
     *
     * @param DataTable $table
     */
    public function filter($table)
    {
        $rowsIdToDelete = array();
        foreach ($table->getRows() as $key => $row) {
            $nbVisits = $this->getColumn($row, Metrics::INDEX_NB_VISITS);
            $nbActions = $this->getColumn($row, Metrics::INDEX_NB_ACTIONS);
            if ($nbVisits == 0
                && $nbActions == 0
                && $this->deleteRowsWithNoVisit
            ) {
                // case of keyword/website/campaign with a conversion for this day,
                // but no visit, we don't show it
                $rowsIdToDelete[] = $key;
                continue;
            }

            $nbVisitsConverted = (int)$this->getColumn($row, Metrics::INDEX_NB_VISITS_CONVERTED);
            if ($nbVisitsConverted > 0) {
                $conversionRate = round(100 * $nbVisitsConverted / $nbVisits, $this->roundPrecision);
                try {
                    $row->addColumn('conversion_rate', $conversionRate . "%");
                } catch (Exception $e) {
                    // conversion_rate can be defined upstream apparently? FIXME
                }
            }

            if ($nbVisits == 0) {
                $actionsPerVisit = $averageTimeOnSite = $bounceRate = $this->invalidDivision;
            } else {
                // nb_actions / nb_visits => Actions/visit
                // sum_visit_length / nb_visits => Avg. Time on Site
                // bounce_count / nb_visits => Bounce Rate
                $actionsPerVisit = round($nbActions / $nbVisits, $this->roundPrecision);
                $visitLength = $this->getColumn($row, Metrics::INDEX_SUM_VISIT_LENGTH);
                $averageTimeOnSite = round($visitLength / $nbVisits, $rounding = 0);
                $bounceRate = round(100 * $this->getColumn($row, Metrics::INDEX_BOUNCE_COUNT) / $nbVisits, $this->roundPrecision);
            }
            try {
                $row->addColumn('nb_actions_per_visit', $actionsPerVisit);
                $row->addColumn('avg_time_on_site', $averageTimeOnSite);
                // It could be useful for API users to have raw sum length value.
                //$row->addMetadata('sum_visit_length', $visitLength);
            } catch (Exception $e) {
            }

            try {
                $row->addColumn('bounce_rate', $bounceRate . "%");
            } catch (Exception $e) {
            }

            $this->filterSubTable($row);
        }
        $table->deleteRows($rowsIdToDelete);
    }

    /**
     * Returns column from a given row.
     * Will work with 2 types of datatable
     * - raw datatables coming from the archive DB, which columns are int indexed
     * - datatables processed resulting of API calls, which columns have human readable english names
     *
     * @param Row $row
     * @param int $columnIdRaw see consts in Archive::
     * @param bool $mappingIdToName
     * @return mixed  Value of column, false if not found
     */
    protected function getColumn($row, $columnIdRaw, $mappingIdToName = false)
    {
        if (empty($mappingIdToName)) {
            $mappingIdToName = Metrics::$mappingFromIdToName;
        }
        $columnIdReadable = $mappingIdToName[$columnIdRaw];
        if ($row instanceof Row) {
            $raw = $row->getColumn($columnIdRaw);
            if ($raw !== false) {
                return $raw;
            }
            return $row->getColumn($columnIdReadable);
        }
        if (isset($row[$columnIdRaw])) {
            return $row[$columnIdRaw];
        }
        if (isset($row[$columnIdReadable])) {
            return $row[$columnIdReadable];
        }
        return false;
    }

}