mattermost-community-enterp.../vendor/github.com/opensearch-project/opensearch-go/v4/opensearchapi/api_indices-mapping.go
Claude ec1f89217a Merge: Complete Mattermost Server with Community Enterprise
Full Mattermost server source with integrated Community Enterprise features.
Includes vendor directory for offline/air-gapped builds.

Structure:
- enterprise-impl/: Enterprise feature implementations
- enterprise-community/: Init files that register implementations
- enterprise/: Bridge imports (community_imports.go)
- vendor/: All dependencies for offline builds

Build (online):
  go build ./cmd/mattermost

Build (offline/air-gapped):
  go build -mod=vendor ./cmd/mattermost

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-17 23:59:07 +09:00

193 lines
4.4 KiB
Go

// SPDX-License-Identifier: Apache-2.0
//
// The OpenSearch Contributors require contributions made to
// this file be licensed under the Apache-2.0 license or a
// compatible open source license.
package opensearchapi
import (
"context"
"encoding/json"
"io"
"net/http"
"strings"
"github.com/opensearch-project/opensearch-go/v4"
)
type mappingClient struct {
apiClient *Client
}
// Get executes a get mapping request with the required MappingGetReq
func (c mappingClient) Get(ctx context.Context, req *MappingGetReq) (*MappingGetResp, error) {
if req == nil {
req = &MappingGetReq{}
}
var (
data MappingGetResp
err error
)
if data.response, err = c.apiClient.do(ctx, req, &data.Indices); err != nil {
return &data, err
}
return &data, nil
}
// Put executes a put mapping request with the required MappingPutReq
func (c mappingClient) Put(ctx context.Context, req MappingPutReq) (*MappingPutResp, error) {
var (
data MappingPutResp
err error
)
if data.response, err = c.apiClient.do(ctx, req, &data); err != nil {
return &data, err
}
return &data, nil
}
// Field executes a field mapping request with the optional MappingFieldReq
func (c mappingClient) Field(ctx context.Context, req *MappingFieldReq) (*MappingFieldResp, error) {
if req == nil {
req = &MappingFieldReq{}
}
var (
data MappingFieldResp
err error
)
if data.response, err = c.apiClient.do(ctx, req, &data.Indices); err != nil {
return &data, err
}
return &data, nil
}
// MappingGetReq represents possible options for the mapping get request
type MappingGetReq struct {
Indices []string
Header http.Header
Params MappingGetParams
}
// GetRequest returns the *http.Request that gets executed by the client
func (r MappingGetReq) GetRequest() (*http.Request, error) {
indices := strings.Join(r.Indices, ",")
var path strings.Builder
path.Grow(10 + len(indices))
if len(indices) > 0 {
path.WriteString("/")
path.WriteString(indices)
}
path.WriteString("/_mapping")
return opensearch.BuildRequest(
"GET",
path.String(),
nil,
r.Params.get(),
r.Header,
)
}
// MappingGetResp represents the returned struct of the mapping get response
type MappingGetResp struct {
Indices map[string]struct {
Mappings json.RawMessage `json:"mappings"`
}
response *opensearch.Response
}
// Inspect returns the Inspect type containing the raw *opensearch.Reponse
func (r MappingGetResp) Inspect() Inspect {
return Inspect{Response: r.response}
}
// MappingPutReq represents possible options for the mapping put request
type MappingPutReq struct {
Indices []string
Body io.Reader
Header http.Header
Params MappingPutParams
}
// GetRequest returns the *http.Request that gets executed by the client
func (r MappingPutReq) GetRequest() (*http.Request, error) {
indices := strings.Join(r.Indices, ",")
var path strings.Builder
path.Grow(10 + len(indices))
path.WriteString("/")
path.WriteString(indices)
path.WriteString("/_mapping")
return opensearch.BuildRequest(
"PUT",
path.String(),
r.Body,
r.Params.get(),
r.Header,
)
}
// MappingPutResp represents the returned struct of the mapping put response
type MappingPutResp struct {
Acknowledged bool `json:"acknowledged"`
response *opensearch.Response
}
// Inspect returns the Inspect type containing the raw *opensearch.Reponse
func (r MappingPutResp) Inspect() Inspect {
return Inspect{Response: r.response}
}
// MappingFieldReq represents possible options for the mapping field request
type MappingFieldReq struct {
Indices []string
Fields []string
Header http.Header
Params MappingPutParams
}
// GetRequest returns the *http.Request that gets executed by the client
func (r MappingFieldReq) GetRequest() (*http.Request, error) {
indices := strings.Join(r.Indices, ",")
fields := strings.Join(r.Fields, ",")
var path strings.Builder
path.Grow(17 + len(indices) + len(fields))
if len(indices) > 0 {
path.WriteString("/")
path.WriteString(indices)
}
path.WriteString("/_mapping/field/")
path.WriteString(fields)
return opensearch.BuildRequest(
"GET",
path.String(),
nil,
r.Params.get(),
r.Header,
)
}
// MappingFieldResp represents the returned struct of the mapping field response
type MappingFieldResp struct {
Indices map[string]struct {
Mappings json.RawMessage `json:"mappings"`
}
response *opensearch.Response
}
// Inspect returns the Inspect type containing the raw *opensearch.Reponse
func (r MappingFieldResp) Inspect() Inspect {
return Inspect{Response: r.response}
}