Conditions | 62 |
Paths | > 20000 |
Total Lines | 346 |
Code Lines | 263 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | <?php |
||
112 | public function handle(ServerRequestInterface $request): ResponseInterface |
||
113 | { |
||
114 | $tree = Validator::attributes($request)->tree(); |
||
115 | $user = Validator::attributes($request)->user(); |
||
116 | |||
117 | Auth::checkComponentAccess($this, ModuleListInterface::class, $tree, $user); |
||
118 | |||
119 | // All individuals with this surname |
||
120 | $surname_param = Validator::queryParams($request)->string('surname', ''); |
||
121 | $surname = I18N::strtoupper(I18N::language()->normalize($surname_param)); |
||
122 | |||
123 | // All surnames beginning with this letter, where "@" is unknown and "," is none |
||
124 | $alpha = Validator::queryParams($request)->string('alpha', ''); |
||
125 | |||
126 | // All first names beginning with this letter where "@" is unknown |
||
127 | $falpha = Validator::queryParams($request)->string('falpha', ''); |
||
128 | |||
129 | // What type of list to display, if any |
||
130 | $show = Validator::queryParams($request)->string('show', 'surn'); |
||
131 | |||
132 | // All individuals |
||
133 | $show_all = Validator::queryParams($request)->string('show_all', ''); |
||
134 | |||
135 | // Include/exclude married names |
||
136 | $show_marnm = Validator::queryParams($request)->string('show_marnm', ''); |
||
137 | |||
138 | // Break long lists down by given name |
||
139 | $show_all_firstnames = Validator::queryParams($request)->string('show_all_firstnames', ''); |
||
140 | |||
141 | $params = [ |
||
142 | 'alpha' => $alpha, |
||
143 | 'falpha' => $falpha, |
||
144 | 'show' => $show, |
||
145 | 'show_all' => $show_all, |
||
146 | 'show_all_firstnames' => $show_all_firstnames, |
||
147 | 'show_marnm' => $show_marnm, |
||
148 | 'surname' => $surname, |
||
149 | ]; |
||
150 | |||
151 | if ($surname_param !== $surname) { |
||
152 | return Registry::responseFactory() |
||
153 | ->redirectUrl($this->listUrl($tree, $params), StatusCodeInterface::STATUS_MOVED_PERMANENTLY); |
||
154 | } |
||
155 | |||
156 | // Make sure parameters are consistent with each other. |
||
157 | if ($show_all_firstnames === 'yes') { |
||
158 | $falpha = ''; |
||
159 | } |
||
160 | |||
161 | if ($show_all === 'yes') { |
||
162 | $alpha = ''; |
||
163 | $surname = ''; |
||
164 | } |
||
165 | |||
166 | if ($surname !== '') { |
||
167 | $alpha = I18N::language()->initialLetter($surname); |
||
168 | } |
||
169 | |||
170 | $surname_data = $this->surnameData($tree, $show_marnm === 'yes', $this->showFamilies()); |
||
171 | $all_surns = $this->allSurns($surname_data); |
||
172 | $all_surnames = $this->allSurnames($surname_data); |
||
173 | $surname_initials = $this->surnameInitials($surname_data); |
||
174 | |||
175 | // We've requested a surname that doesn't currently exist. |
||
176 | if ($surname !== '' && !array_key_exists($surname, $all_surns)) { |
||
177 | $message = I18N::translate('There are no individuals with the surname “%s”', e($surname)); |
||
178 | FlashMessages::addMessage($message); |
||
179 | |||
180 | return Registry::responseFactory() |
||
181 | ->redirectUrl($this->listUrl($tree)); |
||
182 | } |
||
183 | |||
184 | // Make sure selections are consistent. |
||
185 | // i.e. can’t specify show_all and surname at the same time. |
||
186 | if ($show_all === 'yes') { |
||
187 | if ($show_all_firstnames === 'yes') { |
||
188 | $legend = I18N::translate('All'); |
||
189 | $params = ['tree' => $tree->name(), 'show_all' => 'yes', 'show_marnm' => $show_marnm]; |
||
190 | $show = 'indi'; |
||
191 | } elseif ($falpha !== '') { |
||
192 | $legend = I18N::translate('All') . ', ' . e($falpha) . '…'; |
||
193 | $params = ['tree' => $tree->name(), 'show_all' => 'yes', 'show_marnm' => $show_marnm]; |
||
194 | $show = 'indi'; |
||
195 | } else { |
||
196 | $legend = I18N::translate('All'); |
||
197 | $params = ['tree' => $tree->name(), 'show_all' => 'yes', 'show_marnm' => $show_marnm]; |
||
198 | } |
||
199 | } elseif ($surname !== '') { |
||
200 | $show_all = 'no'; |
||
201 | $show = 'indi'; // The surname list makes no sense with only one surname. |
||
202 | $params = ['tree' => $tree->name(), 'surname' => $surname, 'falpha' => $falpha, 'show_marnm' => $show_marnm]; |
||
203 | |||
204 | if ($surname === Individual::NOMEN_NESCIO) { |
||
205 | $legend = I18N::translateContext('Unknown surname', '…'); |
||
206 | } else { |
||
207 | // The surname parameter is a root/canonical form. Display the actual surnames found. |
||
208 | $variants = array_keys($all_surnames[$surname] ?? [$surname => $surname]); |
||
209 | usort($variants, I18N::comparator()); |
||
210 | $variants = array_map(static fn (string $x): string => $x === '' ? I18N::translate('No surname') : $x, $variants); |
||
211 | $legend = implode('/', $variants); |
||
212 | } |
||
213 | |||
214 | switch ($falpha) { |
||
215 | case '': |
||
216 | break; |
||
217 | case '@': |
||
218 | $legend .= ', ' . I18N::translateContext('Unknown given name', '…'); |
||
219 | break; |
||
220 | default: |
||
221 | $legend .= ', ' . e($falpha) . '…'; |
||
222 | break; |
||
223 | } |
||
224 | } elseif ($alpha === '@') { |
||
225 | $show_all = 'no'; |
||
226 | $legend = I18N::translateContext('Unknown surname', '…'); |
||
227 | $params = ['alpha' => $alpha, 'tree' => $tree->name(), 'show_marnm' => $show_marnm]; |
||
228 | $surname = Individual::NOMEN_NESCIO; |
||
229 | $show = 'indi'; // SURN list makes no sense here |
||
230 | } elseif ($alpha === ',') { |
||
231 | $show_all = 'no'; |
||
232 | $legend = I18N::translate('No surname'); |
||
233 | $params = ['alpha' => $alpha, 'tree' => $tree->name(), 'show_marnm' => $show_marnm]; |
||
234 | $show = 'indi'; // SURN list makes no sense here |
||
235 | } elseif ($alpha !== '') { |
||
236 | $show_all = 'no'; |
||
237 | $legend = e($alpha) . '…'; |
||
238 | $params = ['alpha' => $alpha, 'tree' => $tree->name(), 'show_marnm' => $show_marnm]; |
||
239 | } else { |
||
240 | $show_all = 'no'; |
||
241 | $legend = '…'; |
||
242 | $params = ['tree' => $tree->name(), 'show_marnm' => $show_marnm]; |
||
243 | $show = 'none'; // Don't show lists until something is chosen |
||
244 | } |
||
245 | $legend = '<bdi>' . $legend . '</bdi>'; |
||
246 | |||
247 | if ($this->showFamilies()) { |
||
248 | $title = I18N::translate('Families') . ' — ' . $legend; |
||
249 | } else { |
||
250 | $title = I18N::translate('Individuals') . ' — ' . $legend; |
||
251 | } |
||
252 | |||
253 | ob_start(); ?> |
||
254 | <div class="d-flex flex-column wt-page-options wt-page-options-individual-list d-print-none"> |
||
255 | <ul class="d-flex flex-wrap list-unstyled justify-content-center wt-initials-list wt-initials-list-surname"> |
||
256 | |||
257 | <?php foreach ($surname_initials as $letter => $count) : ?> |
||
258 | <li class="wt-initials-list-item d-flex"> |
||
259 | <?php if ($count > 0) : ?> |
||
260 | <a href="<?= e($this->listUrl($tree, ['alpha' => $letter, 'show_marnm' => $show_marnm, 'tree' => $tree->name()])) ?>" class="wt-initial px-1<?= $letter === $alpha ? ' active' : '' ?> '" title="<?= I18N::number($count) ?>"><?= $this->displaySurnameInitial((string) $letter) ?></a> |
||
261 | <?php else : ?> |
||
262 | <span class="wt-initial px-1 text-muted"><?= $this->displaySurnameInitial((string) $letter) ?></span> |
||
263 | |||
264 | <?php endif ?> |
||
265 | </li> |
||
266 | <?php endforeach ?> |
||
267 | |||
268 | <?php if (Session::has('initiated')) : ?> |
||
269 | <!-- Search spiders don't get the "show all" option as the other links give them everything. --> |
||
270 | <li class="wt-initials-list-item d-flex"> |
||
271 | <a class="wt-initial px-1<?= $show_all === 'yes' ? ' active' : '' ?>" href="<?= e($this->listUrl($tree, ['show_all' => 'yes'] + $params)) ?>"><?= I18N::translate('All') ?></a> |
||
272 | </li> |
||
273 | <?php endif ?> |
||
274 | </ul> |
||
275 | |||
276 | <!-- Search spiders don't get an option to show/hide the surname sublists, nor does it make sense on the all/unknown/surname views --> |
||
277 | <?php if ($show !== 'none' && Session::has('initiated')) : ?> |
||
278 | <?php if ($show_marnm === 'yes') : ?> |
||
279 | <p> |
||
280 | <a href="<?= e($this->listUrl($tree, ['show' => $show, 'show_marnm' => 'no'] + $params)) ?>"> |
||
281 | <?= I18N::translate('Exclude individuals with “%s” as a married name', $legend) ?> |
||
282 | </a> |
||
283 | </p> |
||
284 | <?php else : ?> |
||
285 | <p> |
||
286 | <a href="<?= e($this->listUrl($tree, ['show' => $show, 'show_marnm' => 'yes'] + $params)) ?>"> |
||
287 | <?= I18N::translate('Include individuals with “%s” as a married name', $legend) ?> |
||
288 | </a> |
||
289 | </p> |
||
290 | <?php endif ?> |
||
291 | |||
292 | <?php if ($alpha !== '@' && $alpha !== ',' && $surname === '') : ?> |
||
293 | <?php if ($show === 'surn') : ?> |
||
294 | <p> |
||
295 | <a href="<?= e($this->listUrl($tree, ['show' => 'indi'] + $params)) ?>"> |
||
296 | <?= I18N::translate('Show the list of individuals') ?> |
||
297 | </a> |
||
298 | </p> |
||
299 | <?php else : ?> |
||
300 | <p> |
||
301 | <a href="<?= e($this->listUrl($tree, ['show' => 'surn'] + $params)) ?>"> |
||
302 | <?= I18N::translate('Show the list of surnames') ?> |
||
303 | </a> |
||
304 | </p> |
||
305 | <?php endif ?> |
||
306 | <?php endif ?> |
||
307 | <?php endif ?> |
||
308 | </div> |
||
309 | |||
310 | <div class="wt-page-content"> |
||
311 | <?php if ($show === 'indi' || $show === 'surn') { |
||
312 | switch ($alpha) { |
||
313 | case '@': |
||
314 | $filter = static fn (string $x): bool => $x === Individual::NOMEN_NESCIO; |
||
315 | break; |
||
316 | case ',': |
||
317 | $filter = static fn (string $x): bool => $x === ''; |
||
318 | break; |
||
319 | case '': |
||
320 | if ($show_all === 'yes') { |
||
321 | $filter = static fn (string $x): bool => $x !== '' && $x !== Individual::NOMEN_NESCIO; |
||
322 | } else { |
||
323 | $filter = static fn (string $x): bool => $x === $surname; |
||
324 | } |
||
325 | break; |
||
326 | default: |
||
327 | if ($surname === '') { |
||
328 | $filter = static fn (string $x): bool => I18N::language()->initialLetter($x) === $alpha; |
||
329 | } else { |
||
330 | $filter = static fn (string $x): bool => $x === $surname; |
||
331 | } |
||
332 | break; |
||
333 | } |
||
334 | |||
335 | $all_surnames = array_filter($all_surnames, $filter, ARRAY_FILTER_USE_KEY); |
||
336 | |||
337 | if ($show === 'surn') { |
||
338 | // Show the surname list |
||
339 | switch ($tree->getPreference('SURNAME_LIST_STYLE')) { |
||
340 | case 'style1': |
||
341 | echo view('lists/surnames-column-list', [ |
||
342 | 'module' => $this, |
||
343 | 'params' => ['show' => 'indi', 'show_all' => null] + $params, |
||
344 | 'surnames' => $all_surnames, |
||
345 | 'totals' => true, |
||
346 | 'tree' => $tree, |
||
347 | ]); |
||
348 | break; |
||
349 | case 'style3': |
||
350 | echo view('lists/surnames-tag-cloud', [ |
||
351 | 'module' => $this, |
||
352 | 'params' => ['show' => 'indi', 'show_all' => null] + $params, |
||
353 | 'surnames' => $all_surnames, |
||
354 | 'totals' => true, |
||
355 | 'tree' => $tree, |
||
356 | ]); |
||
357 | break; |
||
358 | case 'style2': |
||
359 | default: |
||
360 | echo view('lists/surnames-table', [ |
||
361 | 'families' => $this->showFamilies(), |
||
362 | 'module' => $this, |
||
363 | 'order' => [[0, 'asc']], |
||
364 | 'params' => ['show' => 'indi', 'show_all' => null] + $params, |
||
365 | 'surnames' => $all_surnames, |
||
366 | 'tree' => $tree, |
||
367 | ]); |
||
368 | break; |
||
369 | } |
||
370 | } else { |
||
371 | // Show the list |
||
372 | $count = array_sum(array_map(static fn (array $x): int => array_sum($x), $all_surnames)); |
||
373 | |||
374 | // Don't sublist short lists. |
||
375 | $sublist_threshold = (int) $tree->getPreference('SUBLIST_TRIGGER_I'); |
||
376 | if ($sublist_threshold === 0 || $count < $sublist_threshold) { |
||
377 | $falpha = ''; |
||
378 | } else { |
||
379 | // Break long lists by initial letter of given name |
||
380 | $all_surnames = array_values(array_map(static fn ($x): array => array_keys($x), $all_surnames)); |
||
381 | $all_surnames = array_merge(...$all_surnames); |
||
382 | $givn_initials = $this->givenNameInitials($tree, $all_surnames, $show_marnm === 'yes', $this->showFamilies()); |
||
383 | |||
384 | if ($surname !== '' || $show_all === 'yes') { |
||
385 | echo '<h2 class="wt-page-title">', I18N::translate('Given names'), '</h2>'; |
||
386 | // Don't show the list until we have some filter criteria |
||
387 | $show = $falpha !== '' || $show_all_firstnames === 'yes' ? 'indi' : 'none'; |
||
388 | echo '<ul class="d-flex flex-wrap list-unstyled justify-content-center wt-initials-list wt-initials-list-given-names">'; |
||
389 | foreach ($givn_initials as $givn_initial => $given_count) { |
||
390 | echo '<li class="wt-initials-list-item d-flex">'; |
||
391 | if ($given_count > 0) { |
||
392 | if ($show === 'indi' && $givn_initial === $falpha && $show_all_firstnames !== 'yes') { |
||
393 | echo '<a class="wt-initial px-1 active" href="' . e($this->listUrl($tree, ['falpha' => $givn_initial] + $params)) . '" title="' . I18N::number($given_count) . '">' . $this->displayGivenNameInitial((string) $givn_initial) . '</a>'; |
||
394 | } else { |
||
395 | echo '<a class="wt-initial px-1" href="' . e($this->listUrl($tree, ['falpha' => $givn_initial] + $params)) . '" title="' . I18N::number($given_count) . '">' . $this->displayGivenNameInitial((string) $givn_initial) . '</a>'; |
||
396 | } |
||
397 | } else { |
||
398 | echo '<span class="wt-initial px-1 text-muted">' . $this->displayGivenNameInitial((string) $givn_initial) . '</span>'; |
||
399 | } |
||
400 | echo '</li>'; |
||
401 | } |
||
402 | // Search spiders don't get the "show all" option as the other links give them everything. |
||
403 | if (Session::has('initiated')) { |
||
404 | echo '<li class="wt-initials-list-item d-flex">'; |
||
405 | if ($show_all_firstnames === 'yes') { |
||
406 | echo '<span class="wt-initial px-1 active">' . I18N::translate('All') . '</span>'; |
||
407 | } else { |
||
408 | echo '<a class="wt-initial px-1" href="' . e($this->listUrl($tree, ['show_all_firstnames' => 'yes'] + $params)) . '" title="' . I18N::number($count) . '">' . I18N::translate('All') . '</a>'; |
||
409 | } |
||
410 | echo '</li>'; |
||
411 | } |
||
412 | echo '</ul>'; |
||
413 | } |
||
414 | } |
||
415 | if ($show === 'indi') { |
||
416 | if ($alpha === '@') { |
||
417 | $surns_to_show = ['@N.N.']; |
||
418 | } elseif ($alpha === ',') { |
||
419 | $surns_to_show = ['']; |
||
420 | } elseif ($surname !== '') { |
||
421 | $surns_to_show = $all_surns[$surname]; |
||
422 | } elseif ($alpha !== '') { |
||
423 | $tmp = array_filter( |
||
424 | $all_surns, |
||
425 | static fn (string $x): bool => I18N::language()->initialLetter($x) === $alpha, |
||
426 | ARRAY_FILTER_USE_KEY |
||
427 | ); |
||
428 | |||
429 | $surns_to_show = array_merge(...array_values($tmp)); |
||
430 | } else { |
||
431 | $surns_to_show = []; |
||
432 | } |
||
433 | |||
434 | if ($this->showFamilies()) { |
||
435 | echo view('lists/families-table', [ |
||
436 | 'families' => $this->families($tree, $surns_to_show, $falpha, $show_marnm === 'yes'), |
||
437 | 'tree' => $tree, |
||
438 | ]); |
||
439 | } else { |
||
440 | echo view('lists/individuals-table', [ |
||
441 | 'individuals' => $this->individuals($tree, $surns_to_show, $falpha, $show_marnm === 'yes', false), |
||
442 | 'sosa' => false, |
||
443 | 'tree' => $tree, |
||
444 | ]); |
||
445 | } |
||
446 | } |
||
447 | } |
||
448 | } ?> |
||
449 | </div> |
||
450 | <?php |
||
451 | |||
452 | $html = ob_get_clean(); |
||
453 | |||
454 | return $this->viewResponse('modules/individual-list/page', [ |
||
455 | 'content' => $html, |
||
456 | 'title' => $title, |
||
457 | 'tree' => $tree, |
||
458 | ]); |
||
760 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths