forked from olivere/elastic
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathget.go
More file actions
155 lines (134 loc) · 3.25 KB
/
get.go
File metadata and controls
155 lines (134 loc) · 3.25 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
// Copyright 2012 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
import (
"encoding/json"
"fmt"
"net/http"
"net/url"
"strings"
)
type GetService struct {
client *Client
index string
_type string
id string
routing string
preference string
fields []string
refresh *bool
realtime *bool
}
func NewGetService(client *Client) *GetService {
builder := &GetService{
client: client,
_type: "_all",
}
return builder
}
func (b *GetService) String() string {
return fmt.Sprintf("[%v][%v][%v]: routing [%v]",
b.index,
b._type,
b.id,
b.routing)
}
func (b *GetService) Index(index string) *GetService {
b.index = index
return b
}
func (b *GetService) Type(_type string) *GetService {
b._type = _type
return b
}
func (b *GetService) Id(id string) *GetService {
b.id = id
return b
}
func (b *GetService) Parent(parent string) *GetService {
if b.routing == "" {
b.routing = parent
}
return b
}
func (b *GetService) Routing(routing string) *GetService {
b.routing = routing
return b
}
func (b *GetService) Preference(preference string) *GetService {
b.preference = preference
return b
}
func (b *GetService) Fields(fields ...string) *GetService {
if b.fields == nil {
b.fields = make([]string, 0)
}
b.fields = append(b.fields, fields...)
return b
}
func (b *GetService) Refresh(refresh bool) *GetService {
b.refresh = &refresh
return b
}
func (b *GetService) Realtime(realtime bool) *GetService {
b.realtime = &realtime
return b
}
func (b *GetService) Do() (*GetResult, error) {
// Build url
urls := "/{index}/{type}/{id}"
urls = strings.Replace(urls, "{index}", cleanPathString(b.index), 1)
urls = strings.Replace(urls, "{type}", cleanPathString(b._type), 1)
urls = strings.Replace(urls, "{id}", cleanPathString(b.id), 1)
params := make(url.Values)
if b.realtime != nil {
params.Add("realtime", fmt.Sprintf("%v", *b.realtime))
}
if len(b.fields) > 0 {
params.Add("fields", strings.Join(b.fields, ","))
}
if b.routing != "" {
params.Add("routing", b.routing)
}
if b.preference != "" {
params.Add("preference", b.preference)
}
if b.refresh != nil {
params.Add("refresh", fmt.Sprintf("%v", *b.refresh))
}
if len(params) > 0 {
urls += "?" + params.Encode()
}
// Set up a new request
req, err := b.client.NewRequest("GET", urls)
if err != nil {
return nil, err
}
// No body in get requests
// Get response
res, err := b.client.c.Do((*http.Request)(req))
if err != nil {
return nil, err
}
if err := checkResponse(res); err != nil {
return nil, err
}
defer res.Body.Close()
ret := new(GetResult)
if err := json.NewDecoder(res.Body).Decode(ret); err != nil {
return nil, err
}
return ret, nil
}
// -- Result of a get request.
type GetResult struct {
Index string `json:"_index"`
Type string `json:"_type"`
Id string `json:"_id"`
Version int64 `json:"_version,omitempty"`
Source *json.RawMessage `json:"_source,omitempty"`
Found bool `json:"found,omitempty"`
Fields []string `json:"fields,omitempty"`
Error string `json:"error,omitempty"` // used only in MultiGet
}