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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\MediaStorage\Console\Command;
use Magento\Framework\App\Area;
use Magento\Framework\App\State;
use Magento\MediaStorage\Service\ImageResize;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Helper\ProgressBar;
use Magento\Framework\ObjectManagerInterface;
class ImagesResizeCommand extends \Symfony\Component\Console\Command\Command
{
/**
* @var ImageResize
*/
private $resize;
/**
* @var State
*/
private $appState;
/**
* @var ObjectManagerInterface
*/
private $objectManager;
/**
* @param State $appState
* @param ImageResize $resize
* @param ObjectManagerInterface $objectManager
*/
public function __construct(
State $appState,
ImageResize $resize,
ObjectManagerInterface $objectManager
) {
parent::__construct();
$this->resize = $resize;
$this->appState = $appState;
$this->objectManager = $objectManager;
}
/**
* {@inheritdoc}
*/
protected function configure()
{
$this->setName('catalog:images:resize')
->setDescription('Creates resized product images');
}
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
try {
$this->appState->setAreaCode(Area::AREA_GLOBAL);
$generator = $this->resize->resizeFromThemes();
/** @var ProgressBar $progress */
$progress = $this->objectManager->create(ProgressBar::class, [
'output' => $output,
'max' => $generator->current()
]);
$progress->setFormat(
"%current%/%max% [%bar%] %percent:3s%% %elapsed% %memory:6s% \t| <info>%message%</info>"
);
if ($output->getVerbosity() !== OutputInterface::VERBOSITY_NORMAL) {
$progress->setOverwrite(false);
}
for (; $generator->valid(); $generator->next()) {
$progress->setMessage($generator->key());
$progress->advance();
}
} catch (\Exception $e) {
$output->writeln("<error>{$e->getMessage()}</error>");
// we must have an exit code higher than zero to indicate something was wrong
return \Magento\Framework\Console\Cli::RETURN_FAILURE;
}
$output->write(PHP_EOL);
$output->writeln("<info>Product images resized successfully</info>");
}
}