forked from olivere/elastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search_facets_histogram_script.go
120 lines (104 loc) · 2.79 KB
/
search_facets_histogram_script.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// Copyright 2012-2015 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
// Histogram Facet
// See: http://www.elasticsearch.org/guide/reference/api/search/facets/histogram-facet.html
type HistogramScriptFacet struct {
facetFilter Filter
global *bool
nested string
mode string
lang string
keyField string
keyScript string
valueScript string
params map[string]interface{}
interval int64
comparatorType string
}
func NewHistogramScriptFacet() HistogramScriptFacet {
return HistogramScriptFacet{
interval: -1,
params: make(map[string]interface{}),
}
}
func (f HistogramScriptFacet) FacetFilter(filter Facet) HistogramScriptFacet {
f.facetFilter = filter
return f
}
func (f HistogramScriptFacet) Global(global bool) HistogramScriptFacet {
f.global = &global
return f
}
func (f HistogramScriptFacet) Nested(nested string) HistogramScriptFacet {
f.nested = nested
return f
}
func (f HistogramScriptFacet) Mode(mode string) HistogramScriptFacet {
f.mode = mode
return f
}
func (f HistogramScriptFacet) KeyField(keyField string) HistogramScriptFacet {
f.keyField = keyField
return f
}
func (f HistogramScriptFacet) KeyScript(keyScript string) HistogramScriptFacet {
f.keyScript = keyScript
return f
}
func (f HistogramScriptFacet) ValueScript(valueScript string) HistogramScriptFacet {
f.valueScript = valueScript
return f
}
func (f HistogramScriptFacet) Interval(interval int64) HistogramScriptFacet {
f.interval = interval
return f
}
func (f HistogramScriptFacet) Param(name string, value interface{}) HistogramScriptFacet {
f.params[name] = value
return f
}
func (f HistogramScriptFacet) Comparator(comparatorType string) HistogramScriptFacet {
f.comparatorType = comparatorType
return f
}
func (f HistogramScriptFacet) addFilterFacetAndGlobal(source map[string]interface{}) {
if f.facetFilter != nil {
source["facet_filter"] = f.facetFilter.Source()
}
if f.nested != "" {
source["nested"] = f.nested
}
if f.global != nil {
source["global"] = *f.global
}
if f.mode != "" {
source["mode"] = f.mode
}
}
func (f HistogramScriptFacet) Source() interface{} {
source := make(map[string]interface{})
f.addFilterFacetAndGlobal(source)
opts := make(map[string]interface{})
source["histogram"] = opts
if f.keyField != "" {
opts["key_field"] = f.keyField
} else if f.keyScript != "" {
opts["key_script"] = f.keyScript
}
opts["value_script"] = f.valueScript
if f.lang != "" {
opts["lang"] = f.lang
}
if f.interval > 0 {
opts["interval"] = f.interval
}
if len(f.params) > 0 {
opts["params"] = f.params
}
if f.comparatorType != "" {
opts["comparator"] = f.comparatorType
}
return source
}