mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Add a route to get search summary
This commit is contained in:
parent
77627534bc
commit
80e23d1c84
@ -1375,6 +1375,27 @@ paths:
|
|||||||
schema:
|
schema:
|
||||||
$ref: "#/components/schemas/ItemLightList"
|
$ref: "#/components/schemas/ItemLightList"
|
||||||
|
|
||||||
|
/sec/item/searchStats:
|
||||||
|
post:
|
||||||
|
tags: [ Item ]
|
||||||
|
summary: Get basic statistics about the data of a search.
|
||||||
|
description: |
|
||||||
|
Takes a search query and returns a summary about the results.
|
||||||
|
security:
|
||||||
|
- authTokenHeader: []
|
||||||
|
requestBody:
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "#/components/schemas/ItemSearch"
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: Ok
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "#/components/schemas/SearchStats"
|
||||||
|
|
||||||
/sec/item/{id}:
|
/sec/item/{id}:
|
||||||
get:
|
get:
|
||||||
tags: [ Item ]
|
tags: [ Item ]
|
||||||
@ -4146,6 +4167,23 @@ components:
|
|||||||
key:
|
key:
|
||||||
type: string
|
type: string
|
||||||
format: ident
|
format: ident
|
||||||
|
SearchStats:
|
||||||
|
description: |
|
||||||
|
A summary of search results.
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- tagCloud
|
||||||
|
- fieldStats
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
tagCloud:
|
||||||
|
$ref: "#/components/schemas/TagCloud"
|
||||||
|
fieldStats:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: "#/components/schemas/FieldStats"
|
||||||
ItemInsights:
|
ItemInsights:
|
||||||
description: |
|
description: |
|
||||||
Information about the items in docspell.
|
Information about the items in docspell.
|
||||||
@ -4166,6 +4204,51 @@ components:
|
|||||||
format: int64
|
format: int64
|
||||||
tagCloud:
|
tagCloud:
|
||||||
$ref: "#/components/schemas/TagCloud"
|
$ref: "#/components/schemas/TagCloud"
|
||||||
|
FieldStats:
|
||||||
|
description: |
|
||||||
|
Basic statistics about a custom field.
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
- name
|
||||||
|
- ftype
|
||||||
|
- count
|
||||||
|
- avg
|
||||||
|
- sum
|
||||||
|
- max
|
||||||
|
- min
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: string
|
||||||
|
format: ident
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
format: ident
|
||||||
|
label:
|
||||||
|
type: string
|
||||||
|
ftype:
|
||||||
|
type: string
|
||||||
|
format: customfieldtype
|
||||||
|
enum:
|
||||||
|
- text
|
||||||
|
- numeric
|
||||||
|
- date
|
||||||
|
- bool
|
||||||
|
- money
|
||||||
|
count:
|
||||||
|
type: integer
|
||||||
|
format: int32
|
||||||
|
sum:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
|
avg:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
|
max:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
|
min:
|
||||||
|
type: number
|
||||||
|
format: double
|
||||||
TagCloud:
|
TagCloud:
|
||||||
description: |
|
description: |
|
||||||
A tag "cloud"
|
A tag "cloud"
|
||||||
|
@ -27,6 +27,22 @@ import org.log4s.Logger
|
|||||||
|
|
||||||
trait Conversions {
|
trait Conversions {
|
||||||
|
|
||||||
|
def mkSearchStats(sum: OItemSearch.SearchSummary): SearchStats =
|
||||||
|
SearchStats(sum.count, mkTagCloud(sum.tags), sum.fields.map(mkFieldStats))
|
||||||
|
|
||||||
|
def mkFieldStats(fs: docspell.store.queries.FieldStats): FieldStats =
|
||||||
|
FieldStats(
|
||||||
|
fs.field.id,
|
||||||
|
fs.field.name,
|
||||||
|
fs.field.label,
|
||||||
|
fs.field.ftype,
|
||||||
|
fs.count,
|
||||||
|
fs.sum.doubleValue,
|
||||||
|
fs.avg.doubleValue,
|
||||||
|
fs.max.doubleValue,
|
||||||
|
fs.min.doubleValue
|
||||||
|
)
|
||||||
|
|
||||||
// insights
|
// insights
|
||||||
def mkItemInsights(d: InsightData): ItemInsights =
|
def mkItemInsights(d: InsightData): ItemInsights =
|
||||||
ItemInsights(
|
ItemInsights(
|
||||||
|
@ -143,6 +143,14 @@ object ItemRoutes {
|
|||||||
}
|
}
|
||||||
} yield resp
|
} yield resp
|
||||||
|
|
||||||
|
case req @ POST -> Root / "searchStats" =>
|
||||||
|
for {
|
||||||
|
mask <- req.as[ItemSearch]
|
||||||
|
query = Conversions.mkQuery(mask, user.account)
|
||||||
|
stats <- backend.itemSearch.findItemsSummary(query)
|
||||||
|
resp <- Ok(Conversions.mkSearchStats(stats))
|
||||||
|
} yield resp
|
||||||
|
|
||||||
case GET -> Root / Ident(id) =>
|
case GET -> Root / Ident(id) =>
|
||||||
for {
|
for {
|
||||||
item <- backend.itemSearch.findItem(id, user.account.collective)
|
item <- backend.itemSearch.findItem(id, user.account.collective)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user