module Solr.Query.Geofilt
(
GeofiltQuery
, Latitude
, Longitude
, d
, pt
, sfield
) where
import Solr.Prelude
import Builder
import Solr.Query.Internal
type Latitude = Double
type Longitude = Double
newtype GeofiltQuery
= Q { unQ :: Builder }
instance Default GeofiltQuery where
def :: GeofiltQuery
def = Q mempty
instance Query GeofiltQuery where
data LocalParams GeofiltQuery = GeofiltParams
{ _d :: Maybe Double
, _pt :: Maybe (Latitude, Longitude)
, _sfield :: Maybe Text
}
compileLocalParams :: LocalParams GeofiltQuery -> [Builder]
compileLocalParams GeofiltParams{_d, _pt, _sfield} =
"geofilt" : catMaybes
[ compileD <$> _d
, compilePt <$> _pt
, compileSfield <$> _sfield
]
where
compileD :: Double -> Builder
compileD n = "d=" <> bshow n
compilePt :: (Latitude, Longitude) -> Builder
compilePt (n, m) = "pt=" <> bshow n <> char ',' <> bshow m
compileSfield :: Text -> Builder
compileSfield s = "sfield=" <> thaw' s
instance Default (LocalParams GeofiltQuery) where
def :: LocalParams GeofiltQuery
def = GeofiltParams Nothing Nothing Nothing
d :: Double -> LocalParams GeofiltQuery -> LocalParams GeofiltQuery
d x s = s { _d = Just x }
pt
:: Latitude -> Longitude -> LocalParams GeofiltQuery
-> LocalParams GeofiltQuery
pt x y s = s { _pt = Just (x, y) }
sfield :: Text -> LocalParams GeofiltQuery -> LocalParams GeofiltQuery
sfield x s = s { _sfield = Just x }