قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +00:00

* Add console plugin:install command * fix: install the remaining files of the plugin * fix: remove redundant code * fix: mention implicated plugin in error message * refactor: add function parameter type * refactor: move isMarketplaceEnabled check out of the loop * fix: fix plugin not being listed in the plugin manager * refactor: promote pluginManager to class property * Revert "refactor: promote pluginManager to class property" This reverts commit e38d349a955e40fb32c6bdd4bc4f45941b685b2a. * refactor: simplify method signature * fix: improve error message when plugin is not downloadable * chore: fix code indentation * refactor: use dependency injection for PluginInstaller * feat: make sure config file is writable * chore: update CHANGELOG file * feat: make plugin:install command able to also update the plugin * Apply suggestions from code review --------- Co-authored-by: Stefan Giehl <stefan@matomo.org>
72 خطوط
2.3 KiB
PHP
72 خطوط
2.3 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\Plugins\CorePluginsAdmin\Commands;
|
|
|
|
use Piwik\Config as PiwikConfig;
|
|
use Piwik\Container\StaticContainer;
|
|
use Piwik\Plugin\ConsoleCommand;
|
|
use Piwik\Plugin\Manager;
|
|
use Piwik\Plugins\CorePluginsAdmin\PluginInstaller;
|
|
use Piwik\Plugins\Marketplace\Marketplace;
|
|
|
|
/**
|
|
* plugin:install console command.
|
|
*/
|
|
class InstallPlugin extends ConsoleCommand
|
|
{
|
|
protected function configure(): void
|
|
{
|
|
$this->setName('plugin:install-or-update');
|
|
$this->setDescription('Install or update a plugin.');
|
|
$this->addOptionalArgument('plugin', 'The name of the plugin you want to install or update. Multiple plugin names can be specified separated by a space.', null, true);
|
|
}
|
|
|
|
protected function doExecute(): int
|
|
{
|
|
PiwikConfig::getInstance()->checkConfigIsWritable();
|
|
|
|
$input = $this->getInput();
|
|
$output = $this->getOutput();
|
|
$pluginManager = Manager::getInstance();
|
|
|
|
if (!Marketplace::isMarketplaceEnabled()) {
|
|
$output->writeln(sprintf("<error>Marketplace is not enabled, can't install or update plugins.</error>"));
|
|
return self::FAILURE;
|
|
}
|
|
|
|
$pluginNames = $input->getArgument('plugin');
|
|
|
|
foreach ($pluginNames as $pluginName) {
|
|
try {
|
|
$this->installPlugin($pluginName);
|
|
$output->writeln(sprintf("Installed or updated plugin <info>%s</info>", $pluginName));
|
|
} catch (\Piwik\Plugins\CorePluginsAdmin\PluginInstallerException $e) {
|
|
$output->writeln(sprintf("<error>Unable to install or update plugin %s. %s</error>", $pluginName, $e->getMessage()));
|
|
continue;
|
|
}
|
|
}
|
|
|
|
return self::SUCCESS;
|
|
}
|
|
|
|
/**
|
|
* @param string $pluginName
|
|
*/
|
|
private function installPlugin(string $pluginName): void
|
|
{
|
|
$pluginInstaller = StaticContainer::get(PluginInstaller::class);
|
|
$pluginInstaller->installOrUpdatePluginFromMarketplace($pluginName);
|
|
|
|
$pluginManager = Manager::getInstance();
|
|
$pluginManager->loadPlugin($pluginName);
|
|
$pluginManager->installLoadedPlugins();
|
|
}
|
|
}
|