api.fleet.search.go 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. // Licensed to Elasticsearch B.V. under one or more contributor
  2. // license agreements. See the NOTICE file distributed with
  3. // this work for additional information regarding copyright
  4. // ownership. Elasticsearch B.V. licenses this file to you under
  5. // the Apache License, Version 2.0 (the "License"); you may
  6. // not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing,
  12. // software distributed under the License is distributed on an
  13. // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. // KIND, either express or implied. See the License for the
  15. // specific language governing permissions and limitations
  16. // under the License.
  17. //
  18. // Code generated from specification version 7.17.10: DO NOT EDIT
  19. package esapi
  20. import (
  21. "context"
  22. "io"
  23. "net/http"
  24. "strconv"
  25. "strings"
  26. "time"
  27. )
  28. func newFleetSearchFunc(t Transport) FleetSearch {
  29. return func(index string, o ...func(*FleetSearchRequest)) (*Response, error) {
  30. var r = FleetSearchRequest{Index: index}
  31. for _, f := range o {
  32. f(&r)
  33. }
  34. return r.Do(r.ctx, t)
  35. }
  36. }
  37. // ----- API Definition -------------------------------------------------------
  38. // FleetSearch search API where the search will only be executed after specified checkpoints are available due to a refresh. This API is designed for internal use by the fleet server project.
  39. //
  40. // This API is experimental.
  41. type FleetSearch func(index string, o ...func(*FleetSearchRequest)) (*Response, error)
  42. // FleetSearchRequest configures the Fleet Search API request.
  43. type FleetSearchRequest struct {
  44. Index string
  45. Body io.Reader
  46. AllowPartialSearchResults *bool
  47. WaitForCheckpoints []string
  48. WaitForCheckpointsTimeout time.Duration
  49. Pretty bool
  50. Human bool
  51. ErrorTrace bool
  52. FilterPath []string
  53. Header http.Header
  54. ctx context.Context
  55. }
  56. // Do executes the request and returns response or error.
  57. func (r FleetSearchRequest) Do(ctx context.Context, transport Transport) (*Response, error) {
  58. var (
  59. method string
  60. path strings.Builder
  61. params map[string]string
  62. )
  63. method = "POST"
  64. path.Grow(1 + len(r.Index) + 1 + len("_fleet") + 1 + len("_fleet_search"))
  65. path.WriteString("/")
  66. path.WriteString(r.Index)
  67. path.WriteString("/")
  68. path.WriteString("_fleet")
  69. path.WriteString("/")
  70. path.WriteString("_fleet_search")
  71. params = make(map[string]string)
  72. if r.AllowPartialSearchResults != nil {
  73. params["allow_partial_search_results"] = strconv.FormatBool(*r.AllowPartialSearchResults)
  74. }
  75. if len(r.WaitForCheckpoints) > 0 {
  76. params["wait_for_checkpoints"] = strings.Join(r.WaitForCheckpoints, ",")
  77. }
  78. if r.WaitForCheckpointsTimeout != 0 {
  79. params["wait_for_checkpoints_timeout"] = formatDuration(r.WaitForCheckpointsTimeout)
  80. }
  81. if r.Pretty {
  82. params["pretty"] = "true"
  83. }
  84. if r.Human {
  85. params["human"] = "true"
  86. }
  87. if r.ErrorTrace {
  88. params["error_trace"] = "true"
  89. }
  90. if len(r.FilterPath) > 0 {
  91. params["filter_path"] = strings.Join(r.FilterPath, ",")
  92. }
  93. req, err := newRequest(method, path.String(), r.Body)
  94. if err != nil {
  95. return nil, err
  96. }
  97. if len(params) > 0 {
  98. q := req.URL.Query()
  99. for k, v := range params {
  100. q.Set(k, v)
  101. }
  102. req.URL.RawQuery = q.Encode()
  103. }
  104. if len(r.Header) > 0 {
  105. if len(req.Header) == 0 {
  106. req.Header = r.Header
  107. } else {
  108. for k, vv := range r.Header {
  109. for _, v := range vv {
  110. req.Header.Add(k, v)
  111. }
  112. }
  113. }
  114. }
  115. if r.Body != nil && req.Header.Get(headerContentType) == "" {
  116. req.Header[headerContentType] = headerContentTypeJSON
  117. }
  118. if ctx != nil {
  119. req = req.WithContext(ctx)
  120. }
  121. res, err := transport.Perform(req)
  122. if err != nil {
  123. return nil, err
  124. }
  125. response := Response{
  126. StatusCode: res.StatusCode,
  127. Body: res.Body,
  128. Header: res.Header,
  129. }
  130. return &response, nil
  131. }
  132. // WithContext sets the request context.
  133. func (f FleetSearch) WithContext(v context.Context) func(*FleetSearchRequest) {
  134. return func(r *FleetSearchRequest) {
  135. r.ctx = v
  136. }
  137. }
  138. // WithBody - The search definition using the Query DSL.
  139. func (f FleetSearch) WithBody(v io.Reader) func(*FleetSearchRequest) {
  140. return func(r *FleetSearchRequest) {
  141. r.Body = v
  142. }
  143. }
  144. // WithAllowPartialSearchResults - indicate if an error should be returned if there is a partial search failure or timeout.
  145. func (f FleetSearch) WithAllowPartialSearchResults(v bool) func(*FleetSearchRequest) {
  146. return func(r *FleetSearchRequest) {
  147. r.AllowPartialSearchResults = &v
  148. }
  149. }
  150. // WithWaitForCheckpoints - comma separated list of checkpoints, one per shard.
  151. func (f FleetSearch) WithWaitForCheckpoints(v ...string) func(*FleetSearchRequest) {
  152. return func(r *FleetSearchRequest) {
  153. r.WaitForCheckpoints = v
  154. }
  155. }
  156. // WithWaitForCheckpointsTimeout - explicit wait_for_checkpoints timeout.
  157. func (f FleetSearch) WithWaitForCheckpointsTimeout(v time.Duration) func(*FleetSearchRequest) {
  158. return func(r *FleetSearchRequest) {
  159. r.WaitForCheckpointsTimeout = v
  160. }
  161. }
  162. // WithPretty makes the response body pretty-printed.
  163. func (f FleetSearch) WithPretty() func(*FleetSearchRequest) {
  164. return func(r *FleetSearchRequest) {
  165. r.Pretty = true
  166. }
  167. }
  168. // WithHuman makes statistical values human-readable.
  169. func (f FleetSearch) WithHuman() func(*FleetSearchRequest) {
  170. return func(r *FleetSearchRequest) {
  171. r.Human = true
  172. }
  173. }
  174. // WithErrorTrace includes the stack trace for errors in the response body.
  175. func (f FleetSearch) WithErrorTrace() func(*FleetSearchRequest) {
  176. return func(r *FleetSearchRequest) {
  177. r.ErrorTrace = true
  178. }
  179. }
  180. // WithFilterPath filters the properties of the response body.
  181. func (f FleetSearch) WithFilterPath(v ...string) func(*FleetSearchRequest) {
  182. return func(r *FleetSearchRequest) {
  183. r.FilterPath = v
  184. }
  185. }
  186. // WithHeader adds the headers to the HTTP request.
  187. func (f FleetSearch) WithHeader(h map[string]string) func(*FleetSearchRequest) {
  188. return func(r *FleetSearchRequest) {
  189. if r.Header == nil {
  190. r.Header = make(http.Header)
  191. }
  192. for k, v := range h {
  193. r.Header.Add(k, v)
  194. }
  195. }
  196. }
  197. // WithOpaqueID adds the X-Opaque-Id header to the HTTP request.
  198. func (f FleetSearch) WithOpaqueID(s string) func(*FleetSearchRequest) {
  199. return func(r *FleetSearchRequest) {
  200. if r.Header == nil {
  201. r.Header = make(http.Header)
  202. }
  203. r.Header.Set("X-Opaque-Id", s)
  204. }
  205. }