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

SetLicenseKey.php « Commands « Marketplace « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b22cc7daa2930ac17d5a210bcc70dc7d3f0eae1 (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
<?php
/**
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

namespace Piwik\Plugins\Marketplace\Commands;

use Piwik\Plugin\ConsoleCommand;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Piwik\Plugins\Marketplace\Api;

/**
 * marketplace:set-license-key console command
 */
class SetLicenseKey extends ConsoleCommand
{
    protected function configure()
    {
        $this->setName('marketplace:set-license-key');
        $this->setDescription('Sets a marketplace license key');
        $this->addOption('license-key', null, InputOption::VALUE_REQUIRED, 'Your license key:');
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $licenseKey = $input->getOption('license-key');

        if (empty(trim($licenseKey))) {
            Api::getInstance()->deleteLicenseKey();
            $output->writeln("License key removed.");
            return;
        }

        Api::getInstance()->saveLicenseKey($licenseKey);
        $output->writeln("License key set.");
    }
}