-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathsearch_queries_interval.go
52 lines (44 loc) · 1.58 KB
/
search_queries_interval.go
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
// Copyright 2012-present Oliver Eilhard. All rights reserved.
// Use of this source code is governed by a MIT-license.
// See http://olivere.mit-license.org/license.txt for details.
package elastic
// IntervalQueryRule represents the generic matching interval rule interface.
// Interval Rule is actually just a Query, but may be used only inside
// IntervalQuery. An extra method is added just to shield its
// implementations (*Rule objects) from other query objects.
//
// See https://www.elastic.co/guide/en/elasticsearch/reference/7.5/query-dsl-intervals-query.html
// for details.
type IntervalQueryRule interface {
Query
// isIntervalQueryRule is never actually called, and is used just for Rule to
// differ from standard Query.
isIntervalQueryRule() bool
}
// IntervalQuery returns documents based on the order and proximity of matching terms.
//
// For more details, see
// https://www.elastic.co/guide/en/elasticsearch/reference/7.5/query-dsl-intervals-query.html
type IntervalQuery struct {
field string
rule IntervalQueryRule
}
// NewIntervalQuery creates and initializes a new IntervalQuery.
func NewIntervalQuery(field string, rule IntervalQueryRule) *IntervalQuery {
return &IntervalQuery{field: field, rule: rule}
}
// Source returns JSON for the function score query.
func (q *IntervalQuery) Source() (interface{}, error) {
// {
// "intervals" : { ... }
// }
source := make(map[string]interface{})
params := make(map[string]interface{})
source["intervals"] = params
src, err := q.rule.Source()
if err != nil {
return nil, err
}
params[q.field] = src
return source, nil
}