blob: a7fddab8d8a320a0d6c1fa1fac899b2c492ce832 [file] [log] [blame]
package client
/*
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.
*/
import (
"fmt"
"github.com/apache/trafficcontrol/lib/go-tc"
"github.com/apache/trafficcontrol/traffic_ops/toclientlib"
)
// apiTenants is the API version-relative path to the /tenants API endpoint.
const apiTenants = "/tenants"
// apiTenantID is the API version-relative path to the /tenants/{{ID}} API endpoint.
const apiTenantID = apiTenants + "/%d"
// GetTenants retrieves all Tenants stored in Traffic Ops.
func (to *Session) GetTenants(opts RequestOptions) (tc.GetTenantsResponse, toclientlib.ReqInf, error) {
var data tc.GetTenantsResponse
reqInf, err := to.get(apiTenants, opts, &data)
return data, reqInf, err
}
// CreateTenant creates the Tenant it's passed.
func (to *Session) CreateTenant(t tc.Tenant, opts RequestOptions) (tc.TenantResponse, toclientlib.ReqInf, error) {
if t.ParentID == 0 && t.ParentName != "" {
parentOpts := NewRequestOptions()
parentOpts.QueryParameters.Set("name", t.ParentName)
tenant, reqInf, err := to.GetTenants(parentOpts)
if err != nil {
return tc.TenantResponse{Alerts: tenant.Alerts}, reqInf, err
}
if len(tenant.Response) < 1 {
return tc.TenantResponse{Alerts: tenant.Alerts}, reqInf, fmt.Errorf("no Tenant could be found for Parent Tenant '%s'", t.ParentName)
}
t.ParentID = tenant.Response[0].ID
}
var data tc.TenantResponse
reqInf, err := to.post(apiTenants, opts, t, &data)
return data, reqInf, err
}
// UpdateTenant replaces the Tenant identified by 'id' with the one provided.
func (to *Session) UpdateTenant(id int, t tc.Tenant, opts RequestOptions) (tc.TenantResponse, toclientlib.ReqInf, error) {
var data tc.TenantResponse
reqInf, err := to.put(fmt.Sprintf(apiTenantID, id), opts, t, &data)
return data, reqInf, err
}
// DeleteTenant deletes the Tenant matching the ID it's passed.
func (to *Session) DeleteTenant(id int, opts RequestOptions) (tc.Alerts, toclientlib.ReqInf, error) {
var data tc.Alerts
reqInf, err := to.del(fmt.Sprintf(apiTenantID, id), opts, &data)
return data, reqInf, err
}