Total Complexity | 47 |
Total Lines | 327 |
Duplicated Lines | 0 % |
Changes | 21 | ||
Bugs | 15 | Features | 0 |
Complex classes like BaseCommand often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use BaseCommand, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
25 | abstract class BaseCommand extends Command |
||
26 | { |
||
27 | use Containable; |
||
28 | use Logger; |
||
29 | use Pathable; |
||
30 | |||
31 | protected $action; |
||
32 | |||
33 | protected $locales_length = 0; |
||
34 | |||
35 | protected $files_length = 0; |
||
36 | |||
37 | protected $files; |
||
38 | |||
39 | protected $locales; |
||
40 | |||
41 | protected $extra_packages; |
||
42 | |||
43 | protected $processed = []; |
||
44 | |||
45 | public function handle() |
||
46 | { |
||
47 | $this->setLogger(); |
||
48 | $this->start(); |
||
49 | $this->clean(); |
||
50 | $this->ran(); |
||
51 | $this->end(); |
||
52 | } |
||
53 | |||
54 | abstract protected function processor(?string $filename): Processor; |
||
55 | |||
56 | protected function ran(): void |
||
57 | { |
||
58 | $this->log('Starting processing of the package list...'); |
||
59 | |||
60 | foreach ($this->packages() as $package) { |
||
61 | $this->log('Packages handling:', $package); |
||
62 | |||
63 | $this->validatePackage($package); |
||
64 | |||
65 | $this->ranLocales($package); |
||
66 | } |
||
67 | } |
||
68 | |||
69 | protected function ranLocales(string $package): void |
||
70 | { |
||
71 | $this->log('Starting processing of the locales list for the', $package, 'package...'); |
||
72 | |||
73 | foreach ($this->locales() as $locale) { |
||
74 | $this->log('Localization handling:', $locale); |
||
75 | |||
76 | $this->validateLocale($locale); |
||
77 | |||
78 | $this->ranFiles($package, $locale); |
||
79 | $this->ranPackages($package, $locale); |
||
80 | } |
||
81 | } |
||
82 | |||
83 | protected function ranFiles(string $package, string $locale): void |
||
84 | { |
||
85 | $this->log('Starting processing of the files for the', $package, 'package and', $locale, 'localization...'); |
||
86 | |||
87 | foreach ($this->files($package) as $filename) { |
||
88 | $this->log('Processing the localization file:', $filename); |
||
89 | |||
90 | $this->processing($locale, $filename, $package); |
||
91 | |||
92 | $status = $this->process($package, $locale, $filename, $filename); |
||
93 | |||
94 | $this->pushProcessed($filename); |
||
95 | |||
96 | $this->processed($locale, $filename, $status, $package); |
||
97 | } |
||
98 | } |
||
99 | |||
100 | protected function ranPackages(string $package, string $locale): void |
||
101 | { |
||
102 | $this->log('Starting processing of extra files for the', $package, 'package and', $locale, 'localization...'); |
||
103 | |||
104 | foreach ($this->extraPackages() as $extra_package) { |
||
105 | if (! $extra_package->has($package, $locale)) { |
||
106 | continue; |
||
107 | } |
||
108 | |||
109 | $name = $extra_package->vendor(); |
||
110 | $filenames = $extra_package->source(); |
||
111 | |||
112 | foreach ($filenames as $filename) { |
||
113 | $path = $extra_package->targetPath($locale, $filename); |
||
114 | $target = $extra_package->targetFilename($locale, $filename); |
||
115 | |||
116 | $this->processing($locale, $name, $package); |
||
117 | |||
118 | $this->ensureDirectory($path, true); |
||
119 | |||
120 | $status = $this->process($package, $locale, $filename, $target); |
||
121 | |||
122 | $this->pushProcessed($path); |
||
123 | |||
124 | $this->processed($locale, $name, $status, $package); |
||
125 | } |
||
126 | } |
||
127 | } |
||
128 | |||
129 | protected function process(?string $package, ?string $locale, ?string $source_filename, ?string $target_filename): string |
||
130 | { |
||
131 | $this->log('Launching the processor for localization:', $locale, ',', $source_filename); |
||
132 | |||
133 | return $this->processor($source_filename) |
||
134 | ->force($this->hasForce() || $this->hasProcessed($source_filename)) |
||
135 | ->whenPackage($package) |
||
136 | ->whenLocale($locale) |
||
137 | ->whenSourceFilename($source_filename, $this->hasInline()) |
||
138 | ->whenTargetFilename($target_filename) |
||
139 | ->run(); |
||
140 | } |
||
141 | |||
142 | protected function locales(): array |
||
143 | { |
||
144 | $this->log('Getting a list of localizations...'); |
||
145 | |||
146 | if (! empty($this->locales)) { |
||
147 | return $this->locales; |
||
148 | } |
||
149 | |||
150 | return $this->locales = LocalesSupport::make($this->input, $this->output, $this->action(), $this->targetLocales())->get(); |
||
151 | } |
||
152 | |||
153 | protected function targetLocales(): array |
||
154 | { |
||
155 | $this->log('Getting a list of installed localizations...'); |
||
156 | |||
157 | return Locales::installed(); |
||
158 | } |
||
159 | |||
160 | protected function packages(): array |
||
161 | { |
||
162 | $this->log('Getting a list of packages available for processing...'); |
||
163 | |||
164 | return Packages::get(); |
||
165 | } |
||
166 | |||
167 | protected function files(string $package): array |
||
179 | }); |
||
180 | } |
||
181 | |||
182 | /** |
||
183 | * @return array|\Helldar\LaravelLangPublisher\Packages\Package[] |
||
184 | */ |
||
185 | protected function extraPackages(): array |
||
186 | { |
||
187 | if (! empty($this->extra_packages)) { |
||
188 | return $this->extra_packages; |
||
189 | } |
||
190 | |||
191 | return $this->extra_packages = array_map(static function ($package) { |
||
192 | /* @var \Helldar\LaravelLangPublisher\Packages\Package $package */ |
||
193 | return $package::make(); |
||
194 | }, PackagesConst::ALL); |
||
195 | } |
||
196 | |||
197 | protected function start(): void |
||
198 | { |
||
199 | $this->log('Running the console command:', parent::class); |
||
200 | |||
201 | $action = $this->action()->present(true); |
||
202 | |||
203 | $this->info($action . ' localizations...'); |
||
204 | } |
||
205 | |||
206 | protected function end(): void |
||
207 | { |
||
208 | $this->log('Completing the execution of the console command...'); |
||
209 | |||
210 | $action = $this->action()->past(); |
||
211 | |||
212 | $this->info('Localizations have ben successfully ' . $action . '.'); |
||
213 | } |
||
214 | |||
215 | protected function processing(string $locale, string $filename, string $package = null): void |
||
216 | { |
||
217 | $this->log('Displaying a message about the start of file processing: locale is', $locale, ', filename is', $filename, ', package is', $package . '...'); |
||
218 | |||
219 | $message = $this->message($locale, $filename, $package)->start(); |
||
220 | |||
221 | $this->output->write($message); |
||
222 | } |
||
223 | |||
224 | protected function processed(string $locale, string $filename, string $status, string $package = null): void |
||
225 | { |
||
226 | $this->log('Displaying a message about the finish of file processing: locale is', $locale, ', filename is', $filename, ', package is', $package . '...'); |
||
227 | |||
228 | $message = $this->message($locale, $filename, $package)->finish($status); |
||
229 | |||
230 | $this->output->writeln($message); |
||
231 | } |
||
232 | |||
233 | protected function message(string $locale, string $filename, string $package = null): InfoSupport |
||
234 | { |
||
235 | $this->log('Preparing an object for displaying a message: locale is', $locale, ', filename is', $filename, ', package is', $package . '...'); |
||
236 | |||
237 | return Info::same() |
||
238 | ->package($package) |
||
239 | ->locale($locale, $this->localesLength()) |
||
240 | ->filename($filename, $this->filesLength()); |
||
241 | } |
||
242 | |||
243 | protected function localesLength(): int |
||
244 | { |
||
245 | $this->log('Getting the maximum length of a localization string...'); |
||
246 | |||
247 | if ($this->locales_length > 0) { |
||
248 | return $this->locales_length; |
||
249 | } |
||
250 | |||
251 | $this->log('Calculating the maximum length of a localization string...'); |
||
252 | |||
253 | return $this->locales_length = Arr::longestStringLength($this->locales()); |
||
254 | } |
||
255 | |||
256 | protected function filesLength(): int |
||
257 | { |
||
258 | $this->log('Getting the maximum length of a filenames...'); |
||
259 | |||
260 | if ($this->files_length > 0) { |
||
261 | return $this->files_length; |
||
262 | } |
||
263 | |||
264 | $this->log('Calculating the maximum length of a filenames...'); |
||
265 | |||
266 | $files = []; |
||
267 | |||
268 | foreach ($this->packages() as $package) { |
||
269 | $files = array_merge($files, $this->files($package)); |
||
270 | } |
||
271 | |||
272 | return $this->files_length = Arr::longestStringLength(array_unique($files)); |
||
273 | } |
||
274 | |||
275 | protected function hasInline(): bool |
||
276 | { |
||
277 | $this->log('Getting a use case for a validation file.'); |
||
278 | |||
279 | return Config::hasInline(); |
||
280 | } |
||
281 | |||
282 | protected function action(): Actionable |
||
283 | { |
||
284 | $this->log('Getting the action...'); |
||
285 | |||
286 | return $this->container($this->action); |
||
287 | } |
||
288 | |||
289 | protected function ensureDirectory(string $path, bool $is_file = false): void |
||
290 | { |
||
291 | $path = $is_file ? $this->pathDirectory($path) : $path; |
||
292 | |||
293 | Directory::ensureDirectory($path); |
||
294 | } |
||
295 | |||
296 | protected function pushProcessed(?string $filename): void |
||
297 | { |
||
298 | $this->log('Add a link to the processed file to the cache:', $filename); |
||
299 | |||
300 | if ($filename && ! $this->hasProcessed($filename)) { |
||
301 | $this->processed[] = $filename; |
||
302 | } |
||
303 | } |
||
304 | |||
305 | protected function hasProcessed(?string $filename): bool |
||
306 | { |
||
307 | $this->log('Check if the file was processed earlier:', $filename); |
||
308 | |||
309 | return $filename && in_array($filename, $this->processed, true); |
||
310 | } |
||
311 | |||
312 | protected function hasForce(): bool |
||
313 | { |
||
314 | $this->log('Getting the value of the "force" option...'); |
||
315 | |||
316 | return $this->boolOption('force'); |
||
317 | } |
||
318 | |||
319 | protected function hasFull(): bool |
||
320 | { |
||
321 | $this->log('Getting the value of the "full" option...'); |
||
322 | |||
323 | return $this->boolOption('full'); |
||
324 | } |
||
325 | |||
326 | protected function boolOption(string $key): bool |
||
331 | } |
||
332 | |||
333 | protected function validateLocale(string $locale): void |
||
334 | { |
||
335 | $this->log('Calling the localization validation method: ', $locale, '...'); |
||
336 | |||
338 | } |
||
339 | |||
340 | protected function validatePackage(string $package): void |
||
341 | { |
||
342 | $this->log('Calling the package validation method: ', $package, '...'); |
||
343 | |||
344 | Validator::package($package); |
||
345 | } |
||
346 | |||
347 | protected function clean(): void |
||
348 | { |
||
349 | $this->log('Clear the variable from the saved localizations...'); |
||
350 | |||
351 | $this->locales = null; |
||
352 | } |
||
353 | } |
||
354 |