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

allow plugin to decide to archive without visits

parent 20c47f39
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -44,6 +44,7 @@ If the tracker is not initialised correctly, the browser console will display th
* The creation of settings has slightly changed to improve performance. It is now possible to create new settings via the method `$this->makeSetting()` see `Piwik\Plugins\ExampleSettingsPlugin\SystemSettings` for an example.
* It is no longer possible to define an introduction text for settings.
* If requesting multipe periods for one report, the keys that define the range are no longer translated. For example before 3.0 an API response may contain: `<result date="From 2010-02-01 to 2010-02-07">` which is now `<result date="2010-02-01,2010-02-07">`.
* The method `Piwik\Plugin\Archiver::shouldRunWithoutVisits()` has been added. It gives plugin archivers the possibility to decide whether to run if there weren't any visits by overwriting this method.
* The following deprecated events have been removed as mentioned.
* `Tracker.existingVisitInformation` Use [dimensions](http://developer.piwik.org/guides/dimensions) instead of using `Tracker` events.
* `Tracker.newVisitorInformation`
......
......@@ -120,11 +120,8 @@ class Loader
$visitsConverted = $metrics['nb_visits_converted'];
}
if ($this->isThereSomeVisits($visits)
|| $this->shouldArchiveForSiteEvenWhenNoVisits()
) {
$pluginsArchiver->callAggregateAllPlugins($visits, $visitsConverted);
}
$forceArchivingWithoutVisits = !$this->isThereSomeVisits($visits) && $this->shouldArchiveForSiteEvenWhenNoVisits();
$pluginsArchiver->callAggregateAllPlugins($visits, $visitsConverted, $forceArchivingWithoutVisits);
$idArchive = $pluginsArchiver->finalizeArchive();
......
......@@ -94,7 +94,7 @@ class PluginsArchiver
* Instantiates the Archiver class in each plugin that defines it,
* and triggers Aggregation processing on these plugins.
*/
public function callAggregateAllPlugins($visits, $visitsConverted)
public function callAggregateAllPlugins($visits, $visitsConverted, $forceArchivingWithoutVisits = false)
{
Log::debug("PluginsArchiver::%s: Initializing archiving process for all plugins [visits = %s, visits converted = %s]",
__FUNCTION__, $visits, $visitsConverted);
......@@ -111,7 +111,12 @@ class PluginsArchiver
$archiver = $this->makeNewArchiverObject($archiverClass, $pluginName);
if (!$archiver->isEnabled()) {
Log::debug("PluginsArchiver::%s: Skipping archiving for plugin '%s'.", __FUNCTION__, $pluginName);
Log::debug("PluginsArchiver::%s: Skipping archiving for plugin '%s' (disabled).", __FUNCTION__, $pluginName);
continue;
}
if (!$forceArchivingWithoutVisits && !$visits && !$archiver->shouldRunWithoutVisits()) {
Log::debug("PluginsArchiver::%s: Skipping archiving for plugin '%s' (no visits).", __FUNCTION__, $pluginName);
continue;
}
......
......@@ -141,4 +141,14 @@ abstract class Archiver
{
return $this->enabled;
}
/**
* Whether this Archiver should run even if there aren't any visits.
*
* @return bool
*/
public function shouldRunWithoutVisits()
{
return false;
}
}
......@@ -20,6 +20,8 @@ class ArchiveWithNoVisitsTest_MockArchiver extends Archiver
{
public static $methodsCalled = array();
public static $runWithoutVisits = false;
public function aggregateDayReport()
{
self::$methodsCalled[] = 'aggregateDayReport';
......@@ -29,6 +31,11 @@ class ArchiveWithNoVisitsTest_MockArchiver extends Archiver
{
self::$methodsCalled[] = 'aggregateMultipleReports';
}
public function shouldRunWithoutVisits()
{
return self::$runWithoutVisits;
}
}
class ArchiveWithNoVisitsTest extends IntegrationTestCase
......@@ -78,6 +85,28 @@ class ArchiveWithNoVisitsTest extends IntegrationTestCase
$this->assertEquals($expectedMethodCalls, ArchiveWithNoVisitsTest_MockArchiver::$methodsCalled);
}
public function test_PluginArchiver_CanBeUsedToTriggerArchiving_EvenIfSiteHasNoVisits()
{
PluginsArchiver::$archivers['VisitsSummary'] = 'Piwik\Tests\Integration\ArchiveWithNoVisitsTest_MockArchiver';
ArchiveWithNoVisitsTest_MockArchiver::$runWithoutVisits = true;
// initiate archiving and make sure methods are called
VisitsSummaryAPI::getInstance()->get($idSite = 1, 'week', '2012-01-01');
$expectedMethodCalls = array(
'aggregateDayReport',
'aggregateDayReport',
'aggregateDayReport',
'aggregateDayReport',
'aggregateDayReport',
'aggregateDayReport',
'aggregateDayReport',
'aggregateMultipleReports',
);
$this->assertEquals($expectedMethodCalls, ArchiveWithNoVisitsTest_MockArchiver::$methodsCalled);
}
/**
* @return EventDispatcher
*/
......
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