-
Notifications
You must be signed in to change notification settings - Fork 13
/
instance.go
42 lines (36 loc) · 1.18 KB
/
instance.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
Copyright 2017-2018 Mikael Berthe
Licensed under the MIT license. Please see the LICENSE file is this directory.
*/
package madon
import (
"github.com/sendgrid/rest"
)
// GetCurrentInstance returns current instance information
func (mc *Client) GetCurrentInstance() (*Instance, error) {
var i Instance
if err := mc.apiCall("v1/instance", rest.Get, nil, nil, nil, &i); err != nil {
return nil, err
}
return &i, nil
}
// GetInstancePeers returns current instance peers
// The peers are defined as the domains of users the instance has previously
// resolved.
func (mc *Client) GetInstancePeers() ([]InstancePeer, error) {
var peers []InstancePeer
if err := mc.apiCall("v1/instance/peers", rest.Get, nil, nil, nil, &peers); err != nil {
return nil, err
}
return peers, nil
}
// GetInstanceActivity returns current instance activity
// The activity contains the counts of active users, locally posted statuses,
// and new registrations in weekly buckets.
func (mc *Client) GetInstanceActivity() ([]WeekActivity, error) {
var activity []WeekActivity
if err := mc.apiCall("v1/instance/activity", rest.Get, nil, nil, nil, &activity); err != nil {
return nil, err
}
return activity, nil
}