. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Exception; use Fisharebest\Webtrees\Fact; use Fisharebest\Webtrees\Family; use Fisharebest\Webtrees\GedcomTag; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Individual; use Fisharebest\Webtrees\Location; use Fisharebest\Webtrees\Site; use Illuminate\Support\Collection; use stdClass; /** * Class PlacesMapModule */ class PlacesModule extends AbstractModule implements ModuleTabInterface { use ModuleTabTrait; protected const ICONS = [ 'BIRT' => ['color' => 'lightcoral', 'name' => 'baby-carriage'], 'BAPM' => ['color' => 'lightcoral', 'name' => 'water'], 'BARM' => ['color' => 'lightcoral', 'name' => 'star-of-david'], 'BASM' => ['color' => 'lightcoral', 'name' => 'star-of-david'], 'CHR' => ['color' => 'lightcoral', 'name' => 'water'], 'CHRA' => ['color' => 'lightcoral', 'name' => 'water'], 'MARR' => ['color' => 'green', 'name' => 'infinity'], 'DEAT' => ['color' => 'black', 'name' => 'times'], 'BURI' => ['color' => 'sienna', 'name' => 'times'], 'CREM' => ['color' => 'black', 'name' => 'times'], 'CENS' => ['color' => 'mediumblue', 'name' => 'list'], 'RESI' => ['color' => 'mediumblue', 'name' => 'home'], 'OCCU' => ['color' => 'mediumblue', 'name' => 'industry'], 'GRAD' => ['color' => 'plum', 'name' => 'university'], 'EDUC' => ['color' => 'plum', 'name' => 'university'], ]; protected const DEFAULT_ICON = ['color' => 'gold', 'name' => 'bullseye ']; /** * How should this module be identified in the control panel, etc.? * * @return string */ public function title(): string { /* I18N: Name of a module */ return I18N::translate('Places'); } /** * A sentence describing what this module does. * * @return string */ public function description(): string { /* I18N: Description of the “OSM” module */ return I18N::translate('Show the location of events on a map.'); } /** * The default position for this tab. It can be changed in the control panel. * * @return int */ public function defaultTabOrder(): int { return 8; } /** {@inheritdoc} */ public function hasTabContent(Individual $individual): bool { return Site::getPreference('map-provider') !== ''; } /** {@inheritdoc} */ public function isGrayedOut(Individual $individual): bool { return false; } /** {@inheritdoc} */ public function canLoadAjax(): bool { return true; } /** {@inheritdoc} */ public function getTabContent(Individual $individual): string { return view('modules/places/tab', [ 'data' => $this->getMapData($individual), ]); } /** * @param Individual $indi * * @return stdClass */ private function getMapData(Individual $indi): stdClass { $facts = $this->getPersonalFacts($indi); $geojson = [ 'type' => 'FeatureCollection', 'features' => [], ]; foreach ($facts as $id => $fact) { $location = new Location($fact->place()->gedcomName()); // Use the co-ordinates from the fact (if they exist). $latitude = $fact->latitude(); $longitude = $fact->longitude(); // Use the co-ordinates from the location otherwise. if ($latitude === 0.0 && $longitude === 0.0) { $latitude = $location->latitude(); $longitude = $location->longitude(); } $icon = static::ICONS[$fact->getTag()] ?? static::DEFAULT_ICON; if ($latitude !== 0.0 || $longitude !== 0.0) { $geojson['features'][] = [ 'type' => 'Feature', 'id' => $id, 'valid' => true, 'geometry' => [ 'type' => 'Point', 'coordinates' => [$longitude, $latitude], ], 'properties' => [ 'polyline' => null, 'icon' => $icon, 'tooltip' => strip_tags($fact->place()->fullName()), 'summary' => view('modules/places/event-sidebar', $this->summaryData($indi, $fact)), 'zoom' => $location->zoom(), ], ]; } } return (object) $geojson; } /** * @param Individual $individual * * @return Collection * @throws Exception */ private function getPersonalFacts(Individual $individual): Collection { $facts = $individual->facts(); foreach ($individual->spouseFamilies() as $family) { $facts = $facts->merge($family->facts()); // Add birth of children from this family to the facts array foreach ($family->children() as $child) { $childsBirth = $child->facts(['BIRT'])->first(); if ($childsBirth instanceof Fact && $childsBirth->place()->gedcomName() !== '') { $facts->push($childsBirth); } } } $facts = Fact::sortFacts($facts); return $facts->filter(static function (Fact $item): bool { return $item->place()->gedcomName() !== ''; }); } /** * @param Individual $individual * @param Fact $fact * * @return mixed[] */ private function summaryData(Individual $individual, Fact $fact): array { $record = $fact->record(); $name = ''; $url = ''; $tag = $fact->label(); if ($record instanceof Family) { // Marriage $spouse = $record->spouse($individual); if ($spouse instanceof Individual) { $url = $spouse->url(); $name = $spouse->fullName(); } } elseif ($record !== $individual) { // Birth of a child $url = $record->url(); $name = $record->fullName(); $tag = GedcomTag::getLabel('_BIRT_CHIL', $record); } return [ 'tag' => $tag, 'url' => $url, 'name' => $name, 'value' => $fact->value(), 'date' => $fact->date()->display(true), 'place' => $fact->place(), 'addtag' => false, ]; } }