Total Complexity | 53 |
Total Lines | 482 |
Duplicated Lines | 0 % |
Changes | 5 | ||
Bugs | 2 | Features | 0 |
Complex classes like NntmuxPopulateSearchIndexes 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 NntmuxPopulateSearchIndexes, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
13 | class NntmuxPopulateSearchIndexes extends Command |
||
14 | { |
||
15 | /** |
||
16 | * The name and signature of the console command. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $signature = 'nntmux:populate |
||
21 | {--manticore : Use ManticoreSearch} |
||
22 | {--elastic : Use ElasticSearch} |
||
23 | {--releases : Populates the releases index} |
||
24 | {--predb : Populates the predb index} |
||
25 | {--count=20000 : Sets the chunk size} |
||
26 | {--optimize : Optimize ManticoreSearch indexes}'; |
||
27 | |||
28 | /** |
||
29 | * The console command description. |
||
30 | * |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $description = 'Populate Manticore/Elasticsearch indexes with either releases or predb'; |
||
34 | |||
35 | private const SUPPORTED_ENGINES = ['manticore', 'elastic']; |
||
36 | |||
37 | private const SUPPORTED_INDEXES = ['releases', 'predb']; |
||
38 | |||
39 | private const GROUP_CONCAT_MAX_LEN = 16384; |
||
40 | |||
41 | private const DEFAULT_CHUNK_SIZE = 20000; |
||
42 | |||
43 | /** |
||
44 | * Execute the console command. |
||
45 | */ |
||
46 | public function handle(): int |
||
47 | { |
||
48 | try { |
||
49 | if ($this->option('optimize')) { |
||
50 | return $this->handleOptimize(); |
||
51 | } |
||
52 | |||
53 | $engine = $this->getSelectedEngine(); |
||
54 | $index = $this->getSelectedIndex(); |
||
55 | |||
56 | if (! $engine || ! $index) { |
||
57 | $this->error('You must specify both an engine (--manticore or --elastic) and an index (--releases or --predb).'); |
||
58 | $this->info('Use --help to see all available options.'); |
||
59 | |||
60 | return Command::FAILURE; |
||
61 | } |
||
62 | |||
63 | return $this->populateIndex($engine, $index); |
||
64 | |||
65 | } catch (Exception $e) { |
||
66 | $this->error("An error occurred: {$e->getMessage()}"); |
||
67 | |||
68 | if ($this->output->isVerbose()) { |
||
69 | $this->error($e->getTraceAsString()); |
||
70 | } |
||
71 | |||
72 | return Command::FAILURE; |
||
73 | } |
||
74 | } |
||
75 | |||
76 | /** |
||
77 | * Get the selected search engine from options |
||
78 | */ |
||
79 | private function getSelectedEngine(): ?string |
||
80 | { |
||
81 | foreach (self::SUPPORTED_ENGINES as $engine) { |
||
82 | if ($this->option($engine)) { |
||
83 | return $engine; |
||
84 | } |
||
85 | } |
||
86 | |||
87 | return null; |
||
88 | } |
||
89 | |||
90 | /** |
||
91 | * Get the selected index from options |
||
92 | */ |
||
93 | private function getSelectedIndex(): ?string |
||
102 | } |
||
103 | |||
104 | /** |
||
105 | * Handle the optimize command |
||
106 | */ |
||
107 | private function handleOptimize(): int |
||
108 | { |
||
109 | $this->info('Optimizing ManticoreSearch indexes...'); |
||
110 | |||
111 | try { |
||
112 | (new ManticoreSearch)->optimizeRTIndex(); |
||
113 | $this->info('Optimization completed successfully!'); |
||
114 | |||
115 | return Command::SUCCESS; |
||
116 | } catch (Exception $e) { |
||
117 | $this->error("Optimization failed: {$e->getMessage()}"); |
||
118 | |||
119 | return Command::FAILURE; |
||
120 | } |
||
121 | } |
||
122 | |||
123 | /** |
||
124 | * Populate the specified index with the specified engine |
||
125 | */ |
||
126 | private function populateIndex(string $engine, string $index): int |
||
147 | } |
||
148 | |||
149 | private function manticoreReleases(): int |
||
150 | { |
||
151 | $manticore = new ManticoreSearch; |
||
152 | $indexName = 'releases_rt'; |
||
153 | |||
154 | $manticore->truncateRTIndex(Arr::wrap($indexName)); |
||
155 | |||
156 | $total = Release::count(); |
||
157 | if (! $total) { |
||
158 | $this->warn('Releases table is empty. Nothing to do.'); |
||
159 | |||
160 | return Command::SUCCESS; |
||
161 | } |
||
162 | |||
163 | $query = Release::query() |
||
164 | ->orderByDesc('releases.id') |
||
165 | ->leftJoin('release_files', 'releases.id', '=', 'release_files.releases_id') |
||
166 | ->select([ |
||
167 | 'releases.id', |
||
168 | 'releases.name', |
||
169 | 'releases.searchname', |
||
170 | 'releases.fromname', |
||
171 | 'releases.categories_id', |
||
172 | ]) |
||
173 | ->selectRaw('IFNULL(GROUP_CONCAT(release_files.name SEPARATOR " "),"") AS filename') |
||
174 | ->groupBy([ |
||
175 | 'releases.id', |
||
176 | 'releases.name', |
||
177 | 'releases.searchname', |
||
178 | 'releases.fromname', |
||
179 | 'releases.categories_id', |
||
180 | ]); |
||
181 | |||
182 | return $this->processManticoreData( |
||
183 | $indexName, |
||
184 | $total, |
||
|
|||
185 | $query, |
||
186 | function ($item) { |
||
187 | return [ |
||
188 | 'id' => (string) $item->id, |
||
189 | 'name' => (string) ($item->name ?: ''), |
||
190 | 'searchname' => (string) ($item->searchname ?: ''), |
||
191 | 'fromname' => (string) ($item->fromname ?: ''), |
||
192 | 'categories_id' => (string) ($item->categories_id ?: '0'), |
||
193 | 'filename' => (string) ($item->filename ?: ''), |
||
194 | 'dummy' => '1', |
||
195 | ]; |
||
196 | } |
||
197 | ); |
||
198 | } |
||
199 | |||
200 | /** |
||
201 | * Populate ManticoreSearch predb index |
||
202 | */ |
||
203 | private function manticorePredb(): int |
||
204 | { |
||
205 | $manticore = new ManticoreSearch; |
||
206 | $indexName = 'predb_rt'; |
||
207 | |||
208 | $manticore->truncateRTIndex([$indexName]); |
||
209 | |||
210 | $total = Predb::count(); |
||
211 | if (! $total) { |
||
212 | $this->warn('PreDB table is empty. Nothing to do.'); |
||
213 | |||
214 | return Command::SUCCESS; |
||
215 | } |
||
216 | |||
217 | $query = Predb::query() |
||
218 | ->select(['id', 'title', 'filename', 'source']) |
||
219 | ->orderBy('id'); |
||
220 | |||
221 | return $this->processManticoreData( |
||
222 | $indexName, |
||
223 | $total, |
||
224 | $query, |
||
225 | function ($item) { |
||
226 | return [ |
||
227 | 'id' => $item->id, |
||
228 | 'title' => (string) ($item->title ?? ''), |
||
229 | 'filename' => (string) ($item->filename ?? ''), |
||
230 | 'source' => (string) ($item->source ?? ''), |
||
231 | 'dummy' => 1, |
||
232 | ]; |
||
233 | } |
||
234 | ); |
||
235 | } |
||
236 | |||
237 | /** |
||
238 | * Process data for ManticoreSearch |
||
239 | */ |
||
240 | private function processManticoreData(string $indexName, int $total, $query, callable $transformer): int |
||
241 | { |
||
242 | $manticore = new ManticoreSearch; |
||
243 | $chunkSize = $this->getChunkSize(); |
||
244 | |||
245 | $this->setGroupConcatMaxLen(); |
||
246 | |||
247 | $this->info(sprintf( |
||
248 | "Populating ManticoreSearch index '%s' with %s rows using chunks of %s.", |
||
249 | $indexName, |
||
250 | number_format($total), |
||
251 | number_format($chunkSize) |
||
252 | )); |
||
253 | |||
254 | $bar = $this->output->createProgressBar($total); |
||
255 | $bar->setFormat('verbose'); |
||
256 | $bar->start(); |
||
257 | |||
258 | $processedCount = 0; |
||
259 | $errorCount = 0; |
||
260 | |||
261 | try { |
||
262 | $query->chunk($chunkSize, function ($items) use ($manticore, $indexName, $transformer, $bar, &$processedCount, &$errorCount) { |
||
263 | $data = []; |
||
264 | |||
265 | foreach ($items as $item) { |
||
266 | try { |
||
267 | $data[] = $transformer($item); |
||
268 | $processedCount++; |
||
269 | } catch (Exception $e) { |
||
270 | $errorCount++; |
||
271 | if ($this->output->isVerbose()) { |
||
272 | $this->error("Error processing item {$item->id}: {$e->getMessage()}"); |
||
273 | } |
||
274 | } |
||
275 | $bar->advance(); |
||
276 | } |
||
277 | |||
278 | if (! empty($data)) { |
||
279 | $manticore->manticoreSearch->table($indexName)->replaceDocuments($data); |
||
280 | } |
||
281 | }); |
||
282 | |||
283 | $bar->finish(); |
||
284 | $this->newLine(); |
||
285 | |||
286 | if ($errorCount > 0) { |
||
287 | $this->warn("Completed with {$errorCount} errors out of {$processedCount} processed items."); |
||
288 | } else { |
||
289 | $this->info('ManticoreSearch population completed successfully!'); |
||
290 | } |
||
291 | |||
292 | return Command::SUCCESS; |
||
293 | |||
294 | } catch (Exception $e) { |
||
295 | $bar->finish(); |
||
296 | $this->newLine(); |
||
297 | $this->error("Failed to populate ManticoreSearch: {$e->getMessage()}"); |
||
298 | |||
299 | return Command::FAILURE; |
||
300 | } |
||
301 | } |
||
302 | |||
303 | /** |
||
304 | * Populate ElasticSearch releases index |
||
305 | */ |
||
306 | private function elasticReleases(): int |
||
307 | { |
||
308 | $total = Release::count(); |
||
309 | if (! $total) { |
||
310 | $this->warn('Releases table is empty. Nothing to do.'); |
||
311 | |||
312 | return Command::SUCCESS; |
||
313 | } |
||
314 | |||
315 | $query = Release::query() |
||
316 | ->orderByDesc('releases.id') |
||
317 | ->leftJoin('release_files', 'releases.id', '=', 'release_files.releases_id') |
||
318 | ->select([ |
||
319 | 'releases.id', |
||
320 | 'releases.name', |
||
321 | 'releases.searchname', |
||
322 | 'releases.fromname', |
||
323 | 'releases.categories_id', |
||
324 | 'releases.postdate', |
||
325 | ]) |
||
326 | ->selectRaw('IFNULL(GROUP_CONCAT(release_files.name SEPARATOR " "),"") AS filename') |
||
327 | ->groupBy([ |
||
328 | 'releases.id', |
||
329 | 'releases.name', |
||
330 | 'releases.searchname', |
||
331 | 'releases.fromname', |
||
332 | 'releases.categories_id', |
||
333 | 'releases.postdate', |
||
334 | ]); |
||
335 | |||
336 | return $this->processElasticData( |
||
337 | 'releases', |
||
338 | $total, |
||
339 | $query, |
||
340 | function ($item) { |
||
341 | $searchName = str_replace(['.', '-'], ' ', $item->searchname ?? ''); |
||
342 | |||
343 | return [ |
||
344 | 'id' => $item->id, |
||
345 | 'name' => $item->name, |
||
346 | 'searchname' => $item->searchname, |
||
347 | 'plainsearchname' => $searchName, |
||
348 | 'fromname' => $item->fromname, |
||
349 | 'categories_id' => $item->categories_id, |
||
350 | 'filename' => $item->filename ?? '', |
||
351 | 'postdate' => $item->postdate, |
||
352 | ]; |
||
353 | } |
||
354 | ); |
||
355 | } |
||
356 | |||
357 | /** |
||
358 | * Populate ElasticSearch predb index |
||
359 | */ |
||
360 | private function elasticPredb(): int |
||
361 | { |
||
362 | $total = Predb::count(); |
||
363 | if (! $total) { |
||
364 | $this->warn('PreDB table is empty. Nothing to do.'); |
||
365 | |||
366 | return Command::SUCCESS; |
||
367 | } |
||
368 | |||
369 | $query = Predb::query() |
||
370 | ->select(['id', 'title', 'filename', 'source']) |
||
371 | ->orderBy('id'); |
||
372 | |||
373 | return $this->processElasticData( |
||
374 | 'predb', |
||
375 | $total, |
||
376 | $query, |
||
377 | function ($item) { |
||
378 | return [ |
||
379 | 'id' => $item->id, |
||
380 | 'title' => $item->title, |
||
381 | 'filename' => $item->filename, |
||
382 | 'source' => $item->source, |
||
383 | ]; |
||
384 | } |
||
385 | ); |
||
386 | } |
||
387 | |||
388 | /** |
||
389 | * Process data for ElasticSearch |
||
390 | */ |
||
391 | private function processElasticData(string $indexName, int $total, $query, callable $transformer): int |
||
476 | } |
||
477 | } |
||
478 | |||
479 | /** |
||
480 | * Get the chunk size from options |
||
481 | */ |
||
482 | private function getChunkSize(): int |
||
487 | } |
||
488 | |||
489 | /** |
||
490 | * Set the GROUP_CONCAT max length for the session |
||
491 | */ |
||
492 | private function setGroupConcatMaxLen(): void |
||
495 | } |
||
496 | } |
||
497 |