forked from Snck3rs/contao-leaflet-maps
164 lines
4.2 KiB
PHP
164 lines
4.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Leaflet maps for Contao CMS.
|
|
*
|
|
* @package contao-leaflet-maps
|
|
* @author David Molineus <david.molineus@netzmacht.de>
|
|
* @copyright 2014-2017 netzmacht David Molineus. All rights reserved.
|
|
* @license LGPL-3.0 https://github.com/netzmacht/contao-leaflet-maps/blob/master/LICENSE
|
|
* @filesource
|
|
*/
|
|
|
|
namespace Netzmacht\Contao\Leaflet\Mapper\Layer;
|
|
|
|
use Contao\Model;
|
|
use Contao\StringUtil;
|
|
use Netzmacht\Contao\Leaflet\Definition\Layer\OverpassLayer;
|
|
use Netzmacht\Contao\Leaflet\Mapper\DefinitionMapper;
|
|
use Netzmacht\Contao\Leaflet\Mapper\Request;
|
|
use Netzmacht\Contao\Leaflet\Model\IconModel;
|
|
use Netzmacht\Contao\Toolkit\Data\Model\RepositoryManager;
|
|
use Netzmacht\JavascriptBuilder\Type\Expression;
|
|
use Netzmacht\LeafletPHP\Definition;
|
|
|
|
/**
|
|
* Class OverpassLayerMapper.
|
|
*
|
|
* @package Netzmacht\Contao\Leaflet\Mapper\Layer
|
|
*/
|
|
class OverpassLayerMapper extends AbstractLayerMapper
|
|
{
|
|
/**
|
|
* The definition type.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $type = 'overpass';
|
|
|
|
/**
|
|
* The definition class.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $definitionClass = OverpassLayer::class;
|
|
|
|
/**
|
|
* Repository manager.
|
|
*
|
|
* @var RepositoryManager
|
|
*/
|
|
private $repositoryManager;
|
|
|
|
/**
|
|
* Construct.
|
|
*
|
|
* @param RepositoryManager $repositoryManager Repository manager.
|
|
*/
|
|
public function __construct(RepositoryManager $repositoryManager)
|
|
{
|
|
$this->repositoryManager = $repositoryManager;
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function initialize()
|
|
{
|
|
parent::initialize();
|
|
|
|
$this->optionsBuilder
|
|
->addOption('query', 'overpassQuery')
|
|
->addOption('minZoom')
|
|
->addOption('boundsMode')
|
|
->addOption('overpassEndpoint', 'endpoint');
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function build(
|
|
Definition $definition,
|
|
Model $model,
|
|
DefinitionMapper $mapper,
|
|
Request $request = null,
|
|
Definition $parent = null
|
|
) {
|
|
if (!$definition instanceof OverpassLayer) {
|
|
return;
|
|
}
|
|
|
|
$amenityIconsMap = $this->buildAmenityIconsMap($model);
|
|
$definition->setOption('amenityIcons', $amenityIconsMap);
|
|
|
|
if ($model->pointToLayer) {
|
|
$definition->setPointToLayer(new Expression($model->pointToLayer));
|
|
}
|
|
|
|
if ($model->onEachFeature) {
|
|
$definition->setOnEachFeature(new Expression($model->onEachFeature));
|
|
}
|
|
|
|
if ($model->overpassPopup) {
|
|
$definition->setOption('overpassPopup', new Expression($model->overpassPopup));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Build the amenity icons map.
|
|
*
|
|
* @param Model $model Definition model.
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function buildAmenityIconsMap(Model $model)
|
|
{
|
|
$amenityIconsMap = $this->filterAmenityIconsConfig($model->amenityIcons);
|
|
|
|
if ($amenityIconsMap) {
|
|
$repository = $this->repositoryManager->getRepository(IconModel::class);
|
|
$collection = $repository->findMultipleByIds(array_unique($amenityIconsMap));
|
|
$icons = [];
|
|
|
|
if ($collection) {
|
|
foreach ($collection as $iconModel) {
|
|
$icons[$iconModel->id] = $iconModel->alias ?: $iconModel->id;
|
|
}
|
|
|
|
foreach ($amenityIconsMap as $amenity => $iconId) {
|
|
if (isset($icons[$iconId])) {
|
|
$amenityIconsMap[$amenity] = $icons[$iconId];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return $amenityIconsMap;
|
|
}
|
|
|
|
/**
|
|
* Filter the amenity icons config.
|
|
*
|
|
* @param mixed $amenityIconsConfig Raw config from the db.
|
|
*
|
|
* @return array
|
|
*/
|
|
private function filterAmenityIconsConfig($amenityIconsConfig)
|
|
{
|
|
$amenityIconsConfig = StringUtil::deserialize($amenityIconsConfig, true);
|
|
$amenityIconsMap = [];
|
|
|
|
foreach ($amenityIconsConfig as $config) {
|
|
if (!$config['amenity'] || !$config['icon']) {
|
|
continue;
|
|
}
|
|
|
|
$amenityIconsMap[$config['amenity']] = $config['icon'];
|
|
}
|
|
|
|
return $amenityIconsMap;
|
|
}
|
|
}
|