Newer
Older
mattpiwik
a validé
<?php
/**
* Piwik - free/libre analytics platform
mattpiwik
a validé
* @link http://piwik.org
mattpiwik
a validé
*/
namespace Piwik;
use Exception;
use Piwik\Plugins\PrivacyManager\Config as PrivacyManagerConfig;
use Piwik\Config;
use Piwik\Tracker\Db\DbException;
use Piwik\Tracker\Request;
use Piwik\Tracker\RequestSet;
use Piwik\Tracker\TrackerConfig;
use Piwik\Tracker\Visit;
mattpiwik
a validé
/**
* Class used by the logging script piwik.php called by the javascript tag.
* Handles the visitor & his/her actions on the website, saves the data in the DB,
* saves information in the cookie, etc.
* We try to include as little files as possible (no dependency on 3rd party modules).
mattpiwik
a validé
*/
class Tracker
// We use hex ID that are 16 chars in length, ie. 64 bits IDs
const LENGTH_HEX_ID_STRING = 16;
const LENGTH_BINARY_ID = 8;
private $countOfLoggedRequests = 0;
return array_key_exists('PIWIK_TRACKER_DEBUG', $GLOBALS) && $GLOBALS['PIWIK_TRACKER_DEBUG'] === true;
$record = TrackerConfig::getConfigValue('record_statistics') != 0;
if (!$record) {
Common::printDebug('Tracking is disabled in the config.ini.php via record_statistics=0');
}
$this->handleFatalErrors();
Common::printDebug("Debug enabled - Input parameters: ");
Common::printDebug(var_export($_GET, true));
if (is_null($this->isInstalled)) {
$this->isInstalled = SettingsPiwik::isPiwikInstalled();
public function main(Handler $handler, RequestSet $requestSet)
$this->init();
$handler->init($this, $requestSet);
$this->track($handler, $requestSet);
} catch (Exception $e) {
$handler->onException($this, $requestSet, $e);
Piwik::postEvent('Tracker.end');
Thomas Steur
a validé
public function track(Handler $handler, RequestSet $requestSet)
return;
}
if ($requestSet->hasRequests()) {
$handler->onStartTrackRequests($this, $requestSet);
$handler->process($this, $requestSet);
$handler->onAllRequestsTracked($this, $requestSet);
}
}
/**
if ($request->isEmptyRequest()) {
Common::printDebug("The request is empty");
} else {
Common::printDebug("Current datetime: " . date("Y-m-d H:i:s", $request->getCurrentTimestamp()));
Thomas Steur
a validé
$visit = Visit\Factory::make();
$visit->setRequest($request);
$visit->handle();
Thomas Steur
a validé
// increment successfully logged request count. make sure to do this after try-catch,
// since an excluded visit is considered 'successfully logged'
++$this->countOfLoggedRequests;
* Used to initialize core Piwik components on a piwik.php request
* Eg. when cache is missed and we will be calling some APIs to generate cache
*/
public static function initCorePiwikInTrackerMode()
mattab
a validé
if (SettingsServer::isTrackerApiRequest()
&& self::$initTrackerMode === false
) {
self::$initTrackerMode = true;
require_once PIWIK_INCLUDE_PATH . '/core/Option.php';
Access::getInstance();
Config::getInstance();
Thomas Steur
a validé
Db::get();
} catch (Exception $e) {
Db::createDatabaseObject();
PluginManager::getInstance()->loadCorePluginsDuringTracker();
}
}
public static function restoreTrackerPlugins()
{
if (SettingsServer::isTrackerApiRequest() && Tracker::$initTrackerMode) {
Plugin\Manager::getInstance()->loadTrackerPlugins();
}
}
public function setCountOfLoggedRequests($numLoggedRequests)
}
/**
* @deprecated since 2.10.0 use {@link Date::getDatetimeFromTimestamp()} instead
public static function getDatetimeFromTimestamp($timestamp)
if (is_null(self::$db)) {
try {
self::$db = TrackerDb::connectPiwikTrackerDb();
} catch (Exception $e) {
throw new DbException($e->getMessage(), $e->getCode());
}
}
return self::$db;
}
if ($this->isDatabaseConnected()) { // note: I think we do this only for the tests
self::$db->disconnect();
self::$db = null;
}
}
// for tests
public static function disconnectCachedDbConnection()
{
// code redundancy w/ above is on purpose; above disconnectDatabase depends on method that can potentially be overridden
self::$db->disconnect();
self::$db = null;
}
}
public static function setTestEnvironment($args = null, $requestMethod = null)
{
if (is_null($args)) {
$requests = new Requests();
$args = $requests->getRequestsArrayFromBulkRequest($requests->getRawBulkRequest());
$args = $_GET + $args;
if (is_null($requestMethod) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
$requestMethod = $_SERVER['REQUEST_METHOD'];
} elseif (is_null($requestMethod)) {
}
// Do not run scheduled tasks during tests
if (!defined('DEBUG_FORCE_SCHEDULED_TASKS')) {
TrackerConfig::setConfigValue('scheduled_tasks_min_interval', 0);
}
// if nothing found in _GET/_POST and we're doing a POST, assume bulk request. in which case,
// we have to bypass authentication
if (empty($args) && $requestMethod == 'POST') {
TrackerConfig::setConfigValue('tracking_requests_require_authentication', 0);
// Tests can force the use of 3rd party cookie for ID visitor
if (Common::getRequestVar('forceEnableFingerprintingAcrossWebsites', false, null, $args) == 1) {
TrackerConfig::setConfigValue('enable_fingerprinting_across_websites', 1);
}
// Tests can force the use of 3rd party cookie for ID visitor
if (Common::getRequestVar('forceUseThirdPartyCookie', false, null, $args) == 1) {
TrackerConfig::setConfigValue('use_third_party_id_cookie', 1);
// Tests using window_look_back_for_visitor
if (Common::getRequestVar('forceLargeWindowLookBackForVisitor', false, null, $args) == 1
// also look for this in bulk requests (see fake_logs_replay.log)
Thomas Steur
a validé
|| strpos(json_encode($args, true), '"forceLargeWindowLookBackForVisitor":"1"') !== false
) {
TrackerConfig::setConfigValue('window_look_back_for_visitor', 2678400);
}
// Tests can force the enabling of IP anonymization
if (Common::getRequestVar('forceIpAnonymization', false, null, $args) == 1) {
Thomas Steur
a validé
$privacyConfig = new PrivacyManagerConfig();
$privacyConfig->ipAddressMaskLength = 2;
Thomas Steur
a validé
\Piwik\Plugins\PrivacyManager\IPAnonymizer::activate();
\Piwik\Tracker\Cache::deleteTrackerCache();
Filesystem::clearPhpCaches();
}
$pluginsDisabled = array('Provider');
// Disable provider plugin, because it is so slow to do many reverse ip lookups
PluginManager::getInstance()->setTrackerPluginsNotToLoad($pluginsDisabled);
$pluginManager = PluginManager::getInstance();
$pluginsTracker = $pluginManager->loadTrackerPlugins();
Common::printDebug("Loading plugins: { " . implode(", ", $pluginsTracker) . " }");
Thomas Steur
a validé
}
}
private function handleFatalErrors()
{
register_shutdown_function(function () {
$lastError = error_get_last();
if (!empty($lastError) && $lastError['type'] == E_ERROR) {
Common::sendResponseCode(500);
}
});
}
private static function isDebugEnabled()
{
try {
$debug = (bool) TrackerConfig::getConfigValue('debug');
if ($debug) {
return true;
}
$debugOnDemand = (bool) TrackerConfig::getConfigValue('debug_on_demand');
if ($debugOnDemand) {
return (bool) Common::getRequestVar('debug', false);
}