// Code generated from specification version 7.3.0: DO NOT EDIT package esapi import ( "context" "io" "net/http" "strconv" "strings" ) func newExplainFunc(t Transport) Explain { return func(index string, id string, o ...func(*ExplainRequest)) (*Response, error) { var r = ExplainRequest{Index: index, DocumentID: id} for _, f := range o { f(&r) } return r.Do(r.ctx, t) } } // ----- API Definition ------------------------------------------------------- // Explain returns information about why a specific matches (or doesn't match) a query. // // See full documentation at http://www.elastic.co/guide/en/elasticsearch/reference/master/search-explain.html. // type Explain func(index string, id string, o ...func(*ExplainRequest)) (*Response, error) // ExplainRequest configures the Explain API request. // type ExplainRequest struct { Index string DocumentType string DocumentID string Body io.Reader Analyzer string AnalyzeWildcard *bool DefaultOperator string Df string Lenient *bool Preference string Query string Routing string Source []string SourceExcludes []string SourceIncludes []string StoredFields []string Pretty bool Human bool ErrorTrace bool FilterPath []string Header http.Header ctx context.Context } // Do executes the request and returns response or error. // func (r ExplainRequest) Do(ctx context.Context, transport Transport) (*Response, error) { var ( method string path strings.Builder params map[string]string ) method = "GET" if r.DocumentType == "" { r.DocumentType = "_doc" } path.Grow(1 + len(r.Index) + 1 + len(r.DocumentType) + 1 + len(r.DocumentID) + 1 + len("_explain")) path.WriteString("/") path.WriteString(r.Index) if r.DocumentType != "" { path.WriteString("/") path.WriteString(r.DocumentType) } path.WriteString("/") path.WriteString(r.DocumentID) path.WriteString("/") path.WriteString("_explain") params = make(map[string]string) if r.Analyzer != "" { params["analyzer"] = r.Analyzer } if r.AnalyzeWildcard != nil { params["analyze_wildcard"] = strconv.FormatBool(*r.AnalyzeWildcard) } if r.DefaultOperator != "" { params["default_operator"] = r.DefaultOperator } if r.Df != "" { params["df"] = r.Df } if r.Lenient != nil { params["lenient"] = strconv.FormatBool(*r.Lenient) } if r.Preference != "" { params["preference"] = r.Preference } if r.Query != "" { params["q"] = r.Query } if r.Routing != "" { params["routing"] = r.Routing } if len(r.Source) > 0 { params["_source"] = strings.Join(r.Source, ",") } if len(r.SourceExcludes) > 0 { params["_source_excludes"] = strings.Join(r.SourceExcludes, ",") } if len(r.SourceIncludes) > 0 { params["_source_includes"] = strings.Join(r.SourceIncludes, ",") } if len(r.StoredFields) > 0 { params["stored_fields"] = strings.Join(r.StoredFields, ",") } if r.Pretty { params["pretty"] = "true" } if r.Human { params["human"] = "true" } if r.ErrorTrace { params["error_trace"] = "true" } if len(r.FilterPath) > 0 { params["filter_path"] = strings.Join(r.FilterPath, ",") } req, _ := newRequest(method, path.String(), r.Body) if len(params) > 0 { q := req.URL.Query() for k, v := range params { q.Set(k, v) } req.URL.RawQuery = q.Encode() } if r.Body != nil { req.Header[headerContentType] = headerContentTypeJSON } if len(r.Header) > 0 { if len(req.Header) == 0 { req.Header = r.Header } else { for k, vv := range r.Header { for _, v := range vv { req.Header.Add(k, v) } } } } if ctx != nil { req = req.WithContext(ctx) } res, err := transport.Perform(req) if err != nil { return nil, err } response := Response{ StatusCode: res.StatusCode, Body: res.Body, Header: res.Header, } return &response, nil } // WithContext sets the request context. // func (f Explain) WithContext(v context.Context) func(*ExplainRequest) { return func(r *ExplainRequest) { r.ctx = v } } // WithBody - The query definition using the Query DSL. // func (f Explain) WithBody(v io.Reader) func(*ExplainRequest) { return func(r *ExplainRequest) { r.Body = v } } // WithDocumentType - the type of the document. // func (f Explain) WithDocumentType(v string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.DocumentType = v } } // WithAnalyzer - the analyzer for the query string query. // func (f Explain) WithAnalyzer(v string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.Analyzer = v } } // WithAnalyzeWildcard - specify whether wildcards and prefix queries in the query string query should be analyzed (default: false). // func (f Explain) WithAnalyzeWildcard(v bool) func(*ExplainRequest) { return func(r *ExplainRequest) { r.AnalyzeWildcard = &v } } // WithDefaultOperator - the default operator for query string query (and or or). // func (f Explain) WithDefaultOperator(v string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.DefaultOperator = v } } // WithDf - the default field for query string query (default: _all). // func (f Explain) WithDf(v string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.Df = v } } // WithLenient - specify whether format-based query failures (such as providing text to a numeric field) should be ignored. // func (f Explain) WithLenient(v bool) func(*ExplainRequest) { return func(r *ExplainRequest) { r.Lenient = &v } } // WithPreference - specify the node or shard the operation should be performed on (default: random). // func (f Explain) WithPreference(v string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.Preference = v } } // WithQuery - query in the lucene query string syntax. // func (f Explain) WithQuery(v string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.Query = v } } // WithRouting - specific routing value. // func (f Explain) WithRouting(v string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.Routing = v } } // WithSource - true or false to return the _source field or not, or a list of fields to return. // func (f Explain) WithSource(v ...string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.Source = v } } // WithSourceExcludes - a list of fields to exclude from the returned _source field. // func (f Explain) WithSourceExcludes(v ...string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.SourceExcludes = v } } // WithSourceIncludes - a list of fields to extract and return from the _source field. // func (f Explain) WithSourceIncludes(v ...string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.SourceIncludes = v } } // WithStoredFields - a list of stored fields to return in the response. // func (f Explain) WithStoredFields(v ...string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.StoredFields = v } } // WithPretty makes the response body pretty-printed. // func (f Explain) WithPretty() func(*ExplainRequest) { return func(r *ExplainRequest) { r.Pretty = true } } // WithHuman makes statistical values human-readable. // func (f Explain) WithHuman() func(*ExplainRequest) { return func(r *ExplainRequest) { r.Human = true } } // WithErrorTrace includes the stack trace for errors in the response body. // func (f Explain) WithErrorTrace() func(*ExplainRequest) { return func(r *ExplainRequest) { r.ErrorTrace = true } } // WithFilterPath filters the properties of the response body. // func (f Explain) WithFilterPath(v ...string) func(*ExplainRequest) { return func(r *ExplainRequest) { r.FilterPath = v } } // WithHeader adds the headers to the HTTP request. // func (f Explain) WithHeader(h map[string]string) func(*ExplainRequest) { return func(r *ExplainRequest) { if r.Header == nil { r.Header = make(http.Header) } for k, v := range h { r.Header.Add(k, v) } } }