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
|
<?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\Insights\Visualizations;
use Piwik\Common;
use Piwik\Plugin\ViewDataTable;
use Piwik\Plugin\Visualization;
use Piwik\Plugins\Insights\API;
/**
* InsightsVisualization Visualization.
*
* @property Insight\RequestConfig $requestConfig
*/
class Insight extends Visualization
{
public const ID = 'insightsVisualization';
public const TEMPLATE_FILE = '@Insights/insightVisualization.twig';
public const FOOTER_ICON_TITLE = 'Insights';
public const FOOTER_ICON = 'icon-insights';
public function beforeLoadDataTable()
{
if (!self::canDisplayViewDataTable($this)) {
return;
}
if (!$this->requestConfig->filter_limit) {
$this->requestConfig->filter_limit = 10;
}
$report = $this->requestConfig->apiMethodToRequestDataTable;
$report = str_replace('.', '_', $report);
if (!empty($this->requestConfig->request_parameters_to_modify['reportUniqueId'])) {
$report = $this->requestConfig->request_parameters_to_modify['reportUniqueId'];
}
$this->requestConfig->apiMethodToRequestDataTable = 'Insights.getInsights';
$this->requestConfig->request_parameters_to_modify = array(
'reportUniqueId' => $report,
'minImpactPercent' => $this->requestConfig->min_impact_percent,
'minGrowthPercent' => $this->requestConfig->min_growth_percent,
'comparedToXPeriods' => $this->getComparedToXPeriodsAgo(),
'orderBy' => $this->requestConfig->order_by,
'filterBy' => $this->requestConfig->filter_by,
'pivotBy' => false,
'pivotByColumn' => false,
'limitIncreaser' => $this->getLimitIncrease(),
'limitDecreaser' => $this->getLimitDecrease(),
);
}
private function getComparedToXPeriodsAgo()
{
$period = Common::getRequestVar('period', null, 'string');
if ($period === 'month' && $this->requestConfig->compared_to_x_periods_ago > 1) {
return 12;
}
if ($period !== 'day') {
return 1;
}
return $this->requestConfig->compared_to_x_periods_ago;
}
private function getLimitIncrease()
{
$filterLimit = $this->requestConfig->filter_limit;
$limitIncrease = 0;
if ($filterLimit == -1) {
return -1;
}
if ($this->requestConfig->limit_increaser && !$this->requestConfig->limit_decreaser) {
$limitIncrease = $filterLimit;
} elseif ($this->requestConfig->limit_increaser && $this->requestConfig->limit_decreaser) {
$limitIncrease = round($filterLimit / 2);
}
return $limitIncrease;
}
private function getLimitDecrease()
{
$filterLimit = $this->requestConfig->filter_limit;
if ($filterLimit == -1) {
return -1;
}
$limitDecrease = $filterLimit - $this->getLimitIncrease();
return abs($limitDecrease);
}
public static function getDefaultRequestConfig()
{
return new Insight\RequestConfig();
}
public function isThereDataToDisplay()
{
return true;
}
public function beforeRender()
{
$this->config->datatable_js_type = 'InsightsDataTable';
$this->config->show_limit_control = true;
$this->config->show_pivot_by_subtable = false;
$this->config->show_pagination_control = false;
$this->config->show_offset_information = false;
$this->config->show_search = false;
$this->config->show_export_as_rss_feed = false;
if (!self::canDisplayViewDataTable($this)) {
$this->assignTemplateVar('cannotDisplayReport', true);
return;
}
$period = Common::getRequestVar('period', null, 'string');
$this->assignTemplateVar('period', $period);
}
public static function canDisplayViewDataTable(ViewDataTable $view)
{
$period = Common::getRequestVar('period', null, 'string');
$date = Common::getRequestVar('date', null, 'string');
$canGenerateInsights = API::getInstance()->canGenerateInsights($date, $period);
if (!$canGenerateInsights) {
return false;
}
if (
$view->requestConfig->apiMethodToRequestDataTable
&& 0 === strpos($view->requestConfig->apiMethodToRequestDataTable, 'DBStats')
) {
return false;
}
return parent::canDisplayViewDataTable($view);
}
}
|