xref: /webtrees/app/Module/PlacesModule.php (revision 9b34404b735f1331e9557b4b8f8adedd84a8bc59)
11f374598SGreg Roach<?php
21f374598SGreg Roach/**
31f374598SGreg Roach * webtrees: online genealogy
41f374598SGreg Roach * Copyright (C) 2018 webtrees development team
51f374598SGreg Roach * This program is free software: you can redistribute it and/or modify
61f374598SGreg Roach * it under the terms of the GNU General Public License as published by
71f374598SGreg Roach * the Free Software Foundation, either version 3 of the License, or
81f374598SGreg Roach * (at your option) any later version.
91f374598SGreg Roach * This program is distributed in the hope that it will be useful,
101f374598SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
111f374598SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
121f374598SGreg Roach * GNU General Public License for more details.
131f374598SGreg Roach * You should have received a copy of the GNU General Public License
141f374598SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
151f374598SGreg Roach */
161f374598SGreg Roachdeclare(strict_types=1);
171f374598SGreg Roach
181f374598SGreg Roachnamespace Fisharebest\Webtrees\Module;
191f374598SGreg Roach
201f374598SGreg Roachuse Exception;
211f374598SGreg Roachuse Fisharebest\Webtrees\Auth;
221f374598SGreg Roachuse Fisharebest\Webtrees\Database;
231f374598SGreg Roachuse Fisharebest\Webtrees\Fact;
241f374598SGreg Roachuse Fisharebest\Webtrees\FactLocation;
251f374598SGreg Roachuse Fisharebest\Webtrees\Functions\Functions;
261f374598SGreg Roachuse Fisharebest\Webtrees\I18N;
271f374598SGreg Roachuse Fisharebest\Webtrees\Individual;
2805ff554cSGreg Roachuse Fisharebest\Webtrees\View;
2905ff554cSGreg Roachuse stdClass;
301f374598SGreg Roachuse Symfony\Component\HttpFoundation\JsonResponse;
311f374598SGreg Roachuse Symfony\Component\HttpFoundation\Request;
321f374598SGreg Roach
331f374598SGreg Roach/**
341f374598SGreg Roach * Class PlacesMapModule
351f374598SGreg Roach */
361f374598SGreg Roachclass PlacesModule extends AbstractModule implements ModuleTabInterface
371f374598SGreg Roach{
381f374598SGreg Roach    private static $map_providers  = null;
391f374598SGreg Roach    private static $map_selections = null;
401f374598SGreg Roach
411f374598SGreg Roach    /** {@inheritdoc} */
428f53f488SRico Sonntag    public function getTitle(): string
431f374598SGreg Roach    {
44bbb76c12SGreg Roach        /* I18N: Name of a module */
45bbb76c12SGreg Roach        return I18N::translate('Places');
461f374598SGreg Roach    }
471f374598SGreg Roach
481f374598SGreg Roach    /** {@inheritdoc} */
498f53f488SRico Sonntag    public function getDescription(): string
501f374598SGreg Roach    {
51bbb76c12SGreg Roach        /* I18N: Description of the “OSM” module */
52bbb76c12SGreg Roach        return I18N::translate('Show the location of events on a map.');
531f374598SGreg Roach    }
541f374598SGreg Roach
551f374598SGreg Roach    /** {@inheritdoc} */
568f53f488SRico Sonntag    public function defaultAccessLevel(): int
571f374598SGreg Roach    {
581f374598SGreg Roach        return Auth::PRIV_PRIVATE;
591f374598SGreg Roach    }
601f374598SGreg Roach
611f374598SGreg Roach    /** {@inheritdoc} */
628f53f488SRico Sonntag    public function defaultTabOrder(): int
631f374598SGreg Roach    {
641f374598SGreg Roach        return 4;
651f374598SGreg Roach    }
661f374598SGreg Roach
671f374598SGreg Roach    /** {@inheritdoc} */
688f53f488SRico Sonntag    public function hasTabContent(Individual $individual): bool
691f374598SGreg Roach    {
701f374598SGreg Roach        return true;
711f374598SGreg Roach    }
721f374598SGreg Roach
731f374598SGreg Roach    /** {@inheritdoc} */
748f53f488SRico Sonntag    public function isGrayedOut(Individual $individual): bool
751f374598SGreg Roach    {
761f374598SGreg Roach        return false;
771f374598SGreg Roach    }
781f374598SGreg Roach
791f374598SGreg Roach    /** {@inheritdoc} */
808f53f488SRico Sonntag    public function canLoadAjax(): bool
811f374598SGreg Roach    {
821f374598SGreg Roach        return true;
831f374598SGreg Roach    }
841f374598SGreg Roach
851f374598SGreg Roach    /** {@inheritdoc} */
86*9b34404bSGreg Roach    public function getTabContent(Individual $individual): string
871f374598SGreg Roach    {
88aacdcb0dSGreg Roach        return view('modules/places/tab', [
8905ff554cSGreg Roach            'data' => $this->getMapData($individual),
90aacdcb0dSGreg Roach        ]);
911f374598SGreg Roach    }
921f374598SGreg Roach
931f374598SGreg Roach    /**
941f374598SGreg Roach     * @param Request $request
951f374598SGreg Roach     *
9605ff554cSGreg Roach     * @return stdClass
971f374598SGreg Roach     */
9805ff554cSGreg Roach    private function getMapData(Individual $indi): stdClass
991f374598SGreg Roach    {
10005ff554cSGreg Roach        $facts = $this->getPersonalFacts($indi);
1011f374598SGreg Roach
1021f374598SGreg Roach        $geojson = [
1031f374598SGreg Roach            'type'     => 'FeatureCollection',
1041f374598SGreg Roach            'features' => [],
1051f374598SGreg Roach        ];
10605ff554cSGreg Roach
1071f374598SGreg Roach        foreach ($facts as $id => $fact) {
1081f374598SGreg Roach            $event = new FactLocation($fact, $indi);
1091f374598SGreg Roach            $icon  = $event->getIconDetails();
1101f374598SGreg Roach            if ($event->knownLatLon()) {
1111f374598SGreg Roach                $geojson['features'][] = [
1121f374598SGreg Roach                    'type'       => 'Feature',
1131f374598SGreg Roach                    'id'         => $id,
1141f374598SGreg Roach                    'valid'      => true,
1151f374598SGreg Roach                    'geometry'   => [
1161f374598SGreg Roach                        'type'        => 'Point',
1171f374598SGreg Roach                        'coordinates' => $event->getGeoJsonCoords(),
1181f374598SGreg Roach                    ],
1191f374598SGreg Roach                    'properties' => [
12005ff554cSGreg Roach                        'polyline' => null,
1211f374598SGreg Roach                        'icon'     => $icon,
1221f374598SGreg Roach                        'tooltip'  => $event->toolTip(),
1231f374598SGreg Roach                        'summary'  => view(
1240a661b58SGreg Roach                            'modules/places/event-sidebar',
1251f374598SGreg Roach                            $event->shortSummary('individual', $id)
1261f374598SGreg Roach                        ),
1271f374598SGreg Roach                        'zoom'     => (int) $event->getZoom(),
1281f374598SGreg Roach                    ],
1291f374598SGreg Roach                ];
1301f374598SGreg Roach            }
1311f374598SGreg Roach        }
1321f374598SGreg Roach
13305ff554cSGreg Roach        return (object) $geojson;
1341f374598SGreg Roach    }
1351f374598SGreg Roach
1361f374598SGreg Roach    /**
13705ff554cSGreg Roach     * @param Individual $individual
1381f374598SGreg Roach     *
1391f374598SGreg Roach     * @return array
1401f374598SGreg Roach     * @throws Exception
1411f374598SGreg Roach     */
1428f53f488SRico Sonntag    private function getPersonalFacts(Individual $individual): array
1431f374598SGreg Roach    {
1441f374598SGreg Roach        $facts      = $individual->getFacts();
1451f374598SGreg Roach        foreach ($individual->getSpouseFamilies() as $family) {
1461f374598SGreg Roach            $facts = array_merge($facts, $family->getFacts());
1471f374598SGreg Roach            // Add birth of children from this family to the facts array
1481f374598SGreg Roach            foreach ($family->getChildren() as $child) {
1491f374598SGreg Roach                $childsBirth = $child->getFirstFact('BIRT');
1501f374598SGreg Roach                if ($childsBirth && !$childsBirth->getPlace()->isEmpty()) {
1511f374598SGreg Roach                    $facts[] = $childsBirth;
1521f374598SGreg Roach                }
1531f374598SGreg Roach            }
1541f374598SGreg Roach        }
1551f374598SGreg Roach
1561f374598SGreg Roach        Functions::sortFacts($facts);
1571f374598SGreg Roach
1581f374598SGreg Roach        $useable_facts = array_filter(
1591f374598SGreg Roach            $facts,
160492c7072SGreg Roach            function (Fact $item): bool {
1611f374598SGreg Roach                return !$item->getPlace()->isEmpty();
1621f374598SGreg Roach            }
1631f374598SGreg Roach        );
1641f374598SGreg Roach
1651f374598SGreg Roach        return array_values($useable_facts);
1661f374598SGreg Roach    }
1671f374598SGreg Roach
1681f374598SGreg Roach    /**
1691f374598SGreg Roach     * @param Request $request
1701f374598SGreg Roach     *
1711f374598SGreg Roach     * @return JsonResponse
1721f374598SGreg Roach     */
1731f374598SGreg Roach    public function getProviderStylesAction(Request $request): JsonResponse
1741f374598SGreg Roach    {
1751f374598SGreg Roach        $styles = $this->getMapProviderData($request);
1761f374598SGreg Roach
1771f374598SGreg Roach        return new JsonResponse($styles);
1781f374598SGreg Roach    }
1791f374598SGreg Roach
1801f374598SGreg Roach    /**
1811f374598SGreg Roach     * @param Request $request
1821f374598SGreg Roach     *
1831f374598SGreg Roach     * @return array|null
1841f374598SGreg Roach     */
1851f374598SGreg Roach    private function getMapProviderData(Request $request)
1861f374598SGreg Roach    {
1871f374598SGreg Roach        if (self::$map_providers === null) {
1880a661b58SGreg Roach            $providersFile        = WT_ROOT . WT_MODULES_DIR . 'openstreetmap/providers/providers.xml';
1891f374598SGreg Roach            self::$map_selections = [
1901f374598SGreg Roach                'provider' => $this->getPreference('provider', 'openstreetmap'),
1911f374598SGreg Roach                'style'    => $this->getPreference('provider_style', 'mapnik'),
1921f374598SGreg Roach            ];
1931f374598SGreg Roach
1941f374598SGreg Roach            try {
1951f374598SGreg Roach                $xml = simplexml_load_file($providersFile);
1961f374598SGreg Roach                // need to convert xml structure into arrays & strings
1971f374598SGreg Roach                foreach ($xml as $provider) {
1981f374598SGreg Roach                    $style_keys = array_map(
1991f374598SGreg Roach                        function ($item) {
2001f374598SGreg Roach                            return preg_replace('/[^a-z\d]/i', '', strtolower($item));
2011f374598SGreg Roach                        },
2021f374598SGreg Roach                        (array) $provider->styles
2031f374598SGreg Roach                    );
2041f374598SGreg Roach
2051f374598SGreg Roach                    $key = preg_replace('/[^a-z\d]/i', '', strtolower((string) $provider->name));
2061f374598SGreg Roach
2071f374598SGreg Roach                    self::$map_providers[$key] = [
2081f374598SGreg Roach                        'name'   => (string) $provider->name,
2091f374598SGreg Roach                        'styles' => array_combine($style_keys, (array) $provider->styles),
2101f374598SGreg Roach                    ];
2111f374598SGreg Roach                }
2121f374598SGreg Roach            } catch (Exception $ex) {
2131f374598SGreg Roach                // Default provider is OpenStreetMap
2141f374598SGreg Roach                self::$map_selections = [
2151f374598SGreg Roach                    'provider' => 'openstreetmap',
2161f374598SGreg Roach                    'style'    => 'mapnik',
2171f374598SGreg Roach                ];
2181f374598SGreg Roach                self::$map_providers  = [
2191f374598SGreg Roach                    'openstreetmap' => [
2201f374598SGreg Roach                        'name'   => 'OpenStreetMap',
2211f374598SGreg Roach                        'styles' => ['mapnik' => 'Mapnik'],
2221f374598SGreg Roach                    ],
2231f374598SGreg Roach                ];
2241f374598SGreg Roach            };
2251f374598SGreg Roach        }
2261f374598SGreg Roach
2271f374598SGreg Roach        //Ugly!!!
2281f374598SGreg Roach        switch ($request->get('action')) {
2291f374598SGreg Roach            case 'BaseData':
2301f374598SGreg Roach                $varName = (self::$map_selections['style'] === '') ? '' : self::$map_providers[self::$map_selections['provider']]['styles'][self::$map_selections['style']];
2311f374598SGreg Roach                $payload = [
2321f374598SGreg Roach                    'selectedProvIndex' => self::$map_selections['provider'],
2331f374598SGreg Roach                    'selectedProvName'  => self::$map_providers[self::$map_selections['provider']]['name'],
2341f374598SGreg Roach                    'selectedStyleName' => $varName,
2351f374598SGreg Roach                ];
2361f374598SGreg Roach                break;
2371f374598SGreg Roach            case 'ProviderStyles':
2381f374598SGreg Roach                $provider = $request->get('provider', 'openstreetmap');
2391f374598SGreg Roach                $payload  = self::$map_providers[$provider]['styles'];
2401f374598SGreg Roach                break;
2411f374598SGreg Roach            case 'AdminConfig':
2421f374598SGreg Roach                $providers = [];
2431f374598SGreg Roach                foreach (self::$map_providers as $key => $provider) {
2441f374598SGreg Roach                    $providers[$key] = $provider['name'];
2451f374598SGreg Roach                }
2461f374598SGreg Roach                $payload = [
2471f374598SGreg Roach                    'providers'     => $providers,
2481f374598SGreg Roach                    'selectedProv'  => self::$map_selections['provider'],
2491f374598SGreg Roach                    'styles'        => self::$map_providers[self::$map_selections['provider']]['styles'],
2501f374598SGreg Roach                    'selectedStyle' => self::$map_selections['style'],
2511f374598SGreg Roach                ];
2521f374598SGreg Roach                break;
2531f374598SGreg Roach            default:
2541f374598SGreg Roach                $payload = null;
2551f374598SGreg Roach        }
2561f374598SGreg Roach
2571f374598SGreg Roach        return $payload;
2581f374598SGreg Roach    }
2591f374598SGreg Roach}
260