app/Module/PatronymicLineage/Http/RequestHandlers/SurnamesList.php
<?php
/**
* webtrees-lib: MyArtJaub library for webtrees
*
* @package MyArtJaub\Webtrees
* @subpackage PatronymicLineage
* @author Jonathan Jaubart <dev@jaubart.com>
* @copyright Copyright (c) 2020-2022, Jonathan Jaubart
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3
*/
declare(strict_types=1);
namespace MyArtJaub\Webtrees\Module\PatronymicLineage\Http\RequestHandlers;
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Tree;
use Fisharebest\Webtrees\Validator;
use Fisharebest\Webtrees\Http\ViewResponseTrait;
use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException;
use Fisharebest\Webtrees\Module\IndividualListModule;
use Fisharebest\Webtrees\Services\ModuleService;
use MyArtJaub\Webtrees\Module\PatronymicLineage\PatronymicLineageModule;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\RequestHandlerInterface;
/**
* Request handler for displaying list of surnames
*/
class SurnamesList implements RequestHandlerInterface
{
use ViewResponseTrait;
private ?PatronymicLineageModule $module;
/**
* Constructor for SurnamesList Request Handler
*
* @param ModuleService $module_service
*/
public function __construct(ModuleService $module_service)
{
$this->module = $module_service->findByInterface(PatronymicLineageModule::class)->first();
}
/**
* {@inheritDoc}
* @see \Psr\Http\Server\RequestHandlerInterface::handle()
*/
public function handle(ServerRequestInterface $request): ResponseInterface
{
if ($this->module === null) {
throw new HttpNotFoundException(I18N::translate('The attached module could not be found.'));
}
$tree = Validator::attributes($request)->tree();
$initial = Validator::attributes($request)->string('alpha', '');
$initials_list = collect($this->module->surnameAlpha($tree, false, false, I18N::locale()))
->reject(function (int $count, string $initial): bool {
return $initial === '@' || $initial === ',';
});
$show_all = Validator::queryParams($request)->string('show_all', 'no');
if ($show_all === 'yes') {
$title = I18N::translate('Patronymic Lineages') . ' — ' . I18N::translate('All');
$surnames = $this->module->surnames($tree, '', '', false, false, I18N::locale());
} elseif (mb_strlen($initial) === 1) {
$title = I18N::translate('Patronymic Lineages') . ' — ' . $initial;
$surnames = $this->module->surnames($tree, '', $initial, false, false, I18N::locale());
} else {
$title = I18N::translate('Patronymic Lineages');
$surnames = [];
}
return $this->viewResponse($this->module->name() . '::surnames-page', [
'title' => $title,
'module' => $this->module,
'tree' => $tree,
'initials_list' => $initials_list,
'initial' => $initial,
'show_all' => $show_all,
'surnames' => $surnames
]);
}
}