api.terms_enum.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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. "errors"
  23. "io"
  24. "net/http"
  25. "strings"
  26. )
  27. func newTermsEnumFunc(t Transport) TermsEnum {
  28. return func(index []string, o ...func(*TermsEnumRequest)) (*Response, error) {
  29. var r = TermsEnumRequest{Index: index}
  30. for _, f := range o {
  31. f(&r)
  32. }
  33. return r.Do(r.ctx, t)
  34. }
  35. }
  36. // ----- API Definition -------------------------------------------------------
  37. // TermsEnum the terms enum API can be used to discover terms in the index that begin with the provided string. It is designed for low-latency look-ups used in auto-complete scenarios.
  38. //
  39. // See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/current/search-terms-enum.html.
  40. type TermsEnum func(index []string, o ...func(*TermsEnumRequest)) (*Response, error)
  41. // TermsEnumRequest configures the Terms Enum API request.
  42. type TermsEnumRequest struct {
  43. Index []string
  44. Body io.Reader
  45. Pretty bool
  46. Human bool
  47. ErrorTrace bool
  48. FilterPath []string
  49. Header http.Header
  50. ctx context.Context
  51. }
  52. // Do executes the request and returns response or error.
  53. func (r TermsEnumRequest) Do(ctx context.Context, transport Transport) (*Response, error) {
  54. var (
  55. method string
  56. path strings.Builder
  57. params map[string]string
  58. )
  59. method = "POST"
  60. if len(r.Index) == 0 {
  61. return nil, errors.New("index is required and cannot be nil or empty")
  62. }
  63. path.Grow(1 + len(strings.Join(r.Index, ",")) + 1 + len("_terms_enum"))
  64. path.WriteString("/")
  65. path.WriteString(strings.Join(r.Index, ","))
  66. path.WriteString("/")
  67. path.WriteString("_terms_enum")
  68. params = make(map[string]string)
  69. if r.Pretty {
  70. params["pretty"] = "true"
  71. }
  72. if r.Human {
  73. params["human"] = "true"
  74. }
  75. if r.ErrorTrace {
  76. params["error_trace"] = "true"
  77. }
  78. if len(r.FilterPath) > 0 {
  79. params["filter_path"] = strings.Join(r.FilterPath, ",")
  80. }
  81. req, err := newRequest(method, path.String(), r.Body)
  82. if err != nil {
  83. return nil, err
  84. }
  85. if len(params) > 0 {
  86. q := req.URL.Query()
  87. for k, v := range params {
  88. q.Set(k, v)
  89. }
  90. req.URL.RawQuery = q.Encode()
  91. }
  92. if len(r.Header) > 0 {
  93. if len(req.Header) == 0 {
  94. req.Header = r.Header
  95. } else {
  96. for k, vv := range r.Header {
  97. for _, v := range vv {
  98. req.Header.Add(k, v)
  99. }
  100. }
  101. }
  102. }
  103. if r.Body != nil && req.Header.Get(headerContentType) == "" {
  104. req.Header[headerContentType] = headerContentTypeJSON
  105. }
  106. if ctx != nil {
  107. req = req.WithContext(ctx)
  108. }
  109. res, err := transport.Perform(req)
  110. if err != nil {
  111. return nil, err
  112. }
  113. response := Response{
  114. StatusCode: res.StatusCode,
  115. Body: res.Body,
  116. Header: res.Header,
  117. }
  118. return &response, nil
  119. }
  120. // WithContext sets the request context.
  121. func (f TermsEnum) WithContext(v context.Context) func(*TermsEnumRequest) {
  122. return func(r *TermsEnumRequest) {
  123. r.ctx = v
  124. }
  125. }
  126. // WithBody - field name, string which is the prefix expected in matching terms, timeout and size for max number of results.
  127. func (f TermsEnum) WithBody(v io.Reader) func(*TermsEnumRequest) {
  128. return func(r *TermsEnumRequest) {
  129. r.Body = v
  130. }
  131. }
  132. // WithPretty makes the response body pretty-printed.
  133. func (f TermsEnum) WithPretty() func(*TermsEnumRequest) {
  134. return func(r *TermsEnumRequest) {
  135. r.Pretty = true
  136. }
  137. }
  138. // WithHuman makes statistical values human-readable.
  139. func (f TermsEnum) WithHuman() func(*TermsEnumRequest) {
  140. return func(r *TermsEnumRequest) {
  141. r.Human = true
  142. }
  143. }
  144. // WithErrorTrace includes the stack trace for errors in the response body.
  145. func (f TermsEnum) WithErrorTrace() func(*TermsEnumRequest) {
  146. return func(r *TermsEnumRequest) {
  147. r.ErrorTrace = true
  148. }
  149. }
  150. // WithFilterPath filters the properties of the response body.
  151. func (f TermsEnum) WithFilterPath(v ...string) func(*TermsEnumRequest) {
  152. return func(r *TermsEnumRequest) {
  153. r.FilterPath = v
  154. }
  155. }
  156. // WithHeader adds the headers to the HTTP request.
  157. func (f TermsEnum) WithHeader(h map[string]string) func(*TermsEnumRequest) {
  158. return func(r *TermsEnumRequest) {
  159. if r.Header == nil {
  160. r.Header = make(http.Header)
  161. }
  162. for k, v := range h {
  163. r.Header.Add(k, v)
  164. }
  165. }
  166. }
  167. // WithOpaqueID adds the X-Opaque-Id header to the HTTP request.
  168. func (f TermsEnum) WithOpaqueID(s string) func(*TermsEnumRequest) {
  169. return func(r *TermsEnumRequest) {
  170. if r.Header == nil {
  171. r.Header = make(http.Header)
  172. }
  173. r.Header.Set("X-Opaque-Id", s)
  174. }
  175. }