-
-
Notifications
You must be signed in to change notification settings - Fork 556
/
Copy pathPluginCKEditorButtonCommand.php
234 lines (207 loc) · 7.56 KB
/
PluginCKEditorButtonCommand.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<?php
/**
* @file
* Contains \Drupal\Console\Command\Generate\PluginCKEditorButtonCommand.
*/
namespace Drupal\Console\Command\Generate;
use Drupal\Console\Command\Shared\ArrayInputTrait;
use Drupal\Console\Command\Shared\ConfirmationTrait;
use Drupal\Console\Command\Shared\ModuleTrait;
use Drupal\Console\Core\Command\Command;
use Drupal\Console\Core\Utils\ChainQueue;
use Drupal\Console\Core\Utils\StringConverter;
use Drupal\Console\Extension\Manager;
use Drupal\Console\Generator\PluginCKEditorButtonGenerator;
use Drupal\Console\Utils\Validator;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class PluginCKEditorButtonCommand extends Command
{
use ArrayInputTrait;
use ConfirmationTrait;
use ModuleTrait;
/**
* @var ChainQueue
*/
protected $chainQueue;
/**
* @var PluginCKEditorButtonGenerator
*/
protected $generator;
/**
* @var Manager
*/
protected $extensionManager;
/**
* @var StringConverter
*/
protected $stringConverter;
/**
* @var Validator
*/
protected $validator;
/**
* PluginCKEditorButtonCommand constructor.
*
* @param ChainQueue $chainQueue
* @param PluginCKEditorButtonGenerator $generator
* @param Manager $extensionManager
* @param StringConverter $stringConverter
* @param Validator $validator
*/
public function __construct(
ChainQueue $chainQueue,
PluginCKEditorButtonGenerator $generator,
Manager $extensionManager,
StringConverter $stringConverter,
Validator $validator
) {
$this->chainQueue = $chainQueue;
$this->generator = $generator;
$this->extensionManager = $extensionManager;
$this->stringConverter = $stringConverter;
$this->validator = $validator;
parent::__construct();
}
protected function configure()
{
$this
->setName('generate:plugin:ckeditorbutton')
->setDescription($this->trans('commands.generate.plugin.ckeditorbutton.description'))
->setHelp($this->trans('commands.generate.plugin.ckeditorbutton.help'))
->addOption(
'module',
null,
InputOption::VALUE_REQUIRED,
$this->trans('commands.common.options.module')
)
->addOption(
'class',
null,
InputOption::VALUE_REQUIRED,
$this->trans('commands.generate.plugin.ckeditorbutton.options.class')
)
->addOption(
'label',
null,
InputOption::VALUE_REQUIRED,
$this->trans('commands.generate.plugin.ckeditorbutton.options.label')
)
->addOption(
'plugin-id',
null,
InputOption::VALUE_REQUIRED,
$this->trans('commands.generate.plugin.ckeditorbutton.options.plugin-id')
)
->addOption(
'buttons',
null,
InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
$this->trans('commands.generate.plugin.ckeditorbutton.options.buttons')
)->setAliases(['gpc']);
}
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
// @see use Drupal\Console\Command\Shared\ConfirmationTrait::confirmOperation
if (!$this->confirmOperation()) {
return 1;
}
$module = $this->validateModule($input->getOption('module'));
$class_name = $this->validator->validateClassName($input->getOption('class'));
$label = $input->getOption('label');
$plugin_id = $input->getOption('plugin-id');
$buttons = $input->getOption('buttons');
$noInteraction = $input->getOption('no-interaction');
// Parse nested data.
if ($noInteraction) {
$buttons = $this->explodeInlineArray($buttons);
}
$this->generator->generate([
'module' => $module,
'class_name' => $class_name,
'label' => $label,
'plugin_id' => $plugin_id,
'buttons' => $buttons,
]);
$this->chainQueue->addCommand('cache:rebuild', ['cache' => 'discovery'], false);
return 0;
}
protected function interact(InputInterface $input, OutputInterface $output)
{
// --module option
$module = $this->getModuleOption();
// --class option
$class_name = $input->getOption('class');
if (!$class_name) {
$class_name = $this->getIo()->ask(
$this->trans('commands.generate.plugin.ckeditorbutton.questions.class'),
'DefaultCKEditorButton',
function ($class_name) {
return $this->validator->validateClassName($class_name);
}
);
$input->setOption('class', $class_name);
}
// --label option
$label = $input->getOption('label');
if (!$label) {
$label = $this->getIo()->ask(
$this->trans('commands.generate.plugin.ckeditorbutton.questions.label'),
$this->stringConverter->camelCaseToHuman($class_name)
);
$input->setOption('label', $label);
}
// --plugin-id option
$plugin_id = $input->getOption('plugin-id');
if (!$plugin_id) {
$plugin_id = $this->getIo()->ask(
$this->trans('commands.generate.plugin.ckeditorbutton.questions.plugin-id'),
$this->stringConverter->createMachineName($label)
);
$input->setOption('plugin-id', $plugin_id);
}
// --inputs option
$buttons = $input->getOption('buttons');
if (!$buttons) {
while (true) {
$this->getIo()->newLine(2);
$this->getIo()->comment($this->trans('commands.generate.plugin.ckeditorbutton.options.button-properties'));
// --button-name option
$buttonName = $this->getIo()->ask(
$this->trans('commands.generate.plugin.ckeditorbutton.questions.button-name'),
$this->stringConverter->anyCaseToUcFirst($label)
);
$buttonLabel = $this->getIo()->ask(
$this->trans('commands.generate.plugin.ckeditorbutton.questions.button-label'),
$label
);
$buttonIcon = $this->getIo()->ask(
$this->trans('commands.generate.plugin.ckeditorbutton.questions.button-icon-path'),
drupal_get_path('module', $module) . '/js/plugins/' . $plugin_id . '/images/icon.png'
);
array_push(
$buttons,
[
'name' => $buttonName,
'label' => $buttonLabel,
'icon' => $buttonIcon,
]
);
if (!$this->getIo()->confirm(
$this->trans('commands.generate.plugin.ckeditorbutton.questions.button-add'),
true
)
) {
break;
}
}
} else {
$buttons= $this->explodeInlineArray($buttons);
}
$input->setOption('buttons', $buttons);
}
}