| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/piwik/plugins/CoreHome/angularjs/reporting-page/ |
Upload File : |
/*!
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
(function () {
angular.module('piwikApp').controller('ReportingPageController', ReportingPageController);
ReportingPageController.$inject = ['$scope', 'piwik', '$rootScope', '$location', 'reportingPageModel', 'reportingPagesModel', 'notifications', 'piwikUrl', 'piwikPeriods'];
function ReportingPageController($scope, piwik, $rootScope, $location, pageModel, pagesModel, notifications, piwikUrl, $piwikPeriods) {
pageModel.resetPage();
$scope.pageModel = pageModel;
var currentCategory = null;
var currentSubcategory = null;
var currentPeriod = null;
var currentDate = null;
var currentSegment = null;
var currentCompareDates = null;
var currentComparePeriods = null;
var currentCompareSegments = null;
function renderInitialPage()
{
var $search = $location.search();
currentPeriod = piwikUrl.getSearchParam('period');
currentDate = piwikUrl.getSearchParam('date');
currentSegment = $search.segment;
currentCompareSegments = piwikUrl.getSearchParam('compareSegments');
currentCompareDates = piwikUrl.getSearchParam('compareDates');
currentComparePeriods = piwikUrl.getSearchParam('comparePeriods');
$scope.renderPage($search.category, $search.subcategory);
}
$scope.renderPage = function (category, subcategory) {
if (!category || !subcategory) {
pageModel.resetPage();
$scope.loading = false;
return;
}
var UI = require('piwik/UI');
try {
$piwikPeriods.parse(currentPeriod, currentDate);
} catch (e) {
var notification = new UI.Notification();
var attributes = {};
attributes.id = 'invalidDate';
attributes.animate = false;
attributes.context = 'error';
notification.show(_pk_translate('CoreHome_DateInvalid'), attributes);
pageModel.resetPage();
$scope.loading = false;
return;
}
(new UI.Notification()).remove('invalidDate');
$rootScope.$emit('piwikPageChange', {});
currentCategory = category;
currentSubcategory = subcategory;
notifications.clearTransientNotifications();
if (category === 'Dashboard_Dashboard' && $.isNumeric(subcategory) && $('[piwik-dashboard]').length) {
// hack to make loading of dashboards faster since all the information is already there in the
// piwik-dashboard widget, we can let the piwik-dashboard widget render the page. We need to find
// a proper solution for this. A workaround for now could be an event or something to let other
// components render a specific page.
$scope.loading = true;
var element = $('[piwik-dashboard]');
var scope = angular.element(element).scope();
scope.fetchDashboard(parseInt(subcategory, 10)).then(function () {
$scope.loading = false;
}, function () {
$scope.loading = false;
});
return;
}
pageModel.fetchPage(category, subcategory).then(function () {
if (!pageModel.page) {
var page = pagesModel.findPageInCategory(category);
if (page && page.subcategory) {
var $search = $location.search();
$search.subcategory = page.subcategory.id;
$location.search($search);
return;
}
}
$scope.hasNoPage = !pageModel.page;
$scope.loading = false;
});
};
$scope.loading = true; // we only set loading on initial load
renderInitialPage();
$rootScope.$on('$locationChangeSuccess', function () {
var $search = $location.search();
// should be handled by $route
var category = $search.category;
var subcategory = $search.subcategory;
var period = piwikUrl.getSearchParam('period');
var date = piwikUrl.getSearchParam('date');
var segment = $search.segment;
// $location does not handle array parameters properly
var compareSegments = piwikUrl.getSearchParam('compareSegments');
var compareDates = piwikUrl.getSearchParam('compareDates');
var comparePeriods = piwikUrl.getSearchParam('comparePeriods');
if (category === currentCategory
&& subcategory === currentSubcategory
&& period === currentPeriod
&& date === currentDate
&& segment === currentSegment
&& JSON.stringify(compareDates) === JSON.stringify(currentCompareDates)
&& JSON.stringify(comparePeriods) === JSON.stringify(currentComparePeriods)
&& JSON.stringify(compareSegments) === JSON.stringify(currentCompareSegments)
) {
// this page is already loaded
return;
}
currentPeriod = period;
currentDate = date;
currentSegment = segment;
currentCompareDates = compareDates;
currentComparePeriods = comparePeriods;
currentCompareSegments = compareSegments;
$scope.renderPage(category, subcategory);
});
$rootScope.$on('loadPage', function (event, category, subcategory) {
$scope.renderPage(category, subcategory);
});
}
})();