123 lines
3.1 KiB
Go
123 lines
3.1 KiB
Go
// Copyright 2012-2018 Oliver Eilhard. All rights reserved.
|
|
// Use of this source code is governed by a MIT-license.
|
|
// See http://olivere.mit-license.org/license.txt for details.
|
|
|
|
package elastic
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/url"
|
|
|
|
"github.com/olivere/elastic/uritemplates"
|
|
)
|
|
|
|
// XpackWatcherGetWatchService is documented at http://www.elastic.co/guide/en/elasticsearch/reference/current/watcher-api-get-watch.html.
|
|
type XpackWatcherGetWatchService struct {
|
|
client *Client
|
|
pretty bool
|
|
id string
|
|
}
|
|
|
|
// NewXpackWatcherGetWatchService creates a new XpackWatcherGetWatchService.
|
|
func NewXpackWatcherGetWatchService(client *Client) *XpackWatcherGetWatchService {
|
|
return &XpackWatcherGetWatchService{
|
|
client: client,
|
|
}
|
|
}
|
|
|
|
// Id is documented as: Watch ID.
|
|
func (s *XpackWatcherGetWatchService) Id(id string) *XpackWatcherGetWatchService {
|
|
s.id = id
|
|
return s
|
|
}
|
|
|
|
// Pretty indicates that the JSON response be indented and human readable.
|
|
func (s *XpackWatcherGetWatchService) Pretty(pretty bool) *XpackWatcherGetWatchService {
|
|
s.pretty = pretty
|
|
return s
|
|
}
|
|
|
|
// buildURL builds the URL for the operation.
|
|
func (s *XpackWatcherGetWatchService) buildURL() (string, url.Values, error) {
|
|
// Build URL
|
|
path, err := uritemplates.Expand("/_xpack/watcher/watch/{id}", map[string]string{
|
|
"id": s.id,
|
|
})
|
|
if err != nil {
|
|
return "", url.Values{}, err
|
|
}
|
|
|
|
// Add query string parameters
|
|
params := url.Values{}
|
|
if s.pretty {
|
|
params.Set("pretty", "1")
|
|
}
|
|
return path, params, nil
|
|
}
|
|
|
|
// Validate checks if the operation is valid.
|
|
func (s *XpackWatcherGetWatchService) Validate() error {
|
|
var invalid []string
|
|
if s.id == "" {
|
|
invalid = append(invalid, "Id")
|
|
}
|
|
if len(invalid) > 0 {
|
|
return fmt.Errorf("missing required fields: %v", invalid)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Do executes the operation.
|
|
func (s *XpackWatcherGetWatchService) Do(ctx context.Context) (*XpackWatcherGetWatchResponse, error) {
|
|
// Check pre-conditions
|
|
if err := s.Validate(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Get URL for request
|
|
path, params, err := s.buildURL()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Get HTTP response
|
|
res, err := s.client.PerformRequest(ctx, PerformRequestOptions{
|
|
Method: "GET",
|
|
Path: path,
|
|
Params: params,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Return operation response
|
|
ret := new(XpackWatcherGetWatchResponse)
|
|
if err := json.Unmarshal(res.Body, ret); err != nil {
|
|
return nil, err
|
|
}
|
|
return ret, nil
|
|
}
|
|
|
|
// XpackWatcherGetWatchResponse is the response of XpackWatcherGetWatchService.Do.
|
|
type XpackWatcherGetWatchResponse struct {
|
|
Found bool `json:"found"`
|
|
Id string `json:"_id"`
|
|
Status WatchStatus `json:"status"`
|
|
Watch Watch `json:"watch"`
|
|
}
|
|
|
|
type WatchStatus struct {
|
|
State map[string]interface{} `json:"state"`
|
|
Actions map[string]map[string]interface{} `json:"actions"`
|
|
Version int `json:"version"`
|
|
}
|
|
|
|
type Watch struct {
|
|
Input map[string]map[string]interface{} `json:"input"`
|
|
Condition map[string]map[string]interface{} `json:"condition"`
|
|
Trigger map[string]map[string]interface{} `json:"trigger"`
|
|
Actions map[string]map[string]interface{} `json:"actions"`
|
|
}
|