1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2021 webtrees development team 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <https://www.gnu.org/licenses/>. 16 */ 17 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees\Http\RequestHandlers; 21 22use Fisharebest\Webtrees\Module\ModuleMapAutocompleteInterface; 23use Fisharebest\Webtrees\Place; 24use Fisharebest\Webtrees\Services\ModuleService; 25use Fisharebest\Webtrees\Services\SearchService; 26use Fisharebest\Webtrees\Tree; 27use Illuminate\Support\Collection; 28use Psr\Http\Message\ServerRequestInterface; 29 30use function assert; 31 32/** 33 * Autocomplete handler for places 34 */ 35class AutoCompletePlace extends AbstractAutocompleteHandler 36{ 37 private ModuleService $module_service; 38 39 /** 40 * @param SearchService $search_service 41 * @param ModuleService $module_service 42 */ 43 public function __construct(SearchService $search_service, ModuleService $module_service) 44 { 45 parent::__construct($search_service); 46 47 $this->module_service = $module_service; 48 } 49 50 /** 51 * @param ServerRequestInterface $request 52 * 53 * @return Collection<string> 54 */ 55 protected function search(ServerRequestInterface $request): Collection 56 { 57 $tree = $request->getAttribute('tree'); 58 assert($tree instanceof Tree); 59 60 $query = $request->getQueryParams()['query'] ?? ''; 61 62 $data = $this->search_service 63 ->searchPlaces($tree, $query, 0, static::LIMIT) 64 ->map(static function (Place $place): string { 65 return $place->gedcomName(); 66 }); 67 68 // No place found? Use external gazetteers. 69 foreach ($this->module_service->findByInterface(ModuleMapAutocompleteInterface::class) as $module) { 70 if ($data->isEmpty()) { 71 $data = $data->concat($module->searchPlaceNames($query))->sort(); 72 } 73 } 74 75 return $data; 76 } 77} 78