module Solr.Query.Lucene
(
LuceneQuery
, defaultField
, (=:)
, field
, (^=:)
, score
, LuceneExpr
, int
, float
, true
, false
, word
, wild
, regex
, phrase
, datetime
, DateTime
, Year
, Month
, Day
, Hour
, Minute
, Second
, Millisecond
, (~:)
, fuzz
, fuzzy
, (^:)
, boost
, to
, gt
, gte
, lt
, lte
, Boundary
, incl
, excl
, star
, intersects
, isWithin
, Shape
, polygon
, LuceneExprTy(..)
, Fuzzable
, Boostable
, Rangeable
, df
, opAnd
, opOr
, UTCTime
) where
import Solr.Prelude
import Builder
import Solr.Query.Internal
import Solr.Query.Lucene.Expr
import Solr.Query.Lucene.Expr.Type
newtype LuceneQuery
= Q { unQ :: Builder }
instance Monoid LuceneQuery where
mempty :: LuceneQuery
mempty = defaultMempty
mappend :: LuceneQuery -> LuceneQuery -> LuceneQuery
mappend = defaultMappend
instance Query LuceneQuery where
data LocalParams LuceneQuery = LuceneParams
{ _df :: Maybe Text
, _qop :: Maybe QOp
}
compileLocalParams :: LocalParams LuceneQuery -> [Builder]
compileLocalParams (LuceneParams{_df, _qop}) = catMaybes
[ compileDf <$> _df
, compileQOp <$> _qop
]
where
compileDf :: Text -> Builder
compileDf v = "df=" <> thaw' v
compileQOp :: QOp -> Builder
compileQOp QOpAnd = "q.op=AND"
compileQOp QOpOr = "q.op=OR"
data QOp
= QOpAnd
| QOpOr
instance Default (LocalParams LuceneQuery) where
def = LuceneParams Nothing Nothing
df :: Text -> LocalParams LuceneQuery -> LocalParams LuceneQuery
df x s = s { _df = Just x }
opAnd :: LocalParams LuceneQuery -> LocalParams LuceneQuery
opAnd s = s { _qop = Just QOpAnd }
opOr :: LocalParams LuceneQuery -> LocalParams LuceneQuery
opOr s = s { _qop = Just QOpOr }
defaultField :: LuceneExpr ty -> LuceneQuery
defaultField (E q) = Q q
(=:) :: Text -> LuceneExpr ty -> LuceneQuery
f =: E e = Q (thaw' f <> char ':' <> e)
infix 7 =:
field :: Text -> LuceneExpr ty -> LuceneQuery
field = (=:)
(^=:) :: LuceneQuery -> Float -> LuceneQuery
Q q ^=: n = Q (q <> "^=" <> bshow n)
infixr 6 ^=:
score :: LuceneQuery -> Float -> LuceneQuery
score = (^=:)
infixr 6 `score`