mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 10:29:34 +00:00
70 lines
1.6 KiB
Scala
70 lines
1.6 KiB
Scala
package docspell.ftssolr
|
|
|
|
import docspell.ftsclient.FtsQuery
|
|
|
|
import io.circe._
|
|
import io.circe.generic.semiauto._
|
|
|
|
final case class QueryData(
|
|
query: String,
|
|
filter: String,
|
|
limit: Int,
|
|
offset: Int,
|
|
fields: List[Field],
|
|
params: Map[String, String]
|
|
) {
|
|
|
|
def nextPage: QueryData =
|
|
copy(offset = offset + limit)
|
|
|
|
def withHighLight(fields: List[Field], pre: String, post: String): QueryData =
|
|
copy(params =
|
|
params ++ Map(
|
|
"hl" -> "on",
|
|
"hl.requireFieldMatch" -> "true",
|
|
"hl.fl" -> fields.map(_.name).mkString(","),
|
|
"hl.simple.pre" -> pre,
|
|
"hl.simple.post" -> post
|
|
)
|
|
)
|
|
}
|
|
|
|
object QueryData {
|
|
|
|
implicit val jsonEncoder: Encoder[QueryData] =
|
|
deriveEncoder[QueryData]
|
|
|
|
def apply(
|
|
cfg: SolrConfig,
|
|
search: List[Field],
|
|
fields: List[Field],
|
|
fq: FtsQuery
|
|
): QueryData = {
|
|
val q = sanitize(fq.q)
|
|
val extQ = search.map(f => s"${f.name}:($q)").mkString(" OR ")
|
|
val items = fq.items.map(_.id).mkString(" ")
|
|
val collQ = s"""${Field.collectiveId.name}:"${fq.collective.id}""""
|
|
val filterQ = fq.items match {
|
|
case s if s.isEmpty =>
|
|
collQ
|
|
case _ =>
|
|
(collQ :: List(s"""${Field.itemId.name}:($items)""")).mkString(" AND ")
|
|
}
|
|
QueryData(
|
|
extQ,
|
|
filterQ,
|
|
fq.limit,
|
|
fq.offset,
|
|
fields,
|
|
Map("defType" -> cfg.defType, "q.op" -> cfg.qOp)
|
|
).withHighLight(
|
|
search,
|
|
fq.highlight.pre,
|
|
fq.highlight.post
|
|
)
|
|
}
|
|
|
|
private def sanitize(q: String): String =
|
|
q.replaceAll("[\\(,\\)]+", " ")
|
|
}
|