blob: a8a8788783cd41b782f8b6779878b1d45057db56 [file] [log] [blame]
/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package client
import (
"errors"
"fmt"
"net/http"
"net/url"
"github.com/apache/trafficcontrol/lib/go-tc"
"github.com/apache/trafficcontrol/traffic_ops/toclientlib"
)
const (
// API_STATIC_DNS_ENTRIES is Deprecated: will be removed in the next major version. Be aware this may not be the URI being requested, for clients created with Login and ClientOps.ForceLatestAPI false.
API_STATIC_DNS_ENTRIES = apiBase + "/staticdnsentries"
APIStaticDNSEntries = "/staticdnsentries"
)
func staticDNSEntryIDs(to *Session, sdns *tc.StaticDNSEntry) error {
if sdns.CacheGroupID == 0 && sdns.CacheGroupName != "" {
p, _, err := to.GetCacheGroupNullableByNameWithHdr(sdns.CacheGroupName, nil)
if err != nil {
return err
}
if len(p) == 0 {
return errors.New("no CacheGroup named " + sdns.CacheGroupName)
}
if p[0].ID == nil {
return errors.New("CacheGroup named " + sdns.CacheGroupName + " has a nil ID")
}
sdns.CacheGroupID = *p[0].ID
}
if sdns.DeliveryServiceID == 0 && sdns.DeliveryService != "" {
dses, _, err := to.GetDeliveryServiceByXMLIDNullableWithHdr(sdns.DeliveryService, nil)
if err != nil {
return err
}
if len(dses) == 0 {
return errors.New("no deliveryservice with name " + sdns.DeliveryService)
}
if dses[0].ID == nil {
return errors.New("Deliveryservice with name " + sdns.DeliveryService + " has a nil ID")
}
sdns.DeliveryServiceID = *dses[0].ID
}
if sdns.TypeID == 0 && sdns.Type != "" {
types, _, err := to.GetTypeByNameWithHdr(sdns.Type, nil)
if err != nil {
return err
}
if len(types) == 0 {
return errors.New("no type with name " + sdns.Type)
}
sdns.TypeID = types[0].ID
}
return nil
}
// CreateStaticDNSEntry creates a Static DNS Entry.
func (to *Session) CreateStaticDNSEntry(sdns tc.StaticDNSEntry) (tc.Alerts, toclientlib.ReqInf, error) {
// fill in missing IDs from names
var alerts tc.Alerts
err := staticDNSEntryIDs(to, &sdns)
if err != nil {
return alerts, toclientlib.ReqInf{CacheHitStatus: toclientlib.CacheHitStatusMiss}, err
}
reqInf, err := to.post(APIStaticDNSEntries, sdns, nil, &alerts)
return alerts, reqInf, err
}
func (to *Session) UpdateStaticDNSEntryByIDWithHdr(id int, sdns tc.StaticDNSEntry, header http.Header) (tc.Alerts, toclientlib.ReqInf, int, error) {
// fill in missing IDs from names
var alerts tc.Alerts
err := staticDNSEntryIDs(to, &sdns)
if err != nil {
return alerts, toclientlib.ReqInf{CacheHitStatus: toclientlib.CacheHitStatusMiss}, 0, err
}
route := fmt.Sprintf("%s?id=%d", APIStaticDNSEntries, id)
reqInf, err := to.put(route, sdns, header, &alerts)
return tc.Alerts{}, reqInf, reqInf.StatusCode, err
}
// UpdateStaticDNSEntryByID updates a Static DNS Entry by ID.
// Deprecated: UpdateStaticDNSEntryByID will be removed in 6.0. Use UpdateStaticDNSEntryByIDWithHdr.
func (to *Session) UpdateStaticDNSEntryByID(id int, sdns tc.StaticDNSEntry) (tc.Alerts, toclientlib.ReqInf, int, error) {
return to.UpdateStaticDNSEntryByIDWithHdr(id, sdns, nil)
}
func (to *Session) GetStaticDNSEntriesWithHdr(header http.Header) ([]tc.StaticDNSEntry, toclientlib.ReqInf, error) {
var data tc.StaticDNSEntriesResponse
reqInf, err := to.get(APIStaticDNSEntries, header, &data)
return data.Response, reqInf, err
}
// GetStaticDNSEntries returns a list of Static DNS Entrys.
// Deprecated: GetStaticDNSEntries will be removed in 6.0. Use GetStaticDNSEntriesWithHdr.
func (to *Session) GetStaticDNSEntries() ([]tc.StaticDNSEntry, toclientlib.ReqInf, error) {
return to.GetStaticDNSEntriesWithHdr(nil)
}
func (to *Session) GetStaticDNSEntryByIDWithHdr(id int, header http.Header) ([]tc.StaticDNSEntry, toclientlib.ReqInf, error) {
route := fmt.Sprintf("%s?id=%d", APIStaticDNSEntries, id)
var data tc.StaticDNSEntriesResponse
reqInf, err := to.get(route, header, &data)
return data.Response, reqInf, err
}
// GetStaticDNSEntryByID GETs a Static DNS Entry by the Static DNS Entry's ID.
// Deprecated: GetStaticDNSEntryByID will be removed in 6.0. Use GetStaticDNSEntryByIDWithHdr.
func (to *Session) GetStaticDNSEntryByID(id int) ([]tc.StaticDNSEntry, toclientlib.ReqInf, error) {
return to.GetStaticDNSEntryByIDWithHdr(id, nil)
}
func (to *Session) GetStaticDNSEntriesByHostWithHdr(host string, header http.Header) ([]tc.StaticDNSEntry, toclientlib.ReqInf, error) {
route := fmt.Sprintf("%s?host=%s", APIStaticDNSEntries, url.QueryEscape(host))
var data tc.StaticDNSEntriesResponse
reqInf, err := to.get(route, header, &data)
return data.Response, reqInf, err
}
// GetStaticDNSEntriesByHost GETs a Static DNS Entry by the Static DNS Entry's host.
// Deprecated: GetStaticDNSEntriesByHost will be removed in 6.0. Use GetStaticDNSEntriesByHostWithHdr.
func (to *Session) GetStaticDNSEntriesByHost(host string) ([]tc.StaticDNSEntry, toclientlib.ReqInf, error) {
return to.GetStaticDNSEntriesByHostWithHdr(host, nil)
}
// DeleteStaticDNSEntryByID DELETEs a Static DNS Entry by ID.
func (to *Session) DeleteStaticDNSEntryByID(id int) (tc.Alerts, toclientlib.ReqInf, error) {
route := fmt.Sprintf("%s?id=%d", APIStaticDNSEntries, id)
var alerts tc.Alerts
reqInf, err := to.del(route, nil, &alerts)
return alerts, reqInf, err
}