-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
141 lines (112 loc) · 3.31 KB
/
client.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
// Package hostio contains a host.io API client.
package hostio
import (
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"strconv"
"time"
)
const defaultBaseURL = "https://host.io/api"
type Pager struct {
Limit int
Page int
}
// Client is a host.io API client.
type Client struct {
token string
baseURL *url.URL
HTTPClient *http.Client
}
// NewClient creates a new Client.
func NewClient(token string) *Client {
baseURL, _ := url.Parse(defaultBaseURL)
return &Client{
token: token,
baseURL: baseURL,
HTTPClient: &http.Client{Timeout: 5 * time.Second},
}
}
// Web Metadata scraped from a domain homepage.
// https://host.io/docs#apiwebdomain
func (c Client) Web(ctx context.Context, domain string) (*WebResponse, error) {
endpoint := c.baseURL.JoinPath("web", domain)
var apiResp WebResponse
err := c.do(ctx, endpoint, &apiResp)
if err != nil {
return nil, err
}
return &apiResp, nil
}
// DNS Get all the DNS records stored for a domain.
// https://host.io/docs#apidnsdomain
func (c Client) DNS(ctx context.Context, domain string) (*DNSResponse, error) {
endpoint := c.baseURL.JoinPath("dns", domain)
var apiResp DNSResponse
err := c.do(ctx, endpoint, &apiResp)
if err != nil {
return nil, err
}
return &apiResp, nil
}
// Related Get a count of the number of related domains for all supported lookups we offer.
// https://host.io/docs#apirelateddomain
func (c Client) Related(ctx context.Context, domain string) (*RelatedResponse, error) {
endpoint := c.baseURL.JoinPath("related", domain)
var apiResp RelatedResponse
err := c.do(ctx, endpoint, &apiResp)
if err != nil {
return nil, err
}
return &apiResp, nil
}
// Full A single endpoint that includes the data from /api/web, /api/dns, /api/related and IPinfo.
// https://host.io/docs#apifulldomain
func (c Client) Full(ctx context.Context, domain string) (*FullResponse, error) {
endpoint := c.baseURL.JoinPath("full", domain)
var apiResp FullResponse
err := c.do(ctx, endpoint, &apiResp)
if err != nil {
return nil, err
}
return &apiResp, nil
}
// Domains Get all domains associated with Field, and a count of the total.
// https://host.io/docs#apidomainsfieldvalue
func (c Client) Domains(ctx context.Context, field Field, value string, pager *Pager) (*DomainsResponse, error) {
endpoint := c.baseURL.JoinPath("domains", string(field), value)
if pager != nil {
query := endpoint.Query()
query.Set("limit", strconv.Itoa(pager.Limit))
query.Set("page", strconv.Itoa(pager.Page))
endpoint.RawQuery = query.Encode()
}
var apiResp DomainsResponse
err := c.do(ctx, endpoint, &apiResp)
if err != nil {
return nil, err
}
return &apiResp, nil
}
func (c Client) do(ctx context.Context, endpoint *url.URL, data interface{}) error {
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), http.NoBody)
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Accept", "application/json")
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", c.token))
resp, err := c.HTTPClient.Do(req)
if err != nil {
return err
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
data, _ := io.ReadAll(resp.Body)
return fmt.Errorf("%d: %s", resp.StatusCode, string(data))
}
return json.NewDecoder(resp.Body).Decode(data)
}