-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPI.php
122 lines (105 loc) · 4.02 KB
/
API.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
<?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\WeatherReports;
use Piwik\Archive;
use Piwik\DataTable;
use Piwik\Piwik;
/**
* API for plugin WeatherReports
*
* @method static \Piwik\Plugins\WeatherReports\API getInstance()
*/
class API extends \Piwik\Plugin\API
{
/**
* Another example method that returns a data table.
* @param int $idSite
* @param string $period
* @param string $date
* @param bool|string $segment
* @return DataTable
*/
public function getCondition($idSite, $period, $date, $segment = false)
{
return $this->getDataTable('WeatherReports_Condition', $idSite, $period, $date, $segment);
}
public function getCloud($idSite, $period, $date, $segment = false)
{
return $this->getDataTable('WeatherReports_Cloud', $idSite, $period, $date, $segment);
}
public function getTemperature($idSite, $period, $date, $segment = false)
{
$table = $this->getDataTable('WeatherReports_Temperature', $idSite, $period, $date, $segment);
$table->filter('GroupBy', array('label', function ($label) {
return is_float($label) ? round($label) : $label;
}));
return $table;
}
public function getFeltTemperature($idSite, $period, $date, $segment = false)
{
$table = $this->getDataTable('WeatherReports_FeltTemperature', $idSite, $period, $date, $segment);
$table->filter('GroupBy', array('label', function ($label) {
return is_float($label) ? round($label) : $label;
}));
return $table;
}
public function getPressure($idSite, $period, $date, $segment = false)
{
return $this->getDataTable('WeatherReports_Pressure', $idSite, $period, $date, $segment);
}
public function getHumidity($idSite, $period, $date, $segment = false)
{
return $this->getDataTable('WeatherReports_Humidity', $idSite, $period, $date, $segment);
}
public function getPrecipitation($idSite, $period, $date, $segment = false)
{
$table = $this->getDataTable('WeatherReports_Precipitation', $idSite, $period, $date, $segment);
$table->filter('GroupBy', array('label', function ($label) {
return is_float($label) ? round($label) : $label;
}));
return $table;
}
public function getUv($idSite, $period, $date, $segment = false)
{
$table = $this->getDataTable('WeatherReports_Uv', $idSite, $period, $date, $segment);
$table->filter('GroupBy', array('label', function ($label) {
return is_float($label) ? round($label) : $label;
}));
return $table;
}
public function getVisibility($idSite, $period, $date, $segment = false)
{
$table = $this->getDataTable('WeatherReports_Visibility', $idSite, $period, $date, $segment);
$table->filter('GroupBy', array('label', function ($label) {
return is_float($label) ? round($label) : $label;
}));
return $table;
}
public function getWindSpeed($idSite, $period, $date, $segment = false)
{
$table = $this->getDataTable('WeatherReports_WindSpeed', $idSite, $period, $date, $segment);
$table->filter('GroupBy', array('label', function ($label) {
return is_float($label) ? round($label) : $label;
}));
return $table;
}
public function getWindDirection($idSite, $period, $date, $segment = false)
{
return $this->getDataTable('WeatherReports_WindDirection', $idSite, $period, $date, $segment);
}
protected function getDataTable($name, $idSite, $period, $date, $segment)
{
Piwik::checkUserHasViewAccess($idSite);
$archive = Archive::build($idSite, $period, $date, $segment);
$dataTable = $archive->getDataTable($name);
$dataTable->queueFilter('ReplaceColumnNames');
$dataTable->queueFilter('ReplaceSummaryRowLabel');
return $dataTable;
}
}