forked from McKael/madon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomain.go
52 lines (46 loc) · 1.58 KB
/
domain.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
43
44
45
46
47
48
49
50
51
52
/*
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"
)
// GetBlockedDomains returns the current user blocked domains
// If lopt.All is true, several requests will be made until the API server
// has nothing to return.
func (mc *Client) GetBlockedDomains(lopt *LimitParams) ([]DomainName, error) {
const endPoint = "domain_blocks"
var links apiLinks
var domains []DomainName
if err := mc.apiCall("v1/"+endPoint, rest.Get, nil, lopt, &links, &domains); err != nil {
return nil, err
}
if lopt != nil { // Fetch more pages to reach our limit
var domainSlice []DomainName
for (lopt.All || lopt.Limit > len(domains)) && links.next != nil {
newlopt := links.next
links = apiLinks{}
if err := mc.apiCall("v1/"+endPoint, rest.Get, nil, newlopt, &links, &domainSlice); err != nil {
return nil, err
}
domains = append(domains, domainSlice...)
domainSlice = domainSlice[:0] // Clear struct
}
}
return domains, nil
}
// BlockDomain blocks the specified domain
func (mc *Client) BlockDomain(domain DomainName) error {
const endPoint = "domain_blocks"
params := make(apiCallParams)
params["domain"] = string(domain)
return mc.apiCall("v1/"+endPoint, rest.Post, params, nil, nil, nil)
}
// UnblockDomain unblocks the specified domain
func (mc *Client) UnblockDomain(domain DomainName) error {
const endPoint = "domain_blocks"
params := make(apiCallParams)
params["domain"] = string(domain)
return mc.apiCall("v1/"+endPoint, rest.Delete, params, nil, nil, nil)
}