![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-downloadable/Console/Command/ |
<?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\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; /** * Class DomainsRemoveCommand * * Command for removing downloadable domain from the whitelist */ class DomainsRemoveCommand extends Command { /** * Name of domains input argument */ public const INPUT_KEY_DOMAINS = 'domains'; /** * @var DomainManager */ private $domainManager; /** * DomainsRemoveCommand constructor. * * @param DomainManager $domainManager */ public function __construct( DomainManager $domainManager ) { $this->domainManager = $domainManager; parent::__construct(); } /** * @inheritdoc */ protected function configure() { $description = 'Remove domains from the downloadable domains whitelist'; $this->setName('downloadable:domains:remove') ->setDescription($description) ->setDefinition( [ new InputArgument( self::INPUT_KEY_DOMAINS, InputArgument::IS_ARRAY, 'Domain names' ) ] ); parent::configure(); } /** * @inheritdoc */ protected function execute(InputInterface $input, OutputInterface $output) { try { if ($input->getArgument(self::INPUT_KEY_DOMAINS)) { $whitelistBefore = $this->domainManager->getDomains(); $removeDomains = $input->getArgument(self::INPUT_KEY_DOMAINS); $removeDomains = array_filter(array_map('trim', $removeDomains), 'strlen'); $this->domainManager->removeDomains($removeDomains); foreach (array_diff($whitelistBefore, $this->domainManager->getDomains()) as $removedHost) { $output->writeln( $removedHost . ' was removed from the 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; } }