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>
80 lines
2.6 KiB
Go
80 lines
2.6 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 (
|
|
"encoding/json"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/opensearch-project/opensearch-go/v4"
|
|
)
|
|
|
|
// TasksCancelReq represents possible options for the index create request
|
|
type TasksCancelReq struct {
|
|
TaskID string
|
|
|
|
Header http.Header
|
|
Params TasksCancelParams
|
|
}
|
|
|
|
// GetRequest returns the *http.Request that gets executed by the client
|
|
func (r TasksCancelReq) GetRequest() (*http.Request, error) {
|
|
var path strings.Builder
|
|
path.Grow(len("/_tasks//_cancel") + len(r.TaskID))
|
|
path.WriteString("/_tasks")
|
|
if r.TaskID != "" {
|
|
path.WriteString("/")
|
|
path.WriteString(r.TaskID)
|
|
}
|
|
path.WriteString("/_cancel")
|
|
return opensearch.BuildRequest(
|
|
"POST",
|
|
path.String(),
|
|
nil,
|
|
r.Params.get(),
|
|
r.Header,
|
|
)
|
|
}
|
|
|
|
// TasksCancelResp represents the returned struct of the index create response
|
|
type TasksCancelResp struct {
|
|
Nodes map[string]TaskCancel `json:"nodes"`
|
|
NodeFailures []FailuresCause `json:"node_failures"`
|
|
response *opensearch.Response
|
|
}
|
|
|
|
// Inspect returns the Inspect type containing the raw *opensearch.Reponse
|
|
func (r TasksCancelResp) Inspect() Inspect {
|
|
return Inspect{Response: r.response}
|
|
}
|
|
|
|
// TaskCancel is a sub type of TaskCancelResp containing information about a node the task was running on
|
|
type TaskCancel struct {
|
|
Name string `json:"name"`
|
|
TransportAddress string `json:"transport_address"`
|
|
Host string `json:"host"`
|
|
IP string `json:"ip"`
|
|
Roles []string `json:"roles"`
|
|
Attributes map[string]string `json:"attributes"`
|
|
Tasks map[string]TaskCancelInfo `json:"tasks"`
|
|
}
|
|
|
|
// TaskCancelInfo is a sub type of TaskCancle containing information about the canceled task
|
|
type TaskCancelInfo struct {
|
|
Node string `json:"node"`
|
|
ID int `json:"id"`
|
|
Type string `json:"type"`
|
|
Action string `json:"action"`
|
|
StartTimeInMillis int64 `json:"start_time_in_millis"`
|
|
RunningTimeInNanos int `json:"running_time_in_nanos"`
|
|
CancellationTimeMillis int64 `json:"cancellation_time_millis"`
|
|
Cancellable bool `json:"cancellable"`
|
|
Cancelled bool `json:"cancelled"`
|
|
Headers json.RawMessage `json:"headers"`
|
|
}
|