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>
121 lines
3.4 KiB
Go
121 lines
3.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"
|
|
|
|
"github.com/opensearch-project/opensearch-go/v4"
|
|
)
|
|
|
|
type documentClient struct {
|
|
apiClient *Client
|
|
}
|
|
|
|
// Create executes a creade document request with the required DocumentCreateReq
|
|
func (c documentClient) Create(ctx context.Context, req DocumentCreateReq) (*DocumentCreateResp, error) {
|
|
var (
|
|
data DocumentCreateResp
|
|
err error
|
|
)
|
|
if data.response, err = c.apiClient.do(ctx, req, &data); err != nil {
|
|
return &data, err
|
|
}
|
|
|
|
return &data, nil
|
|
}
|
|
|
|
// Delete executes a delete document request with the required DocumentDeleteReq
|
|
func (c documentClient) Delete(ctx context.Context, req DocumentDeleteReq) (*DocumentDeleteResp, error) {
|
|
var (
|
|
data DocumentDeleteResp
|
|
err error
|
|
)
|
|
if data.response, err = c.apiClient.do(ctx, req, &data); err != nil {
|
|
return &data, err
|
|
}
|
|
|
|
return &data, nil
|
|
}
|
|
|
|
// DeleteByQuery executes a delete by query request with the required DocumentDeleteByQueryReq
|
|
func (c documentClient) DeleteByQuery(ctx context.Context, req DocumentDeleteByQueryReq) (*DocumentDeleteByQueryResp, error) {
|
|
var (
|
|
data DocumentDeleteByQueryResp
|
|
err error
|
|
)
|
|
if data.response, err = c.apiClient.do(ctx, req, &data); err != nil {
|
|
return &data, err
|
|
}
|
|
|
|
return &data, nil
|
|
}
|
|
|
|
// DeleteByQueryRethrottle executes a delete by query rethrottle request with the optional DocumentDeleteByQueryRethrottleReq
|
|
func (c documentClient) DeleteByQueryRethrottle(
|
|
ctx context.Context,
|
|
req DocumentDeleteByQueryRethrottleReq,
|
|
) (*DocumentDeleteByQueryRethrottleResp, error) {
|
|
var (
|
|
data DocumentDeleteByQueryRethrottleResp
|
|
err error
|
|
)
|
|
if data.response, err = c.apiClient.do(ctx, req, &data); err != nil {
|
|
return &data, err
|
|
}
|
|
|
|
return &data, nil
|
|
}
|
|
|
|
// Exists executes a exists document request with the required DocumentExistsReq
|
|
func (c documentClient) Exists(ctx context.Context, req DocumentExistsReq) (*opensearch.Response, error) {
|
|
return c.apiClient.do(ctx, req, nil)
|
|
}
|
|
|
|
// ExistsSource executes a exists source request with the required DocumentExistsSourceReq
|
|
func (c documentClient) ExistsSource(ctx context.Context, req DocumentExistsSourceReq) (*opensearch.Response, error) {
|
|
return c.apiClient.do(ctx, req, nil)
|
|
}
|
|
|
|
// Explain executes an explain document request with the required DocumentExplainReq
|
|
func (c documentClient) Explain(ctx context.Context, req DocumentExplainReq) (*DocumentExplainResp, error) {
|
|
var (
|
|
data DocumentExplainResp
|
|
err error
|
|
)
|
|
if data.response, err = c.apiClient.do(ctx, req, &data); err != nil {
|
|
return &data, err
|
|
}
|
|
|
|
return &data, nil
|
|
}
|
|
|
|
// Get executes a /<Index>/_doc/<DocumentID> request with the required DocumentGetReq
|
|
func (c documentClient) Get(ctx context.Context, req DocumentGetReq) (*DocumentGetResp, error) {
|
|
var (
|
|
data DocumentGetResp
|
|
err error
|
|
)
|
|
if data.response, err = c.apiClient.do(ctx, req, &data); err != nil {
|
|
return &data, err
|
|
}
|
|
|
|
return &data, nil
|
|
}
|
|
|
|
// Source executes a /<Index>/_source/<DocumentID> request with the required DocumentSourceReq
|
|
func (c documentClient) Source(ctx context.Context, req DocumentSourceReq) (*DocumentSourceResp, error) {
|
|
var (
|
|
data DocumentSourceResp
|
|
err error
|
|
)
|
|
if data.response, err = c.apiClient.do(ctx, req, &data.Source); err != nil {
|
|
return &data, err
|
|
}
|
|
|
|
return &data, nil
|
|
}
|