Skip to content
Extraits de code Groupes Projets
Valider cbbf5d0a rédigé par benakamoorthi's avatar benakamoorthi
Parcourir les fichiers

Refs #3134, fixing build & make sure PiwikTracker throws when token auth not...

Refs #3134, fixing build & make sure PiwikTracker throws when token auth not set and bulk track attempted.


git-svn-id: http://dev.piwik.org/svn/trunk@6581 59fd770c-687e-43c8-a1e3-f5a4ff64c105
parent 8e5a44c6
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -341,17 +341,18 @@ class PiwikTracker ...@@ -341,17 +341,18 @@ class PiwikTracker
*/ */
public function doBulkTrack() public function doBulkTrack()
{ {
if (empty($this->storedTrackingActions)) if (empty($this->token_auth))
{ {
return ''; throw new Exception("Token auth is required for bulk tracking.");
} }
$data = array('requests' => $this->storedTrackingActions); if (empty($this->storedTrackingActions))
if (!empty($this->token_auth))
{ {
$data['token_auth'] = $this->token_auth; return '';
} }
$data = array('requests' => $this->storedTrackingActions, 'token_auth' => $this->token_auth);
$postData = json_encode($data); $postData = json_encode($data);
$response = $this->sendRequest($this->getBaseUrl(), 'POST', $postData, $force = true); $response = $this->sendRequest($this->getBaseUrl(), 'POST', $postData, $force = true);
......
...@@ -127,7 +127,10 @@ class Test_Piwik_Integration_TwoVisitors_TwoWebsites_DifferentDays extends Test_ ...@@ -127,7 +127,10 @@ class Test_Piwik_Integration_TwoVisitors_TwoWebsites_DifferentDays extends Test_
// Second new visitor on Idsite 1: one page view // Second new visitor on Idsite 1: one page view
$visitorB = $this->getTracker($idSite, $dateTime, $defaultInit = true); $visitorB = $this->getTracker($idSite, $dateTime, $defaultInit = true);
$visitorB->enableBulkTracking(); $visitorB->enableBulkTracking();
$visitorB->setTokenAuth(Piwik::getCurrentUserTokenAuth()); // calc token auth by hand in test environment
$tokenAuth = md5(
Piwik_Config::getInstance()->superuser['login'].Piwik_Config::getInstance()->superuser['password']);
$visitorB->setTokenAuth($tokenAuth);
$visitorB->setIp('100.52.156.83'); $visitorB->setIp('100.52.156.83');
$visitorB->setResolution(800, 300); $visitorB->setResolution(800, 300);
$visitorB->setForceVisitDateTime(Piwik_Date::factory($dateTime)->addHour(1)->getDatetime()); $visitorB->setForceVisitDateTime(Piwik_Date::factory($dateTime)->addHour(1)->getDatetime());
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter