قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-21 22:47:43 +00:00

* [Coding Style] Enable rule PSR12.Files.FileHeader * Apply CS * Replace Piwik with Matomo in file headers * Unify file headers (position, no. of lines, https links) * Rebuild dist files * Apply CS * Fix system test that relies on line numbers in a file that had the file header updated --------- Co-authored-by: Stefan Giehl <stefan@matomo.org>
96 خطوط
2.8 KiB
PHP
96 خطوط
2.8 KiB
PHP
<?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\Overlay;
|
|
|
|
use Exception;
|
|
use Piwik\API\Request;
|
|
use Piwik\Config;
|
|
use Piwik\DataTable;
|
|
use Piwik\Plugins\Transitions\API as APITransitions;
|
|
use Piwik\Tracker\PageUrl;
|
|
|
|
/**
|
|
* Class API
|
|
* @method static \Piwik\Plugins\Overlay\API getInstance()
|
|
*/
|
|
class API extends \Piwik\Plugin\API
|
|
{
|
|
/**
|
|
* Get translation strings
|
|
*/
|
|
public function getTranslations($idSite)
|
|
{
|
|
$translations = array(
|
|
'oneClick' => 'Overlay_OneClick',
|
|
'clicks' => 'Overlay_Clicks',
|
|
'clicksFromXLinks' => 'Overlay_ClicksFromXLinks',
|
|
'link' => 'Overlay_Link'
|
|
);
|
|
|
|
return array_map(array('\\Piwik\\Piwik','translate'), $translations);
|
|
}
|
|
|
|
/**
|
|
* Get excluded query parameters for a site.
|
|
* This information is used for client side url normalization.
|
|
*
|
|
* @deprecated use SitesManager.getExcludedQueryParameters instead
|
|
* @todo Remove in Matomo 6
|
|
*/
|
|
public function getExcludedQueryParameters($idSite)
|
|
{
|
|
return Request::processRequest('SitesManager.getExcludedQueryParameters');
|
|
}
|
|
|
|
/**
|
|
* Get following pages of a url.
|
|
* This is done on the logs - not the archives!
|
|
*
|
|
* Note: if you use this method via the regular API, the number of results will be limited.
|
|
* Make sure, you set filter_limit=-1 in the request.
|
|
*/
|
|
public function getFollowingPages($url, $idSite, $period, $date, $segment = false)
|
|
{
|
|
$url = PageUrl::excludeQueryParametersFromUrl($url, $idSite);
|
|
// we don't unsanitize $url here. it will be done in the Transitions plugin.
|
|
|
|
$resultDataTable = new DataTable();
|
|
|
|
try {
|
|
$limitBeforeGrouping = Config::getInstance()->General['overlay_following_pages_limit'];
|
|
$transitionsReport = APITransitions::getInstance()->getTransitionsForAction(
|
|
$url,
|
|
$type = 'url',
|
|
$idSite,
|
|
$period,
|
|
$date,
|
|
$segment,
|
|
$limitBeforeGrouping,
|
|
$part = 'followingActions'
|
|
);
|
|
} catch (Exception $e) {
|
|
return $resultDataTable;
|
|
}
|
|
|
|
$reports = array('followingPages', 'outlinks', 'downloads');
|
|
foreach ($reports as $reportName) {
|
|
if (!isset($transitionsReport[$reportName])) {
|
|
continue;
|
|
}
|
|
foreach ($transitionsReport[$reportName]->getRows() as $row) {
|
|
// don't touch the row at all for performance reasons
|
|
$resultDataTable->addRow($row);
|
|
}
|
|
}
|
|
|
|
return $resultDataTable;
|
|
}
|
|
}
|