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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
package configgtm
import (
"fmt"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/client-v1"
"net/http"
"strings"
)
//
// Support gtm domains thru Edgegrid
// Based on 1.3 Schema
//
// The Domain data structure represents a GTM domain
type Domain struct {
Name string `json:"name"`
Type string `json:"type"`
AsMaps []*AsMap `json:"asMaps,omitempty"`
Resources []*Resource `json:"resources,omitempty"`
DefaultUnreachableThreshold float32 `json:"defaultUnreachableThreshold,omitempty"`
EmailNotificationList []string `json:"emailNotificationList,omitempty"`
MinPingableRegionFraction float32 `json:"minPingableRegionFraction,omitempty"`
DefaultTimeoutPenalty int `json:"defaultTimeoutPenalty,omitempty"`
Datacenters []*Datacenter `json:"datacenters,omitempty"`
ServermonitorLivenessCount int `json:"servermonitorLivenessCount,omitempty"`
RoundRobinPrefix string `json:"roundRobinPrefix,omitempty"`
ServermonitorLoadCount int `json:"servermonitorLoadCount"`
PingInterval int `json:"pingInterval"`
MaxTTL int64 `json:"maxTTL,omitempty"`
LoadImbalancePercentage float64 `json:"loadImbalancePercentage,omitempty"`
DefaultHealthMax float64 `json:"defaultHealthMax,omitempty"`
LastModified string `json:"lastModified,omitempty"`
Status *ResponseStatus `json:"status,omitempty"`
MapUpdateInterval int `json:"mapUpdateInterval,omitempty"`
MaxProperties int `json:"maxProperties,omitempty"`
MaxResources int `json:"maxResources,omitempty"`
DefaultSslClientPrivateKey string `json:"defaultSslClientPrivateKey,omitempty"`
DefaultErrorPenalty int `json:"defaultErrorPenalty,omitempty"`
Links []*Link `json:"links,omitempty"`
Properties []*Property `json:"properties,omitempty"`
MaxTestTimeout float64 `json:"maxTestTimeout,omitempty"`
CnameCoalescingEnabled bool `json:"cnameCoalescingEnabled"`
DefaultHealthMultiplier int `json:"defaultHealthMultiplier"`
ServermonitorPool string `json:"servermonitorPool,omitempty"`
LoadFeedback bool `json:"loadFeedback"`
MinTTL int64 `json:"minTTL,omitempty"`
GeographicMaps []*GeoMap `json:"geographicMaps,omitempty"`
CidrMaps []*CidrMap `json:"cidrMaps,omitempty"`
DefaultMaxUnreachablePenalty int `json:"defaultMaxUnreachablePenalty,omitempty"`
DefaultHealthThreshold float64 `json:"defaultHealthThreshold,omitempty"`
LastModifiedBy string `json:"lastModifiedBy,omitempty"`
ModificationComments string `json:"modificationComments,omitempty"`
MinTestInterval int `json:"minTestInterval,omitempty"`
PingPacketSize int `json:"pingPacketSize,omitempty"`
DefaultSslClientCertificate string `json:"defaultSslClientCertificate,omitempty"`
}
type DomainsList struct {
DomainItems []*DomainItem `json:"items"`
}
// DomainItem is a DomainsList item
type DomainItem struct {
AcgId string `json:"acgId"`
LastModified string `json:"lastModified"`
Links []*Link `json:"links"`
Name string `json:"name"`
Status string `json:"status"`
}
// NewDomain is a utility function that creates a new Domain object.
func NewDomain(domainName, domainType string) *Domain {
domain := &Domain{}
domain.Name = domainName
domain.Type = domainType
return domain
}
// GetStatus retrieves current status for the given domainname.
func GetDomainStatus(domainName string) (*ResponseStatus, error) {
stat := &ResponseStatus{}
req, err := client.NewRequest(
Config,
"GET",
fmt.Sprintf("/config-gtm/v1/domains/%s/status/current", domainName),
nil,
)
if err != nil {
return nil, err
}
setVersionHeader(req, schemaVersion)
printHttpRequest(req, true)
res, err := client.Do(Config, req)
if err != nil {
return nil, err
}
printHttpResponse(res, true)
if client.IsError(res) && res.StatusCode != 404 {
return nil, client.NewAPIError(res)
} else if res.StatusCode == 404 {
return nil, CommonError{entityName: "Domain", name: domainName}
} else {
err = client.BodyJSON(res, stat)
if err != nil {
return nil, err
}
return stat, nil
}
}
// ListDomains retrieves all Domains.
func ListDomains() ([]*DomainItem, error) {
domains := &DomainsList{}
req, err := client.NewRequest(
Config,
"GET",
"/config-gtm/v1/domains/",
nil,
)
if err != nil {
return nil, err
}
setVersionHeader(req, schemaVersion)
printHttpRequest(req, true)
res, err := client.Do(Config, req)
if err != nil {
return nil, err
}
printHttpResponse(res, true)
if client.IsError(res) && res.StatusCode != 404 {
return nil, client.NewAPIError(res)
} else if res.StatusCode == 404 {
return nil, CommonError{entityName: "Domain"}
} else {
err = client.BodyJSON(res, domains)
if err != nil {
return nil, err
}
return domains.DomainItems, nil
}
}
// GetDomain retrieves a Domain with the given domainname.
func GetDomain(domainName string) (*Domain, error) {
domain := NewDomain(domainName, "basic")
req, err := client.NewRequest(
Config,
"GET",
fmt.Sprintf("/config-gtm/v1/domains/%s", domainName),
nil,
)
if err != nil {
return nil, err
}
setVersionHeader(req, schemaVersion)
printHttpRequest(req, true)
res, err := client.Do(Config, req)
if err != nil {
return nil, err
}
printHttpResponse(res, true)
if client.IsError(res) && res.StatusCode != 404 {
return nil, client.NewAPIError(res)
} else if res.StatusCode == 404 {
return nil, CommonError{entityName: "Domain", name: domainName}
} else {
err = client.BodyJSON(res, domain)
if err != nil {
return nil, err
}
return domain, nil
}
}
// Save method; Create or Update
func (domain *Domain) save(queryArgs map[string]string, req *http.Request) (*DomainResponse, error) {
// set schema version
setVersionHeader(req, schemaVersion)
// Look for optional args
if len(queryArgs) > 0 {
q := req.URL.Query()
if val, ok := queryArgs["contractId"]; ok {
q.Add("contractId", strings.TrimPrefix(val, "ctr_"))
}
if val, ok := queryArgs["gid"]; ok {
q.Add("gid", strings.TrimPrefix(val, "grp_"))
}
req.URL.RawQuery = q.Encode()
}
printHttpRequest(req, true)
res, err := client.Do(Config, req)
// Network error
if err != nil {
return nil, CommonError{
entityName: "Domain",
name: domain.Name,
httpErrorMessage: err.Error(),
err: err,
}
}
printHttpResponse(res, true)
// API error
if client.IsError(res) {
err := client.NewAPIError(res)
return nil, CommonError{entityName: "Domain", name: domain.Name, apiErrorMessage: err.Detail, err: err}
}
// TODO: What validation can we do? E.g. if not equivalent there was a concurrent change...
responseBody := &DomainResponse{}
// Unmarshall whole response body in case want status
err = client.BodyJSON(res, responseBody)
if err != nil {
return nil, err
}
return responseBody, nil
}
// Create is a method applied to a domain object resulting in creation.
func (domain *Domain) Create(queryArgs map[string]string) (*DomainResponse, error) {
req, err := client.NewJSONRequest(
Config,
"POST",
fmt.Sprintf("/config-gtm/v1/domains/"),
domain,
)
if err != nil {
return nil, err
}
return domain.save(queryArgs, req)
}
// Update is a method applied to a domain object resulting in an update.
func (domain *Domain) Update(queryArgs map[string]string) (*ResponseStatus, error) {
// Any validation to do?
req, err := client.NewJSONRequest(
Config,
"PUT",
fmt.Sprintf("/config-gtm/v1/domains/%s", domain.Name),
domain,
)
if err != nil {
return nil, err
}
stat, err := domain.save(queryArgs, req)
if err != nil {
return nil, err
}
return stat.Status, err
}
// Delete is a method applied to a domain object resulting in removal.
func (domain *Domain) Delete() (*ResponseStatus, error) {
req, err := client.NewRequest(
Config,
"DELETE",
fmt.Sprintf("/config-gtm/v1/domains/%s", domain.Name),
nil,
)
if err != nil {
return nil, err
}
setVersionHeader(req, schemaVersion)
printHttpRequest(req, true)
res, err := client.Do(Config, req)
if err != nil {
return nil, err
}
// Network error
if err != nil {
return nil, CommonError{
entityName: "Domain",
name: domain.Name,
httpErrorMessage: err.Error(),
err: err,
}
}
printHttpResponse(res, true)
// API error
if client.IsError(res) {
err := client.NewAPIError(res)
return nil, CommonError{entityName: "Domain", name: domain.Name, apiErrorMessage: err.Detail, err: err}
}
responseBody := &ResponseBody{}
// Unmarshall whole response body in case want status
err = client.BodyJSON(res, responseBody)
if err != nil {
return nil, err
}
return responseBody.Status, nil
}
|