![]() 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/mautic.corals.io/app/bundles/CoreBundle/Command/ |
<?php namespace Mautic\CoreBundle\Command; use Mautic\CoreBundle\Helper\MaxMindDoNotSellDownloadHelper; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Contracts\Translation\TranslatorInterface; class UpdateDoNotSellListCommand extends Command { public function __construct( private MaxMindDoNotSellDownloadHelper $maxMindDoNotSellDownloadHelper, private TranslatorInterface $translator ) { parent::__construct(); } protected function configure() { $this->setName('mautic:donotsell:download') ->setHelp( <<<'EOT' The <info>%command.name%</info> command is used to update MaxMind Do Not Sell list. <info>php %command.full_name%</info> EOT ); } protected function execute(InputInterface $input, OutputInterface $output): int { if ($this->maxMindDoNotSellDownloadHelper->downloadRemoteDataStore()) { $output->writeln('<info>'.$this->translator->trans('mautic.core.success').'</info>'); } else { $remoteUrl = $this->maxMindDoNotSellDownloadHelper->getRemoteDataStoreDownloadUrl(); $localPath = $this->maxMindDoNotSellDownloadHelper->getLocalDataStoreFilepath(); if ($remoteUrl && $localPath) { $output->writeln('<error>'.$this->translator->trans( 'mautic.core.do_not_sell.remote_fetch_error', [ '%remoteUrl%' => $remoteUrl, '%localPath%' => $localPath, ] ).'</error>'); } else { $output->writeln('<error>'.$this->translator->trans( 'mautic.core.do_not_sell.remote_fetch_error_generic' ).'</error>'); } } return Command::SUCCESS; } protected static $defaultDescription = 'Fetch remote do not sell list from MaxMind'; }