| Current Path : /home/rtorresani/www/vendor/magento/module-downloadable/Console/Command/ |
| Current File : //home/rtorresani/www/vendor/magento/module-downloadable/Console/Command/DomainsShowCommand.php |
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Downloadable\Console\Command;
use Exception;
use Magento\Downloadable\Api\DomainManagerInterface as DomainManager;
use Magento\Framework\Console\Cli;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Class DomainsShowCommand
*
* Command for listing allowed downloadable domains
*/
class DomainsShowCommand extends Command
{
/**
* @var DomainManager
*/
private $domainManager;
/**
* DomainsShowCommand constructor.
* @param DomainManager $domainManager
*/
public function __construct(
DomainManager $domainManager
) {
$this->domainManager = $domainManager;
parent::__construct();
}
/**
* @inheritdoc
*/
protected function configure()
{
$description = 'Display downloadable domains whitelist';
$this->setName('downloadable:domains:show')
->setDescription($description);
parent::configure();
}
/**
* @inheritdoc
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
try {
$whitelist = implode("\n", $this->domainManager->getDomains());
$output->writeln(
"Downloadable domains whitelist:\n$whitelist"
);
} catch (Exception $e) {
$output->writeln('<error>' . $e->getMessage() . '</error>');
if ($output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
$output->writeln($e->getTraceAsString());
}
return Cli::RETURN_FAILURE;
}
return Cli::RETURN_SUCCESS;
}
}