Skip to content
Extraits de code Groupes Projets
ArchiveProcessor.php 18,4 ko
Newer Older
  • Learn to ignore specific revisions
  • mattab's avatar
    mattab a validé
    <?php
    /**
    
     * Piwik - free/libre analytics platform
    
    mattab's avatar
    mattab a validé
     *
     * @link http://piwik.org
     * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
     *
     */
    
    use Exception;
    
    mattab's avatar
    mattab a validé
    use Piwik\DataAccess\ArchiveWriter;
    
    mattab's avatar
    mattab a validé
    use Piwik\DataTable\Row;
    
    use Piwik\Db;
    
    mattab's avatar
    mattab a validé
    
    /**
    
     * Used by {@link Piwik\Plugin\Archiver} instances to insert and aggregate archive data.
    
     * - **{@link Piwik\Plugin\Archiver}** - to learn how plugins should implement their own analytics
     *                                       aggregation logic.
     * - **{@link Piwik\DataAccess\LogAggregator}** - to learn how plugins can perform data aggregation
     *                                                across Piwik's log tables.
    
     * **Inserting numeric data**
    
     *     // function in an Archiver descendant
    
     *     public function aggregateDayReport()
    
     *         $archiveProcessor = $this->getProcessor();
    
     *         $myFancyMetric = // ... calculate the metric value ...
     *         $archiveProcessor->insertNumericRecord('MyPlugin_myFancyMetric', $myFancyMetric);
     *     }
    
     * **Inserting serialized DataTables**
    
     *     // function in an Archiver descendant
    
     *     public function aggregateDayReport()
    
     *         $archiveProcessor = $this->getProcessor();
    
     *         $maxRowsInTable = Config::getInstance()->General['datatable_archiving_maximum_rows_standard'];j
    
     *         $dataTable = // ... build by aggregating visits ...
     *         $serializedData = $dataTable->getSerialized($maxRowsInTable, $maxRowsInSubtable = $maxRowsInTable,
     *                                                     $columnToSortBy = Metrics::INDEX_NB_VISITS);
    
     *         $archiveProcessor->insertBlobRecords('MyPlugin_myFancyReport', $serializedData);
     *     }
    
     * **Aggregating archive data**
    
     *     // function in Archiver descendant
    
     *     public function aggregateMultipleReports()
     *     {
     *         $archiveProcessor = $this->getProcessor();
    
     *         // aggregate a metric
     *         $archiveProcessor->aggregateNumericMetrics('MyPlugin_myFancyMetric');
     *         $archiveProcessor->aggregateNumericMetrics('MyPlugin_mySuperFancyMetric', 'max');
    
     *
     *         // aggregate a report
    
     *         $archiveProcessor->aggregateDataTableRecords('MyPlugin_myFancyReport');
     *     }
    
    mattab's avatar
    mattab a validé
     */
    
    mattab's avatar
    mattab a validé
    {
    
         * @var \Piwik\DataAccess\ArchiveWriter
    
    mattab's avatar
    mattab a validé
        /**
    
    mattab's avatar
    mattab a validé
         */
    
    mattab's avatar
    mattab a validé
    
    
    mattab's avatar
    mattab a validé
        /**
    
    mattab's avatar
    mattab a validé
         */
    
    mattab's avatar
    mattab a validé
        /**
    
    mattab's avatar
    mattab a validé
         */
    
    mattab's avatar
    mattab a validé
        protected $numberOfVisits = false;
        protected $numberOfVisitsConverted = false;
    
    mattab's avatar
    mattab a validé
    
    
    mattab's avatar
    mattab a validé
        public function __construct(Parameters $params, ArchiveWriter $archiveWriter)
    
        {
            $this->params = $params;
            $this->logAggregator = new LogAggregator($params);
            $this->archiveWriter = $archiveWriter;
    
    mattab's avatar
    mattab a validé
        }
    
    
        protected function getArchive()
        {
            if(empty($this->archive)) {
    
                $subPeriods = $this->params->getSubPeriods();
                $idSites = $this->params->getIdSites();
                $this->archive = Archive::factory($this->params->getSegment(), $subPeriods, $idSites);
    
            }
            return $this->archive;
        }
    
    
    mattab's avatar
    mattab a validé
        public function setNumberOfVisits($visits, $visitsConverted)
        {
    
            $this->numberOfVisits = $visits;
            $this->numberOfVisitsConverted = $visitsConverted;
        }
    
         * Returns the {@link Parameters} object containing the site, period and segment we're archiving
         * data for.
    
    mattab's avatar
    mattab a validé
        {
    
    mattab's avatar
    mattab a validé
        }
    
    
         * Returns a `{@link Piwik\DataAccess\LogAggregator}` instance for the site, period and segment this
    
         * ArchiveProcessor will insert archive data for.
    
         */
        public function getLogAggregator()
        {
            return $this->logAggregator;
        }
    
        /**
         * Array of (column name before => column name renamed) of the columns for which sum operation is invalid.
         * These columns will be renamed as per this mapping.
         * @var array
         */
    
        protected static $columnsToRenameAfterAggregation = array(
    
            Metrics::INDEX_NB_UNIQ_VISITORS => Metrics::INDEX_SUM_DAILY_NB_UNIQ_VISITORS,
            Metrics::INDEX_NB_USERS         => Metrics::INDEX_SUM_DAILY_NB_USERS,
    
        );
    
        /**
         * Sums records for every subperiod of the current period and inserts the result as the record
         * for this period.
         *
         * DataTables are summed recursively so subtables will be summed as well.
         *
         * @param string|array $recordNames Name(s) of the report we are aggregating, eg, `'Referrers_type'`.
         * @param int $maximumRowsInDataTableLevelZero Maximum number of rows allowed in the top level DataTable.
         * @param int $maximumRowsInSubDataTable Maximum number of rows allowed in each subtable.
         * @param string $columnToSortByBeforeTruncation The name of the column to sort by before truncating a DataTable.
    
         * @param array $columnsAggregationOperation Operations for aggregating columns, see {@link Row::sumRow()}.
         * @param array $columnsToRenameAfterAggregation Columns mapped to new names for columns that must change names
         *                                               when summed because they cannot be summed, eg,
         *                                               `array('nb_uniq_visitors' => 'sum_daily_nb_uniq_visitors')`.
    
         * @return array Returns the row counts of each aggregated report before truncation, eg,
    
         *                   array(
         *                       'report1' => array('level0' => $report1->getRowsCount,
         *                                          'recursive' => $report1->getRowsCountRecursive()),
         *                       'report2' => array('level0' => $report2->getRowsCount,
         *                                          'recursive' => $report2->getRowsCountRecursive()),
         *                       ...
         *                   )
    
         */
        public function aggregateDataTableRecords($recordNames,
                                                  $maximumRowsInDataTableLevelZero = null,
                                                  $maximumRowsInSubDataTable = null,
                                                  $columnToSortByBeforeTruncation = null,
    
                                                  &$columnsAggregationOperation = null,
                                                  $columnsToRenameAfterAggregation = null)
    
        {
            if (!is_array($recordNames)) {
                $recordNames = array($recordNames);
            }
            $nameToCount = array();
            foreach ($recordNames as $recordName) {
    
                $latestUsedTableId = Manager::getInstance()->getMostRecentTableId();
    
    
                $table = $this->aggregateDataTableRecord($recordName, $columnsAggregationOperation, $columnsToRenameAfterAggregation);
    
                $rowsCount = $table->getRowsCount();
                $nameToCount[$recordName]['level0'] = $rowsCount;
    
                $rowsCountRecursive = $rowsCount;
                if($this->isAggregateSubTables()) {
                    $rowsCountRecursive = $table->getRowsCountRecursive();
                }
                $nameToCount[$recordName]['recursive'] = $rowsCountRecursive;
    
    
                $blob = $table->getSerialized($maximumRowsInDataTableLevelZero, $maximumRowsInSubDataTable, $columnToSortByBeforeTruncation);
                Common::destroy($table);
                $this->insertBlobRecord($recordName, $blob);
    
    
                unset($blob);
                DataTable\Manager::getInstance()->deleteAll($latestUsedTableId);
    
         * Aggregates one or more metrics for every subperiod of the current period and inserts the results
         * as metrics for the current period.
    
         *
         * @param array|string $columns Array of metric names to aggregate.
         * @param bool|string $operationToApply The operation to apply to the metric. Either `'sum'`, `'max'` or `'min'`.
         * @return array|int Returns the array of aggregate values. If only one metric was aggregated,
         *                   the aggregate value will be returned as is, not in an array.
         *                   For example, if `array('nb_visits', 'nb_hits')` is supplied for `$columns`,
    
         *                       array(
         *                           'nb_visits' => 3040,
         *                           'nb_hits' => 405
         *                       )
    
         *                   could be returned. If `array('nb_visits')` or `'nb_visits'` is used for `$columns`,
         *                   then `3040` would be returned.
         * @api
    
         */
        public function aggregateNumericMetrics($columns, $operationToApply = false)
        {
    
            $metrics = $this->getAggregatedNumericMetrics($columns, $operationToApply);
    
            foreach($metrics as $column => $value) {
                $this->archiveWriter->insertRecord($column, $value);
    
            if (count($metrics) == 1) {
                return reset($metrics);
    
        public function getNumberOfVisits()
        {
    
    mattab's avatar
    mattab a validé
            if($this->numberOfVisits === false) {
                throw new Exception("visits should have been set here");
            }
    
            return $this->numberOfVisits;
        }
    
        public function getNumberOfVisitsConverted()
        {
            return $this->numberOfVisitsConverted;
        }
    
        /**
         * Caches multiple numeric records in the archive for this processor's site, period
         * and segment.
         *
         * @param array $numericRecords A name-value mapping of numeric values that should be
         *                              archived, eg,
    
         *                                  array('Referrers_distinctKeywords' => 23, 'Referrers_distinctCampaigns' => 234)
    
         * @api
         */
        public function insertNumericRecords($numericRecords)
        {
            foreach ($numericRecords as $name => $value) {
                $this->insertNumericRecord($name, $value);
            }
        }
    
        /**
         * Caches a single numeric record in the archive for this processor's site, period and
         * segment.
         *
    
         * Numeric values are not inserted if they equal `0`.
    
         *
         * @param string $name The name of the numeric value, eg, `'Referrers_distinctKeywords'`.
         * @param float $value The numeric value.
         * @api
         */
        public function insertNumericRecord($name, $value)
        {
            $value = round($value, 2);
            $this->archiveWriter->insertRecord($name, $value);
        }
    
        /**
         * Caches one or more blob records in the archive for this processor's site, period
         * and segment.
         *
         * @param string $name The name of the record, eg, 'Referrers_type'.
         * @param string|array $values A blob string or an array of blob strings. If an array
         *                             is used, the first element in the array will be inserted
         *                             with the `$name` name. The others will be inserted with
         *                             `$name . '_' . $index` as the record name (where $index is
         *                             the index of the blob record in `$values`).
         * @api
         */
        public function insertBlobRecord($name, $values)
        {
            $this->archiveWriter->insertBlobRecord($name, $values);
        }
    
    
        /**
         * This method selects all DataTables that have the name $name over the period.
         * All these DataTables are then added together, and the resulting DataTable is returned.
         *
         * @param string $name
    
         * @param array $columnsAggregationOperation Operations for aggregating columns, @see Row::sumRow()
         * @param array $columnsToRenameAfterAggregation columns in the array (old name, new name) to be renamed as the sum operation is not valid on them (eg. nb_uniq_visitors->sum_daily_nb_uniq_visitors)
    
        protected function aggregateDataTableRecord($name, $columnsAggregationOperation = null, $columnsToRenameAfterAggregation = null)
    
            if($this->isAggregateSubTables()) {
                // By default we shall aggregate all sub-tables.
                $dataTable = $this->getArchive()->getDataTableExpanded($name, $idSubTable = null, $depth = null, $addMetadataSubtableId = false);
            } else {
                // In some cases (eg. Actions plugin when period=range),
                // for better performance we will only aggregate the parent table
                $dataTable = $this->getArchive()->getDataTable($name, $idSubTable = null);
            }
    
    
                // see https://github.com/piwik/piwik/issues/4377
    
                $self = $this;
                $dataTable->filter(function ($table) use ($self, $columnsToRenameAfterAggregation) {
                    $self->renameColumnsAfterAggregation($table, $columnsToRenameAfterAggregation);
                });
    
    mattab's avatar
    mattab a validé
            $dataTable = $this->getAggregatedDataTableMap($dataTable, $columnsAggregationOperation);
            $this->renameColumnsAfterAggregation($dataTable, $columnsToRenameAfterAggregation);
            return $dataTable;
    
        }
    
        protected function getOperationForColumns($columns, $defaultOperation)
        {
            $operationForColumn = array();
            foreach ($columns as $name) {
                $operation = $defaultOperation;
                if (empty($operation)) {
                    $operation = $this->guessOperationForColumn($name);
                }
                $operationForColumn[$name] = $operation;
            }
            return $operationForColumn;
        }
    
    
    mattab's avatar
    mattab a validé
        protected function enrichWithUniqueVisitorsMetric(Row $row)
    
            if(!$this->getParams()->isSingleSite() ) {
                // we only compute unique visitors for a single site
                return;
            }
    
            if ( $row->getColumn('nb_uniq_visitors') !== false
                || $row->getColumn('nb_users') !== false) {
    
                if (SettingsPiwik::isUniqueVisitorsEnabled($this->getParams()->getPeriod()->getLabel())) {
    
                    $metrics = array(Metrics::INDEX_NB_UNIQ_VISITORS, Metrics::INDEX_NB_USERS);
                    $uniques = $this->computeNbUniques( $metrics );
                    $row->setColumn('nb_uniq_visitors', $uniques[Metrics::INDEX_NB_UNIQ_VISITORS]);
                    $row->setColumn('nb_users', $uniques[Metrics::INDEX_NB_USERS]);
    
    mattab's avatar
    mattab a validé
                    $row->deleteColumn('nb_uniq_visitors');
    
                }
            }
        }
    
        protected function guessOperationForColumn($column)
        {
            if (strpos($column, 'max_') === 0) {
                return 'max';
            }
            if (strpos($column, 'min_') === 0) {
                return 'min';
            }
            return 'sum';
        }
    
        /**
         * Processes number of unique visitors for the given period
         *
         * This is the only Period metric (ie. week/month/year/range) that we process from the logs directly,
         * since unique visitors cannot be summed like other metrics.
         *
    
         * @param array Metrics Ids for which to aggregates count of values
    
        protected function computeNbUniques($metrics)
    
            $query = $logAggregator->queryVisitsByDimension(array(), false, array(), $metrics);
    
    
        /**
         * If the DataTable is a Map, sums all DataTable in the map and return the DataTable.
         *
         *
         * @param $data DataTable|DataTable\Map
         * @param $columnsToRenameAfterAggregation array
         * @return DataTable
         */
    
    mattab's avatar
    mattab a validé
        protected function getAggregatedDataTableMap($data, $columnsAggregationOperation)
    
        {
            $table = new DataTable();
            if (!empty($columnsAggregationOperation)) {
                $table->setMetadata(DataTable::COLUMN_AGGREGATION_OPS_METADATA_NAME, $columnsAggregationOperation);
            }
            if ($data instanceof DataTable\Map) {
                // as $date => $tableToSum
                $this->aggregatedDataTableMapsAsOne($data, $table);
            } else {
    
                $table->addDataTable($data, $this->isAggregateSubTables());
    
            }
            return $table;
        }
    
        /**
         * Aggregates the DataTable\Map into the destination $aggregated
         * @param $map
         * @param $aggregated
         */
        protected function aggregatedDataTableMapsAsOne(Map $map, DataTable $aggregated)
        {
            foreach ($map->getDataTables() as $tableToAggregate) {
                if($tableToAggregate instanceof Map) {
                    $this->aggregatedDataTableMapsAsOne($tableToAggregate, $aggregated);
                } else {
    
                    $aggregated->addDataTable($tableToAggregate, $this->isAggregateSubTables());
    
    diosmosis's avatar
    diosmosis a validé
        /**
         * Note: public only for use in closure in PHP 5.3.
         */
        public function renameColumnsAfterAggregation(DataTable $table, $columnsToRenameAfterAggregation = null)
    
    mattab's avatar
    mattab a validé
        {
            // Rename columns after aggregation
            if (is_null($columnsToRenameAfterAggregation)) {
                $columnsToRenameAfterAggregation = self::$columnsToRenameAfterAggregation;
            }
            foreach ($columnsToRenameAfterAggregation as $oldName => $newName) {
    
                $table->renameColumn($oldName, $newName, $this->isAggregateSubTables());
    
    mattab's avatar
    mattab a validé
            }
        }
    
    
        protected function getAggregatedNumericMetrics($columns, $operationToApply)
        {
            if (!is_array($columns)) {
                $columns = array($columns);
            }
            $operationForColumn = $this->getOperationForColumns($columns, $operationToApply);
    
            $dataTable = $this->getArchive()->getDataTableFromNumeric($columns);
    
            $results = $this->getAggregatedDataTableMap($dataTable, $operationForColumn);
            if ($results->getRowsCount() > 1) {
                throw new Exception("A DataTable is an unexpected state:" . var_export($results, true));
            }
    
    mattab's avatar
    mattab a validé
    
    
            if($rowMetrics === false) {
                $rowMetrics = new Row;
            }
    
            $this->enrichWithUniqueVisitorsMetric($rowMetrics);
    
    mattab's avatar
    mattab a validé
            $this->renameColumnsAfterAggregation($results);
    
    
            $metrics = $rowMetrics->getColumns();
    
    
            foreach ($columns as $name) {
                if (!isset($metrics[$name])) {
                    $metrics[$name] = 0;
                }
            }
            return $metrics;
        }
    
    
        /**
         * @return bool
         */
        protected function isAggregateSubTables()
        {
            return !$this->getParams()->isSkipAggregationOfSubTables();
        }