-
Notifications
You must be signed in to change notification settings - Fork 14
/
RecordImporterGA4.php
178 lines (174 loc) · 5.9 KB
/
RecordImporterGA4.php
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
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\GoogleAnalyticsImporter;
use Piwik\Config as PiwikConfig;
use Piwik\DataTable;
use Piwik\Date;
use Piwik\Metrics;
use Piwik\Plugins\GoogleAnalyticsImporter\Google\GoogleAnalyticsGA4QueryService;
use Piwik\Log\LoggerInterface;
abstract class RecordImporterGA4
{
public const IS_IMPORTED_FROM_GOOGLE_METADATA_NAME = 'is_imported_from_google';
public const NOT_SET_IN_GA_LABEL = '__not_set_in_google_analytics_4__';
public const NOT_AVAILABLE_IN_GA_LABEL = '__not_available_in_google_analytics_4__';
/**
* @var GoogleAnalyticsGA4QueryService
*/
private $gaClient;
/**
* @var int
*/
private $idSite;
/**
* @var RecordInserter
*/
private $recordInserter;
/**
* @var LoggerInterface
*/
private $logger;
/**
* @var int
*/
private $standardMaximumRows;
public function __construct(GoogleAnalyticsGA4QueryService $gaQuery, $idSite, LoggerInterface $logger)
{
$this->gaClient = $gaQuery;
$this->idSite = $idSite;
$this->logger = $logger;
$this->standardMaximumRows = PiwikConfig::getInstance()->General['datatable_archiving_maximum_rows_standard'];
$this->logger = $logger;
}
public function supportsSite()
{
return \true;
}
abstract public function importRecords(Date $day);
public function setRecordInserter(\Piwik\Plugins\GoogleAnalyticsImporter\RecordInserter $recordInserter)
{
$this->recordInserter = $recordInserter;
}
/**
* @return int
*/
protected function getStandardMaximumRows()
{
return $this->standardMaximumRows;
}
protected function getGaClient()
{
return $this->gaClient;
}
protected function getLogger()
{
return $this->logger;
}
protected function getVisitMetrics()
{
return [Metrics::INDEX_NB_UNIQ_VISITORS, Metrics::INDEX_NB_VISITS, Metrics::INDEX_NB_ACTIONS, Metrics::INDEX_SUM_VISIT_LENGTH, Metrics::INDEX_BOUNCE_COUNT, Metrics::INDEX_NB_VISITS_CONVERTED];
}
protected function getConversionAwareVisitMetrics()
{
return array_merge($this->getVisitMetrics(), [Metrics::INDEX_NB_CONVERSIONS, Metrics::INDEX_REVENUE, Metrics::INDEX_GOALS]);
}
protected function getActionMetrics()
{
// NOTE: Metrics::INDEX_NB_VISITS, Metrics::INDEX_NB_UNIQ_VISITORS are not included here, though they are queried
// at the same time in matomo, since Google Analytics can sometimes return less visits than it should when combined with NB_HITS.
return [Metrics::INDEX_PAGE_NB_HITS];
}
protected function getPageMetrics()
{
return array_merge($this->getActionMetrics(), [Metrics::INDEX_PAGE_SUM_TIME_SPENT]);
}
protected function getEcommerceMetrics()
{
return [
Metrics::INDEX_ECOMMERCE_ITEM_REVENUE,
Metrics::INDEX_ECOMMERCE_ITEM_QUANTITY,
Metrics::INDEX_ECOMMERCE_ITEM_PRICE,
Metrics::INDEX_ECOMMERCE_ORDERS,
Metrics::INDEX_NB_VISITS,
Metrics::INDEX_NB_ACTIONS
];
}
protected function getIdSite()
{
return $this->idSite;
}
protected function insertRecord($recordName, DataTable $record, $maximumRowsInDataTable = null, $maximumRowsInSubDataTable = null, $columnToSortByBeforeTruncation = null)
{
$this->recordInserter->insertRecord($recordName, $record, $maximumRowsInDataTable, $maximumRowsInSubDataTable, $columnToSortByBeforeTruncation);
}
protected function insertBlobRecord($name, $values)
{
$this->recordInserter->insertBlobRecord($name, $values);
}
protected function insertNumericRecords(array $values)
{
$this->recordInserter->insertNumericRecords($values);
}
protected function addRowToTable(DataTable $record, DataTable\Row $row, $newLabel)
{
if ($newLabel === \false || $newLabel === null) {
$recordImporterClass = get_class($this);
throw new \Exception("Unexpected error: adding row to table with empty label in {$recordImporterClass}: " . var_export($newLabel, \true));
}
$foundRow = $record->getRowFromLabel($newLabel);
if (empty($foundRow)) {
$foundRow = clone $row;
$foundRow->deleteMetadata();
$foundRow->setColumn('label', $newLabel);
$record->addRow($foundRow);
} else {
$foundRow->sumRow($row, $copyMetadata = \false);
}
return $foundRow;
}
protected function addRowToSubtable(DataTable\Row $topLevelRow, DataTable\Row $rowToAdd, $newLabel)
{
$subtable = $topLevelRow->getSubtable();
if (!$subtable) {
$subtable = new DataTable();
$topLevelRow->setSubtable($subtable);
}
return $this->addRowToTable($subtable, $rowToAdd, $newLabel);
}
protected function createTableFromGap($gap)
{
$record = new DataTable();
foreach ($gap as $bounds) {
$row = new DataTable\Row();
if (count($bounds) === 1) {
$row->setColumn('label', $bounds[0] + 1 . urlencode('+'));
} else {
$row->setColumn('label', $bounds[0] . ' - ' . $bounds[1]);
}
$record->addRow($row);
}
return $record;
}
protected function getGapLabel(array $gap, $value)
{
$range = null;
foreach ($gap as $bounds) {
$upperBound = end($bounds);
if ($value <= $upperBound) {
$range = reset($bounds) . ' - ' . $upperBound;
break;
}
}
if (empty($range)) {
$lowerBound = reset($bounds);
$range = $lowerBound + 1 . urlencode('+');
}
return $range;
}
}