-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathUploadImages.php
114 lines (102 loc) · 3.09 KB
/
UploadImages.php
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php
namespace Cloudinary\Cloudinary\Command;
use Cloudinary\Cloudinary\Model\BatchUploader;
use Cloudinary\Cloudinary\Model\Configuration;
use Cloudinary\Cloudinary\Model\Logger\OutputLogger;
use Magento\Framework\ObjectManagerInterface;
use Magento\Framework\Registry;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class UploadImages extends Command
{
/**#@+
* Keys and shortcuts for input arguments and options
*/
const FORCE = 'force';
const ENV = 'env';
/**#@- */
/**
* @var ObjectManagerInterface
*/
private $objectManager;
/**
* @var OutputLogger
*/
private $outputLogger;
/**
* @var Registry
*/
private $coreRegistry;
/**
* @var BatchUploader
*/
private $batchUploader;
/**
* @method __construct
* @param ObjectManagerInterface $objectManager
* @param OutputLogger $outputLogger
* @param Registry $coreRegistry
*/
public function __construct(
ObjectManagerInterface $objectManager,
OutputLogger $outputLogger,
Registry $coreRegistry
) {
parent::__construct('cloudinary:upload:all');
$this->objectManager = $objectManager;
$this->outputLogger = $outputLogger;
$this->coreRegistry = $coreRegistry;
}
/**
* Configure the command
*
* @return void
*/
protected function configure()
{
$this->setName('cloudinary:upload:all');
$this->setDescription('Upload unsynchronised images');
$this->setDefinition([
new InputOption(
self::FORCE,
'-f',
InputOption::VALUE_NONE,
'Force upload even if Cloudinary is disabled'
),
new InputOption(
self::ENV,
'-e',
InputOption::VALUE_OPTIONAL,
'Cloudinary environment variable that will be used during the process',
null
),
]);
}
/**
* @param InputInterface $input
* @param OutputInterface $output
*
* @return int
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
try {
$this->batchUploader = $this->objectManager
->get(\Cloudinary\Cloudinary\Model\BatchUploader::class);
if (($env = $input->getOption(self::ENV))) {
$this->coreRegistry->register(Configuration::CONFIG_PATH_ENVIRONMENT_VARIABLE, $env);
}
if ($input->getOption(self::FORCE)) {
$this->coreRegistry->register(Configuration::CONFIG_PATH_ENABLED, true);
}
$this->outputLogger->setOutput($output);
$this->batchUploader->uploadUnsynchronisedImages($this->outputLogger);
return 1;
} catch (\Exception $e) {
$output->writeln($e->getMessage());
return 0;
}
}
}