-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAnalytics.php
71 lines (63 loc) · 1.88 KB
/
Analytics.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
<?php
namespace Revinate\AnalyticsBundle;
use Revinate\AnalyticsBundle\Dimension\Dimension;
use Revinate\AnalyticsBundle\Metric\Metric;
abstract class Analytics extends BaseAnalytics implements AnalyticsInterface {
/**
* @param $name
* @throws \Exception
* @return Dimension
*/
public function getDimension($name) {
foreach ($this->getDimensions() as $dimension) {
if ($dimension->getName() == $name) {
return $dimension;
}
}
throw new \Exception(__METHOD__ . " Invalid Dimension: " . $name);
}
/**
* @param $name
* @throws \Exception
* @return Metric
*/
public function getMetric($name) {
foreach ($this->getMetrics() as $metric) {
if ($metric->getName() == $name) {
return $metric;
}
}
throw new \Exception(__METHOD__ . " Invalid Metric: " . $name);
}
/**
* @param $query
* @param $page
* @param $size
* @return array
* @internal param $attributes
*/
public function getDimensionsArray($query, $page, $size) {
$config = array();
foreach ($this->getDimensions() as $dimension) {
if (empty($query) || stripos($dimension->getName(), $query) !== false) {
$config[] = $dimension->toArray();
}
}
return array_slice($config, ($page - 1) * $size, $size);
}
/**
* @param $query
* @param $page
* @param $size
* @return array
*/
public function getMetricsArray($query, $page, $size) {
$config = array();
foreach ($this->getMetrics() as $metric) {
if (empty($query) || stripos($metric->getName(), $query) !== false) {
$config[] = $metric->toArray();
}
}
return array_slice($config, ($page - 1) * $size, $size);
}
}