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