Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Info.php « Commands « CustomVariables « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c2a73bda662ca488ebd9e9fdbcb7e9a48019037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */

namespace Piwik\Plugins\CustomVariables\Commands;

use Piwik\Common;
use Piwik\Plugin\ConsoleCommand;
use Piwik\Plugins\CustomVariables\CustomVariables;
use Piwik\Plugins\CustomVariables\Model;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

/**
 */
class Info extends ConsoleCommand
{
    protected function configure()
    {
        $this->setName('customvariables:info');
        $this->setDescription('Get info about configured custom variables');
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $maxVars = CustomVariables::getMaxCustomVariables();

        if ($this->hasEverywhereSameAmountOfVariables()) {
            $this->writeSuccessMessage($output, array(
                'Your Piwik is configured for ' . $maxVars . ' custom variables.'
            ));
            return;
        }

        $output->writeln('<error>There is a problem with your custom variables configuration:</error>');
        $output->writeln('<error>Some database tables miss custom variables columns.</error>');
        $output->writeln('');
        $output->writeln('Your Piwik seems to be configured for ' . $maxVars . ' custom variables.');
        $output->writeln('Executing "<comment>./console customvariables:set-max-custom-variables ' . $maxVars . '</comment>" might fix this issue.');
        $output->writeln('If not check the following tables whether they have the same columns starting with <comment>custom_var_</comment>: ');
        foreach (Model::getScopes() as $scope) {
            $output->writeln(Common::prefixTable($scope));
        }
    }

    private function hasEverywhereSameAmountOfVariables()
    {
        $indexesBefore = null;

        foreach (Model::getScopes() as $scope) {
            $model   = new Model($scope);
            $indexes = $model->getCustomVarIndexes();

            if (is_null($indexesBefore)) {
                $indexesBefore = $indexes;
            } elseif ($indexes != $indexesBefore) {
                return false;
            }
        }
        
        return true;
    }
}