geolocation-8.x-3.x-dev/modules/geolocation_search_api/src/Plugin/views/filter/GeolocationSearchApiFilterProximity.php
modules/geolocation_search_api/src/Plugin/views/filter/GeolocationSearchApiFilterProximity.php
<?php
namespace Drupal\geolocation_search_api\Plugin\views\filter;
use Drupal\views\Attribute\ViewsFilter;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\geolocation\LocationInputManager;
use Drupal\geolocation\ProximityTrait;
use Drupal\views\Plugin\views\filter\NumericFilter;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Filter handler for search keywords.
*
* @ingroup views_filter_handlers
*/
#[ViewsFilter(id: 'geolocation_search_api_filter_proximity')]
class GeolocationSearchApiFilterProximity extends NumericFilter implements ContainerFactoryPluginInterface {
use ProximityTrait;
/**
* {@inheritdoc}
*/
public function __construct(
array $configuration,
$plugin_id,
$plugin_definition,
protected LocationInputManager $locationInputManager,
) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition): GeolocationSearchApiFilterProximity {
return new static(
$configuration,
$plugin_id,
$plugin_definition,
$container->get('plugin.manager.geolocation.locationinput')
);
}
/**
* {@inheritdoc}
*/
protected function defineOptions(): array {
// Add source, lat, lng and filter.
$options = parent::defineOptions();
$options['location_input'] = ['default' => []];
$options['unit'] = ['default' => 'km'];
$options['value']['contains']['center'] = ['default' => []];
return $options;
}
/**
* {@inheritdoc}
*
* @param array $form
* Form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* Form state.
*/
public function buildOptionsForm(&$form, FormStateInterface $form_state): void {
parent::buildOptionsForm($form, $form_state);
$form['unit'] = [
'#title' => $this->t('Distance unit'),
'#description' => $this->t('Unit to use for conversion of input value to proximity distance.'),
'#type' => 'select',
'#default_value' => $this->options['unit'],
'#weight' => 6,
'#options' => [
'km' => $this->t('Kilometers'),
'mi' => $this->t('Miles'),
'nm' => $this->t('Nautical Miles'),
],
];
$input = $form_state->getUserInput();
if (!empty($input['options']['location_input'])) {
$location_options = $input['options']['location_input'];
}
else {
$location_options = $this->options['location_input'];
}
$form['location_input'] = $this->locationInputManager->getOptionsForm($location_options, ['views_filter' => $this], $this->t('<label class="form-item__label">Proximity - Center source</label>'));
$form['location_input']['#weight'] = 20;
}
/**
* {@inheritdoc}
*
* @param array $form
* Form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* Form state.
*/
public function groupForm(&$form, FormStateInterface $form_state): void {
parent::groupForm($form, $form_state);
$center_form = $this->locationInputManager->getForm($this->options['location_input'], ['views_filter' => $this], empty($this->value['center']) ? NULL : $this->value['center']);
if (!empty($center_form)) {
$identifier = $this->options['expose']['identifier'];
$form[$identifier . '_center'] = $center_form;
$form[$identifier . '_center']['#tree'] = TRUE;
}
}
/**
* {@inheritdoc}
*
* @param array $form
* Form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* Form state.
*/
public function valueForm(&$form, FormStateInterface $form_state): void {
parent::valueForm($form, $form_state);
if (!isset($form['value']['value'])) {
$form['value'] = array_replace($form['value'], [
'#type' => 'number',
'#min' => 0,
'#step' => 0.1,
'#title' => $this->t('Distance'),
'#description' => $this->t('Distance in %unit', ['%unit' => $this->options['unit'] === 'km' ? $this->t('Kilometers') : $this->t('Miles')]),
'#default_value' => $form['value']['#default_value'],
]);
}
else {
$form['value']['value'] = array_replace($form['value']['value'], [
'#type' => 'number',
'#min' => 0,
'#step' => 0.1,
'#title' => $this->t('Distance'),
'#description' => $this->t('Distance in %unit', ['%unit' => $this->options['unit'] === 'km' ? $this->t('Kilometers') : $this->t('Miles')]),
'#default_value' => $form['value']['value']['#default_value'],
]);
}
$identifier = $this->options['expose']['identifier'];
$form[$identifier . '_center'] = $this->locationInputManager->getForm($this->options['location_input'], ['views_filter' => $this], empty($this->value['center']) ? NULL : $this->value['center'], $this->t('Center Coordinates'));
$form[$identifier . '_center']['#tree'] = TRUE;
}
/**
* {@inheritdoc}
*
* @param array $form
* Form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* Form state.
*/
protected function valueSubmit($form, FormStateInterface $form_state): void {
$distance = (float) $form_state->getValue(['options', 'value', 'value']);
$form_state->setValue(['options', 'value', 'value'], $distance);
$identifier = $this->options['expose']['identifier'];
$form_state->setValue(
['options', $identifier . '_center'],
$form_state->getValue(['options', $identifier . '_center'], [])
);
parent::valueSubmit($form, $form_state);
}
/**
* {@inheritdoc}
*
* @param array $input
* Input.
* @param bool $status
* Status.
*/
public function storeExposedInput($input, $status): void {
parent::storeExposedInput($input, $status);
$identifier = $this->options['expose']['identifier'];
if (empty($input[$identifier . '_center'])) {
return;
}
$request = $this->view->getRequest();
$session = $request->hasSession() ? $request->getSession() : NULL;
$views_session = $session?->get('views', []) ?? [];
$display_id = ($this->view->display_handler->isDefaulted('filters')) ? 'default' : $this->view->current_display;
if (empty($views_session[$this->view->storage->id()][$display_id])) {
return;
}
$views_session[$this->view->storage->id()][$display_id]['center'] = $input[$identifier . '_center'];
$session?->set('views', $views_session);
}
/**
* {@inheritdoc}
*/
public function acceptExposedInput($input): bool {
parent::acceptExposedInput($input);
$this->value['center'] = [];
$identifier = $this->options['expose']['identifier'];
if (!empty($input[$identifier . '_center'])) {
$this->value['center'] = $input[$identifier . '_center'];
}
return TRUE;
}
/**
* {@inheritdoc}
*/
public function query(): void {
$this->value['value'] = self::convertDistance($this->value['value'], $this->options['unit']);
$center = $this->locationInputManager->getCoordinates((array) $this->value['center'], $this->options['location_input'], ['views_filter' => $this]);
if (
empty($center)
|| !is_numeric($center['lat'])
|| !is_numeric($center['lng'])
|| empty($this->value['value'])
) {
return;
}
/** @var \Drupal\search_api\Query\Query $query */
$query = $this->query;
$location_options = (array) $query->getOption('search_api_location', []);
$location_options[] = [
'field' => $this->realField,
'lat' => $center['lat'],
'lon' => $center['lng'],
'radius' => $this->value['value'],
];
$query->setOption('search_api_location', $location_options);
}
}
