blob: e75ca321a9240aaa5d0a3884e248f92acc474db7 [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"
"strconv"
"github.com/apache/trafficcontrol/lib/go-tc"
"github.com/apache/trafficcontrol/traffic_ops/toclientlib"
)
const (
// API_REGIONS 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_REGIONS = apiBase + "/regions"
APIRegions = "/regions"
)
// CreateRegion creates a Region.
func (to *Session) CreateRegion(region tc.Region) (tc.Alerts, toclientlib.ReqInf, error) {
if region.Division == 0 && region.DivisionName != "" {
divisions, _, err := to.GetDivisionByNameWithHdr(region.DivisionName, nil)
if err != nil {
return tc.Alerts{}, toclientlib.ReqInf{}, err
}
if len(divisions) == 0 {
return tc.Alerts{}, toclientlib.ReqInf{}, errors.New("no division with name " + region.DivisionName)
}
region.Division = divisions[0].ID
}
var alerts tc.Alerts
reqInf, err := to.post(APIRegions, region, nil, &alerts)
return alerts, reqInf, err
}
func (to *Session) UpdateRegionByIDWithHdr(id int, region tc.Region, header http.Header) (tc.Alerts, toclientlib.ReqInf, error) {
route := fmt.Sprintf("%s/%d", APIRegions, id)
var alerts tc.Alerts
reqInf, err := to.put(route, region, header, &alerts)
return alerts, reqInf, err
}
// UpdateRegionByID updates a Region by ID.
// Deprecated: UpdateRegionByID will be removed in 6.0. Use UpdateRegionByIDWithHdr.
func (to *Session) UpdateRegionByID(id int, region tc.Region) (tc.Alerts, toclientlib.ReqInf, error) {
return to.UpdateRegionByIDWithHdr(id, region, nil)
}
func (to *Session) GetRegionsWithHdr(header http.Header) ([]tc.Region, toclientlib.ReqInf, error) {
var data tc.RegionsResponse
reqInf, err := to.get(APIRegions, header, &data)
return data.Response, reqInf, err
}
// GetRegions returns a list of regions.
// Deprecated: GetRegions will be removed in 6.0. Use GetRegionsWithHdr.
func (to *Session) GetRegions() ([]tc.Region, toclientlib.ReqInf, error) {
return to.GetRegionsWithHdr(nil)
}
func (to *Session) GetRegionByIDWithHdr(id int, header http.Header) ([]tc.Region, toclientlib.ReqInf, error) {
route := fmt.Sprintf("%s?id=%d", APIRegions, id)
var data tc.RegionsResponse
reqInf, err := to.get(route, header, &data)
return data.Response, reqInf, err
}
// GetRegionByID GETs a Region by the Region ID.
// Deprecated: GetRegionByID will be removed in 6.0. Use GetRegionByIDWithHdr.
func (to *Session) GetRegionByID(id int) ([]tc.Region, toclientlib.ReqInf, error) {
return to.GetRegionByIDWithHdr(id, nil)
}
func (to *Session) GetRegionByNameWithHdr(name string, header http.Header) ([]tc.Region, toclientlib.ReqInf, error) {
route := fmt.Sprintf("%s?name=%s", APIRegions, url.QueryEscape(name))
var data tc.RegionsResponse
reqInf, err := to.get(route, header, &data)
return data.Response, reqInf, err
}
// GetRegionByName GETs a Region by the Region name.
// Deprecated: GetRegionByName will be removed in 6.0. Use GetRegionByNameHdr.
func (to *Session) GetRegionByName(name string) ([]tc.Region, toclientlib.ReqInf, error) {
return to.GetRegionByNameWithHdr(name, nil)
}
// DeleteRegionByID DELETEs a Region by ID.
func (to *Session) DeleteRegionByID(id int) (tc.Alerts, toclientlib.ReqInf, error) {
route := fmt.Sprintf("%s?id=%d", APIRegions, id)
var alerts tc.Alerts
reqInf, err := to.del(route, nil, &alerts)
return alerts, reqInf, err
}
// DeleteRegion lets you DELETE a Region. Only 1 parameter is required, not both.
func (to *Session) DeleteRegion(id *int, name *string) (tc.Alerts, toclientlib.ReqInf, error) {
v := url.Values{}
if id != nil {
v.Add("id", strconv.Itoa(*id))
}
if name != nil {
v.Add("name", *name)
}
uri := "/regions"
if qStr := v.Encode(); len(qStr) > 0 {
uri = fmt.Sprintf("%s?%s", uri, qStr)
}
var alerts tc.Alerts
reqInf, err := to.del(uri, nil, &alerts)
return alerts, reqInf, err
}