-
Notifications
You must be signed in to change notification settings - Fork 0
/
domain.go
268 lines (237 loc) · 7.89 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
package namecheap
import (
"errors"
"net/url"
"strconv"
"strings"
)
const (
domainsGetList = "namecheap.domains.getList"
domainsGetInfo = "namecheap.domains.getInfo"
domainsCheck = "namecheap.domains.check"
domainsCreate = "namecheap.domains.create"
domainsTLDList = "namecheap.domains.getTldList"
domainsRenew = "namecheap.domains.renew"
// Domain `ListType` Filter
// https://www.namecheap.com/support/api/methods/domains/get-list.aspx
ALL = "ALL"
EXPIRING = "EXPIRING"
EXPIRED = "EXPIRED"
// Domain `SortBy` Filter
// https://www.namecheap.com/support/api/methods/domains/get-list.aspx
NAME_ASC = "NAME"
NAME_DESC = "NAME_DESC"
EXPIRE_DATE_ASC = "EXPIREDATE"
EXPIRE_DATE_DESC = "EXPIREDATE_DESC"
CREATE_DATE_ASC = "CREATEDATE"
CREATE_DATE_DESC = "CREATEDATE_DESC"
)
// DomainGetListResult represents the data returned by 'domains.getList'
type DomainGetListResult struct {
ID int `xml:"ID,attr"`
Name string `xml:"Name,attr"`
User string `xml:"User,attr"`
Created string `xml:"Created,attr"`
Expires string `xml:"Expires,attr"`
IsExpired bool `xml:"IsExpired,attr"`
IsLocked bool `xml:"IsLocked,attr"`
AutoRenew bool `xml:"AutoRenew,attr"`
WhoisGuard string `xml:"WhoisGuard,attr"`
}
type Paging struct {
TotalItems uint `xml:"TotalItems,attr"`
CurrentPage uint `xml:"CurrentPage,attr"`
PageSize uint `xml:"PageSize,attr"`
}
// DomainInfo represents the data returned by 'domains.getInfo'
type DomainInfo struct {
ID int `xml:"ID,attr"`
Name string `xml:"DomainName,attr"`
Owner string `xml:"OwnerName,attr"`
Created string `xml:"DomainDetails>CreatedDate"`
Expires string `xml:"DomainDetails>ExpiredDate"`
IsExpired bool `xml:"IsExpired,attr"`
IsLocked bool `xml:"IsLocked,attr"`
AutoRenew bool `xml:"AutoRenew,attr"`
DNSDetails DNSDetails `xml:"DnsDetails"`
Whoisguard Whoisguard `xml:"Whoisguard"`
}
type DNSDetails struct {
ProviderType string `xml:"ProviderType,attr"`
IsUsingOurDNS bool `xml:"IsUsingOurDNS,attr"`
Nameservers []string `xml:"Nameserver"`
}
type Whoisguard struct {
Enabled bool `xml:"Enabled,attr"`
ID int64 `xml:"ID"`
ExpiredDate string `xml:"ExpiredDate"`
}
type DomainCheckResult struct {
Domain string `xml:"Domain,attr"`
Available bool `xml:"Available,attr"`
IsPremiumName bool `xml:"IsPremiumName,attr"`
PremiumRegistrationPrice float64 `xml:"PremiumRegistrationPrice,attr"`
PremiumRenewalPrice float64 `xml:"PremiumRenewalPrice,attr"`
PremiumRestorePrice float64 `xml:"PremiumRestorePrice,attr"`
PremiumTransferPrice float64 `xml:"PremiumTransferPrice,attr"`
IcannFee float64 `xml:"IcannFee,attr"`
}
type TLDListResult struct {
Name string `xml:"Name,attr"`
}
type DomainCreateResult struct {
Domain string `xml:"Domain,attr"`
Registered bool `xml:"Registered,attr"`
ChargedAmount float64 `xml:"ChargedAmount,attr"`
DomainID int `xml:"DomainID,attr"`
OrderID int `xml:"OrderID,attr"`
TransactionID int `xml:"TransactionID,attr"`
WhoisguardEnable bool `xml:"WhoisguardEnable,attr"`
NonRealTimeDomain bool `xml:"NonRealTimeDomain,attr"`
}
type DomainRenewResult struct {
DomainID int `xml:"DomainID,attr"`
Name string `xml:"DomainName,attr"`
Renewed bool `xml:"Renew,attr"`
ChargedAmount float64 `xml:"ChargedAmount,attr"`
OrderID int `xml:"OrderID,attr"`
TransactionID int `xml:"TransactionID,attr"`
ExpireDate string `xml:"DomainDetails>ExpiredDate"`
}
type DomainCreateOption struct {
AddFreeWhoisguard bool
WGEnabled bool
Nameservers []string
}
func (client *Client) DomainCount() (uint, error) {
r, err := client.DomainsListAPIRequest(1, 1, "", "", "")
if err != nil {
return 0, err
}
return r.TotalItems, err
}
// TODO: These function names are kinda awful, a overhaul of the library should address renaming these to give
// a more readable API and library usage that is intiutive, then alias to make it backwards compatible
func (client *Client) DomainsGetList(currentPage uint, pageSize uint) ([]DomainGetListResult, Paging, error) {
r, err := client.DomainsListAPIRequest(currentPage, pageSize, "", "", "")
p := Paging{
TotalItems: r.TotalItems,
CurrentPage: r.CurrentPage,
PageSize: r.PageSize,
}
return r.Domains, p, err
}
func (client *Client) DomainsGetCompleteList() (domains []DomainGetListResult, err error) {
r, err := client.DomainsListAPIRequest(1, maxPerPage, "", "", "")
if err != nil {
return nil, err
}
// Load first 100 items into map
domains = append(domains, r.Domains...)
if r.TotalItems > maxPerPage {
remaining := (r.TotalItems - maxPerPage)
quotient := (remaining / maxPerPage)
if quotient != 0 {
// Start from the second page because the initial apge is scrapped to get the
// initial paging object and so +2 is added to quotient to request each page, and
// an additonal +1 to request the remainder
for currentPage := 2; uint(currentPage) < (quotient + 3); currentPage++ {
r, err = client.DomainsListAPIRequest(uint(currentPage), maxPerPage, "", "", "")
if err != nil {
return domains, err
}
domains = append(domains, r.Domains...)
}
} else {
r, err = client.DomainsListAPIRequest(2, maxPerPage, "", "", "")
if err != nil {
return domains, err
}
domains = append(domains, r.Domains...)
}
}
return domains, nil
}
func (client *Client) DomainGetInfo(domainName string) (*DomainInfo, error) {
requestInfo := &ApiRequest{
command: domainsGetInfo,
method: "POST",
params: url.Values{},
}
requestInfo.params.Set("DomainName", domainName)
r, err := client.do(requestInfo)
if err != nil {
return nil, err
}
return r.DomainInfo, nil
}
func (client *Client) DomainsCheck(domainNames ...string) ([]DomainCheckResult, error) {
requestInfo := &ApiRequest{
command: domainsCheck,
method: "POST",
params: url.Values{},
}
requestInfo.params.Set("DomainList", strings.Join(domainNames, ","))
r, err := client.do(requestInfo)
if err != nil {
return nil, err
}
return r.DomainsCheck, nil
}
func (client *Client) DomainsTLDList(currentPage int) ([]TLDListResult, Paging, error) {
requestInfo := &ApiRequest{
command: domainsTLDList,
method: "POST",
params: url.Values{},
}
r, err := client.do(requestInfo)
if err != nil {
return nil, Paging{}, err
}
return r.TLDList, Paging{TotalItems: r.TotalItems, CurrentPage: r.CurrentPage, PageSize: r.PageSize}, nil
}
func (client *Client) DomainCreate(domainName string, years int, options ...DomainCreateOption) (*DomainCreateResult, error) {
if client.Registrant == nil {
return nil, errors.New("Registrant information on client cannot be empty")
}
requestInfo := &ApiRequest{
command: domainsCreate,
method: "POST",
params: url.Values{},
}
requestInfo.params.Set("DomainName", domainName)
requestInfo.params.Set("Years", strconv.Itoa(years))
for _, opt := range options {
if opt.AddFreeWhoisguard {
requestInfo.params.Set("AddFreeWhoisguard", "yes")
}
if opt.WGEnabled {
requestInfo.params.Set("WGEnabled", "yes")
}
if len(opt.Nameservers) > 0 {
requestInfo.params.Set("Nameservers", strings.Join(opt.Nameservers, ","))
}
}
if err := client.Registrant.addValues(requestInfo.params); err != nil {
return nil, err
}
r, err := client.do(requestInfo)
if err != nil {
return nil, err
}
return r.DomainCreate, nil
}
func (client *Client) DomainRenew(domainName string, years int) (*DomainRenewResult, error) {
requestInfo := &ApiRequest{
command: domainsRenew,
method: "POST",
params: url.Values{},
}
requestInfo.params.Set("DomainName", domainName)
requestInfo.params.Set("Years", strconv.Itoa(years))
resp, err := client.do(requestInfo)
if err != nil {
return nil, err
}
return resp.DomainRenew, nil
}