forked from jreinke/magento-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGeoDistance.php
executable file
·106 lines (97 loc) · 2.01 KB
/
GeoDistance.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
/**
* Geo distance filter
*
* @category Xodoa
* @package Elastica
* @author Nicolas Ruflin <spam@ruflin.com>
* @link http://www.elasticsearch.org/guide/reference/query-dsl/geo-distance-filter.html
*/
class Elastica_Filter_GeoDistance extends Elastica_Filter_Abstract {
/**
* Key
*
* @var string Key
*/
protected $_key = '';
/**
* Distance
*
* @var string Distance
*/
protected $_distance = '';
/**
* Latitude
*
* @var string Latitude
*/
protected $_latitude = '';
/**
* Longitude
*
* @var string Longitude
*/
protected $_longitude = '';
/**
* Create GeoDistance object
*
* @param string $key Key
* @param string $latitude Latitude
* @param string $longitude Longitude
* @param string $distance Distance
*/
public function __construct($key, $latitude, $longitude, $distance) {
$this->_key = $key;
$this->setLatitude($latitude);
$this->setLongitude($longitude);
$this->setDistance($distance);
}
/**
* Sets the distance to search for
*
* @param string $distance Distance
* @return Elastica_Filter_GeoDistance Current object
*/
public function setDistance($distance) {
// TODO: validate distance?
$this->_distance = $distance;
return $this;
}
/**
* Sets the laititude
*
* @param string $latitude Latitude
* @return Elastica_Filter_GeoDistance Current object
*/
public function setLatitude($latitude) {
$this->_latitude = $latitude;
return $this;
}
/**
* Sets the longitude
*
* @param string $longitude Longitude
* @return Elastica_Filter_GeoDistance Current object
*/
public function setLongitude($longitude) {
$this->_longitude = $longitude;
return $this;
}
/**
* Convers filter o array
*
* @see Elastica_Filter_Abstract::toArray()
* @return Elastica_Filter_GeoDistance Current object
*/
public function toArray() {
return array(
'geo_distance' => array(
'distance' => $this->_distance,
$this->_key => array(
'lat' => $this->_latitude,
'lon' => $this->_longitude
),
),
);
}
}