قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-21 22:47:43 +00:00
56 خطوط
1.4 KiB
PHP
56 خطوط
1.4 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\Updates;
|
|
|
|
use Piwik\Archive\ArchiveInvalidator;
|
|
use Piwik\Container\StaticContainer;
|
|
use Piwik\Date;
|
|
use Piwik\Updater;
|
|
use Piwik\Updater\Migration\Custom as CustomMigration;
|
|
use Piwik\Updater\Migration\Factory as MigrationFactory;
|
|
use Piwik\Updates;
|
|
|
|
class Updates_5_2_0_b6 extends Updates
|
|
{
|
|
/**
|
|
* @var MigrationFactory
|
|
*/
|
|
private $migration;
|
|
|
|
public function __construct(MigrationFactory $factory)
|
|
{
|
|
$this->migration = $factory;
|
|
}
|
|
|
|
public function getMigrations(Updater $updater)
|
|
{
|
|
$startOfCurrentMonth = Date::now()->toString('Y-m') . '-01';
|
|
|
|
$commandToExecute = sprintf(
|
|
'./console core:invalidate-report-data --dates=%s,today --plugin=Actions.Actions_hits',
|
|
$startOfCurrentMonth
|
|
);
|
|
|
|
$migrations = [
|
|
new CustomMigration(function () use ($startOfCurrentMonth) {
|
|
$invalidator = StaticContainer::get(ArchiveInvalidator::class);
|
|
$invalidator->scheduleReArchiving('all', 'Actions', 'Actions_hits', Date::factory($startOfCurrentMonth));
|
|
}, $commandToExecute)
|
|
];
|
|
|
|
return $migrations;
|
|
}
|
|
|
|
public function doUpdate(Updater $updater)
|
|
{
|
|
$updater->executeMigrations(__FILE__, $this->getMigrations($updater));
|
|
}
|
|
}
|