blob: e387cc7fe3d1471d89a9078fa196cc52fb1e8dce [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 (
"encoding/json"
"fmt"
"net/http"
"net/url"
"github.com/apache/trafficcontrol/lib/go-tc"
"github.com/apache/trafficcontrol/traffic_ops/toclientlib"
)
const (
// API_SNAPSHOT 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_SNAPSHOT = apiBase + "/snapshot"
APISnapshot = "/snapshot"
)
type OuterResponse struct {
Response json.RawMessage `json:"response"`
}
// GetCRConfig returns the raw JSON bytes of the CRConfig from Traffic Ops, and whether the bytes were from the client's internal cache.
func (to *Session) GetCRConfig(cdn string) ([]byte, toclientlib.ReqInf, error) {
uri := `/cdns/` + cdn + `/snapshot`
bts := []byte{}
reqInf, err := to.get(uri, nil, &bts)
if err != nil {
return nil, reqInf, err
}
resp := OuterResponse{}
if err := json.Unmarshal(bts, &resp); err != nil {
return nil, reqInf, err
}
return resp.Response, reqInf, nil
}
func (to *Session) SnapshotCRConfigWithHdr(cdn string, header http.Header) (toclientlib.ReqInf, error) {
uri := fmt.Sprintf("%s?cdn=%s", APISnapshot, url.QueryEscape(cdn))
resp := OuterResponse{}
reqInf, err := to.put(uri, nil, header, &resp)
return reqInf, err
}
// GetCRConfigNew returns the raw JSON bytes of the latest CRConfig from Traffic Ops, and whether the bytes were from the client's internal cache.
func (to *Session) GetCRConfigNew(cdn string) ([]byte, toclientlib.ReqInf, error) {
uri := `/cdns/` + cdn + `/snapshot/new`
bts := []byte{}
reqInf, err := to.get(uri, nil, &bts)
if err != nil {
return nil, reqInf, err
}
resp := OuterResponse{}
if err := json.Unmarshal(bts, &resp); err != nil {
return nil, reqInf, err
}
return resp.Response, reqInf, nil
}
// SnapshotCRConfig snapshots a CDN by name.
// Deprecated: SnapshotCRConfig will be removed in 6.0. Use SnapshotCRConfigWithHdr.
func (to *Session) SnapshotCRConfig(cdn string) (toclientlib.ReqInf, error) {
return to.SnapshotCRConfigWithHdr(cdn, nil)
}
// SnapshotCDNByID snapshots a CDN by ID.
func (to *Session) SnapshotCRConfigByID(id int) (tc.Alerts, toclientlib.ReqInf, error) {
url := fmt.Sprintf("%s?cdnID=%d", APISnapshot, id)
var alerts tc.Alerts
reqInf, err := to.put(url, nil, nil, &alerts)
return alerts, reqInf, err
}