mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
112 lines
2.1 KiB
Go
112 lines
2.1 KiB
Go
package gapi
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io/ioutil"
|
|
)
|
|
|
|
type AlertNotification struct {
|
|
Id int64 `json:"id,omitempty"`
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
IsDefault bool `json:"isDefault"`
|
|
Settings interface{} `json:"settings"`
|
|
}
|
|
|
|
func (c *Client) AlertNotification(id int64) (*AlertNotification, error) {
|
|
path := fmt.Sprintf("/api/alert-notifications/%d", id)
|
|
req, err := c.newRequest("GET", path, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
resp, err := c.Do(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if resp.StatusCode != 200 {
|
|
return nil, errors.New(resp.Status)
|
|
}
|
|
|
|
data, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
result := &AlertNotification{}
|
|
err = json.Unmarshal(data, &result)
|
|
return result, err
|
|
}
|
|
|
|
func (c *Client) NewAlertNotification(a *AlertNotification) (int64, error) {
|
|
data, err := json.Marshal(a)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
req, err := c.newRequest("POST", "/api/alert-notifications", bytes.NewBuffer(data))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
resp, err := c.Do(req)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
if resp.StatusCode != 200 {
|
|
return 0, errors.New(resp.Status)
|
|
}
|
|
|
|
data, err = ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
result := struct {
|
|
Id int64 `json:"id"`
|
|
}{}
|
|
err = json.Unmarshal(data, &result)
|
|
return result.Id, err
|
|
}
|
|
|
|
func (c *Client) UpdateAlertNotification(a *AlertNotification) error {
|
|
path := fmt.Sprintf("/api/alert-notifications/%d", a.Id)
|
|
data, err := json.Marshal(a)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
req, err := c.newRequest("PUT", path, bytes.NewBuffer(data))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
resp, err := c.Do(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if resp.StatusCode != 200 {
|
|
return errors.New(resp.Status)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *Client) DeleteAlertNotification(id int64) error {
|
|
path := fmt.Sprintf("/api/alert-notifications/%d", id)
|
|
req, err := c.newRequest("DELETE", path, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
resp, err := c.Do(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if resp.StatusCode != 200 {
|
|
return errors.New(resp.Status)
|
|
}
|
|
|
|
return nil
|
|
}
|