191 lines
5.3 KiB
Go
191 lines
5.3 KiB
Go
|
// Copyright 2016 Circonus, Inc. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
// Acknowledgement API support - Fetch, Create, Update, Delete*, and Search
|
||
|
// See: https://login.circonus.com/resources/api/calls/acknowledgement
|
||
|
// * : delete (cancel) by updating with AcknowledgedUntil set to 0
|
||
|
|
||
|
package api
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"net/url"
|
||
|
"regexp"
|
||
|
|
||
|
"github.com/circonus-labs/circonus-gometrics/api/config"
|
||
|
)
|
||
|
|
||
|
// Acknowledgement defines a acknowledgement. See https://login.circonus.com/resources/api/calls/acknowledgement for more information.
|
||
|
type Acknowledgement struct {
|
||
|
AcknowledgedBy string `json:"_acknowledged_by,omitempty"` // string
|
||
|
AcknowledgedOn uint `json:"_acknowledged_on,omitempty"` // uint
|
||
|
AcknowledgedUntil interface{} `json:"acknowledged_until,omitempty"` // NOTE received as uint; can be set using string or uint
|
||
|
Active bool `json:"_active,omitempty"` // bool
|
||
|
AlertCID string `json:"alert,omitempty"` // string
|
||
|
CID string `json:"_cid,omitempty"` // string
|
||
|
LastModified uint `json:"_last_modified,omitempty"` // uint
|
||
|
LastModifiedBy string `json:"_last_modified_by,omitempty"` // string
|
||
|
Notes string `json:"notes,omitempty"` // string
|
||
|
}
|
||
|
|
||
|
// NewAcknowledgement returns new Acknowledgement (with defaults, if applicable).
|
||
|
func NewAcknowledgement() *Acknowledgement {
|
||
|
return &Acknowledgement{}
|
||
|
}
|
||
|
|
||
|
// FetchAcknowledgement retrieves acknowledgement with passed cid.
|
||
|
func (a *API) FetchAcknowledgement(cid CIDType) (*Acknowledgement, error) {
|
||
|
if cid == nil || *cid == "" {
|
||
|
return nil, fmt.Errorf("Invalid acknowledgement CID [none]")
|
||
|
}
|
||
|
|
||
|
acknowledgementCID := string(*cid)
|
||
|
|
||
|
matched, err := regexp.MatchString(config.AcknowledgementCIDRegex, acknowledgementCID)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if !matched {
|
||
|
return nil, fmt.Errorf("Invalid acknowledgement CID [%s]", acknowledgementCID)
|
||
|
}
|
||
|
|
||
|
result, err := a.Get(acknowledgementCID)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
if a.Debug {
|
||
|
a.Log.Printf("[DEBUG] acknowledgement fetch, received JSON: %s", string(result))
|
||
|
}
|
||
|
|
||
|
acknowledgement := &Acknowledgement{}
|
||
|
if err := json.Unmarshal(result, acknowledgement); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return acknowledgement, nil
|
||
|
}
|
||
|
|
||
|
// FetchAcknowledgements retrieves all acknowledgements available to the API Token.
|
||
|
func (a *API) FetchAcknowledgements() (*[]Acknowledgement, error) {
|
||
|
result, err := a.Get(config.AcknowledgementPrefix)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
var acknowledgements []Acknowledgement
|
||
|
if err := json.Unmarshal(result, &acknowledgements); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return &acknowledgements, nil
|
||
|
}
|
||
|
|
||
|
// UpdateAcknowledgement updates passed acknowledgement.
|
||
|
func (a *API) UpdateAcknowledgement(cfg *Acknowledgement) (*Acknowledgement, error) {
|
||
|
if cfg == nil {
|
||
|
return nil, fmt.Errorf("Invalid acknowledgement config [nil]")
|
||
|
}
|
||
|
|
||
|
acknowledgementCID := string(cfg.CID)
|
||
|
|
||
|
matched, err := regexp.MatchString(config.AcknowledgementCIDRegex, acknowledgementCID)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if !matched {
|
||
|
return nil, fmt.Errorf("Invalid acknowledgement CID [%s]", acknowledgementCID)
|
||
|
}
|
||
|
|
||
|
jsonCfg, err := json.Marshal(cfg)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
if a.Debug {
|
||
|
a.Log.Printf("[DEBUG] acknowledgement update, sending JSON: %s", string(jsonCfg))
|
||
|
}
|
||
|
|
||
|
result, err := a.Put(acknowledgementCID, jsonCfg)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
acknowledgement := &Acknowledgement{}
|
||
|
if err := json.Unmarshal(result, acknowledgement); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return acknowledgement, nil
|
||
|
}
|
||
|
|
||
|
// CreateAcknowledgement creates a new acknowledgement.
|
||
|
func (a *API) CreateAcknowledgement(cfg *Acknowledgement) (*Acknowledgement, error) {
|
||
|
if cfg == nil {
|
||
|
return nil, fmt.Errorf("Invalid acknowledgement config [nil]")
|
||
|
}
|
||
|
|
||
|
jsonCfg, err := json.Marshal(cfg)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
result, err := a.Post(config.AcknowledgementPrefix, jsonCfg)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
if a.Debug {
|
||
|
a.Log.Printf("[DEBUG] acknowledgement create, sending JSON: %s", string(jsonCfg))
|
||
|
}
|
||
|
|
||
|
acknowledgement := &Acknowledgement{}
|
||
|
if err := json.Unmarshal(result, acknowledgement); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return acknowledgement, nil
|
||
|
}
|
||
|
|
||
|
// SearchAcknowledgements returns acknowledgements matching
|
||
|
// the specified search query and/or filter. If nil is passed for
|
||
|
// both parameters all acknowledgements will be returned.
|
||
|
func (a *API) SearchAcknowledgements(searchCriteria *SearchQueryType, filterCriteria *SearchFilterType) (*[]Acknowledgement, error) {
|
||
|
q := url.Values{}
|
||
|
|
||
|
if searchCriteria != nil && *searchCriteria != "" {
|
||
|
q.Set("search", string(*searchCriteria))
|
||
|
}
|
||
|
|
||
|
if filterCriteria != nil && len(*filterCriteria) > 0 {
|
||
|
for filter, criteria := range *filterCriteria {
|
||
|
for _, val := range criteria {
|
||
|
q.Add(filter, val)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if q.Encode() == "" {
|
||
|
return a.FetchAcknowledgements()
|
||
|
}
|
||
|
|
||
|
reqURL := url.URL{
|
||
|
Path: config.AcknowledgementPrefix,
|
||
|
RawQuery: q.Encode(),
|
||
|
}
|
||
|
|
||
|
result, err := a.Get(reqURL.String())
|
||
|
if err != nil {
|
||
|
return nil, fmt.Errorf("[ERROR] API call error %+v", err)
|
||
|
}
|
||
|
|
||
|
var acknowledgements []Acknowledgement
|
||
|
if err := json.Unmarshal(result, &acknowledgements); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return &acknowledgements, nil
|
||
|
}
|