-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentity.go
75 lines (57 loc) · 1.61 KB
/
entity.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
package elasticsteps
import (
"bytes"
"encoding/json"
)
// Document represents an Elasticsearch doc.
// nolint: tagliatelle
type Document struct {
ID string `json:"_id"`
Source json.RawMessage `json:"_source"`
}
type document Document
// UnmarshalJSON compacts document body while marshaling.
func (d *Document) UnmarshalJSON(data []byte) error {
var raw document
if err := json.Unmarshal(data, &raw); err != nil {
return err
}
compactedSource := new(bytes.Buffer)
if err := json.Compact(compactedSource, raw.Source); err != nil {
return err
}
*d = Document(raw)
d.Source = compactedSource.Bytes()
return nil
}
// SearchResult represents the search result.
type SearchResult struct { //nolint: musttag
Hits SearchResultHits
}
// SearchResultHits represents the hits.
// nolint: tagliatelle
type SearchResultHits struct {
Total SearchResultHitsTotal `json:"total"`
MaxScore *float64 `json:"max_score"`
Hits SearchResultHitsHits `json:"hits"`
}
// SearchResultHitsTotal represents the hits.total.
type SearchResultHitsTotal struct {
Value int `json:"value"`
Relation string `json:"relation"`
}
// SearchResultHitsHits represents the hits.hits.
type SearchResultHitsHits []json.RawMessage
// UnmarshalJSON removes unwanted fields.
func (h *SearchResultHitsHits) UnmarshalJSON(data []byte) error {
var raw []map[string]json.RawMessage
if err := json.Unmarshal(data, &raw); err != nil {
return err
}
*h = make([]json.RawMessage, len(raw))
for k, v := range raw {
delete(v, "_index")
(*h)[k], _ = json.Marshal(v) // nolint: errcheck,errchkjson
}
return nil
}