blob: dd5b75a08ec2f2c3a0d9cf845180d95b946e5e90 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 catalog
import (
"encoding/json"
"fmt"
"github.com/apache/brooklyn-client/models"
"github.com/apache/brooklyn-client/net"
)
func Icon(network *net.Network, itemId string) ([]byte, error) {
url := fmt.Sprintf("/v1/catalog/icon/%s", itemId)
body, err := network.SendGetRequest(url)
return body, err
}
func IconWithVersion(network *net.Network, itemId, version string) ([]byte, error) {
url := fmt.Sprintf("/v1/catalog/icon/%s/%s", itemId, version)
body, err := network.SendGetRequest(url)
return body, err
}
func GetEntityWithVersion(network *net.Network, entityId, version string) (models.CatalogEntitySummary, error) {
url := fmt.Sprintf("/v1/catalog/entities/%s/%s", entityId, version)
var catalogEntity models.CatalogEntitySummary
body, err := network.SendGetRequest(url)
if err != nil {
return catalogEntity, err
}
err = json.Unmarshal(body, &catalogEntity)
return catalogEntity, err
}
func DeleteEntityWithVersion(network *net.Network, entityId, version string) (string, error) {
url := fmt.Sprintf("/v1/catalog/entities/%s/%s", entityId, version)
body, err := network.SendDeleteRequest(url)
if err != nil {
return "", err
}
return string(body), nil
}
func GetEntity(network *net.Network, entityId string) (models.CatalogEntitySummary, error) {
url := fmt.Sprintf("/v1/catalog/entities/%s", entityId)
var catalogEntity models.CatalogEntitySummary
body, err := network.SendGetRequest(url)
if err != nil {
return catalogEntity, err
}
err = json.Unmarshal(body, &catalogEntity)
return catalogEntity, err
}
func DeleteEntity(network *net.Network, entityId string) (string, error) {
url := fmt.Sprintf("/v1/catalog/entities/%s", entityId)
body, err := network.SendDeleteRequest(url)
if err != nil {
return "", err
}
return string(body), nil
}
func GetPolicy(network *net.Network, policyId string) (models.CatalogItemSummary, error) {
url := fmt.Sprintf("/v1/catalog/policies/%s", policyId)
var catalogItem models.CatalogItemSummary
body, err := network.SendGetRequest(url)
if err != nil {
return catalogItem, err
}
err = json.Unmarshal(body, &catalogItem)
return catalogItem, err
}
func GetPolicyWithVersion(network *net.Network, policyId, version string) (models.CatalogItemSummary, error) {
url := fmt.Sprintf("/v1/catalog/policies/%s/%s", policyId)
var catalogItem models.CatalogItemSummary
body, err := network.SendGetRequest(url)
if err != nil {
return catalogItem, err
}
err = json.Unmarshal(body, &catalogItem)
return catalogItem, err
}
func DeletePolicyWithVersion(network *net.Network, policyId, version string) (string, error) {
url := fmt.Sprintf("/v1/catalog/policies/%s/%s", policyId)
body, err := network.SendDeleteRequest(url)
if err != nil {
return "", err
}
return string(body), nil
}
func GetApplication(network *net.Network, applicationId string) (models.CatalogEntitySummary, error) {
url := fmt.Sprintf("/v1/catalog/applications/%s", applicationId)
var catalogEntity models.CatalogEntitySummary
body, err := network.SendGetRequest(url)
if err != nil {
return catalogEntity, err
}
err = json.Unmarshal(body, &catalogEntity)
return catalogEntity, err
}
func GetApplicationWithVersion(network *net.Network, applicationId, version string) (models.CatalogEntitySummary, error) {
url := fmt.Sprintf("/v1/catalog/applications/%s/%s", applicationId, version)
var catalogEntity models.CatalogEntitySummary
body, err := network.SendGetRequest(url)
if err != nil {
return catalogEntity, err
}
err = json.Unmarshal(body, &catalogEntity)
return catalogEntity, err
}
func DeleteApplicationWithVersion(network *net.Network, applicationId, version string) (string, error) {
url := fmt.Sprintf("/v1/catalog/applications/%s/%s", applicationId, version)
body, err := network.SendDeleteRequest(url)
if err != nil {
return "", err
}
return string(body), nil
}
func Policies(network *net.Network) ([]models.CatalogPolicySummary, error) {
url := "/v1/catalog/policies"
var policies []models.CatalogPolicySummary
body, err := network.SendGetRequest(url)
if err != nil {
return policies, err
}
err = json.Unmarshal(body, &policies)
return policies, err
}
func Locations(network *net.Network) (models.CatalogLocationSummary, error) {
url := "/v1/catalog/locations"
var catalogLocation models.CatalogLocationSummary
body, err := network.SendGetRequest(url)
if err != nil {
return catalogLocation, err
}
err = json.Unmarshal(body, &catalogLocation)
return catalogLocation, err
}
func AddCatalog(network *net.Network, resource string) (string, error) {
url := "/v1/catalog"
body, err := network.SendPostResourceRequest(url, resource, "application/json")
if err != nil {
return "", err
}
return string(body), nil
}
func Reset(network *net.Network) (string, error) {
url := "/v1/catalog/reset"
body, err := network.SendEmptyPostRequest(url)
if err != nil {
return "", err
}
return string(body), nil
}
func GetLocationWithVersion(network *net.Network, locationId, version string) (models.CatalogLocationSummary, error) {
url := fmt.Sprintf("/v1/catalog/locations/%s/%s", locationId, version)
var catalogLocation models.CatalogLocationSummary
body, err := network.SendGetRequest(url)
if err != nil {
return catalogLocation, err
}
err = json.Unmarshal(body, &catalogLocation)
return catalogLocation, err
}
func PostLocationWithVersion(network *net.Network, locationId, version string) (string, error) {
url := fmt.Sprintf("/v1/catalog/locations/%s/%s", locationId, version)
body, err := network.SendEmptyPostRequest(url)
if err != nil {
return "", err
}
return string(body), nil
}
func Entities(network *net.Network) ([]models.CatalogItemSummary, error) {
url := "/v1/catalog/entities"
var entities []models.CatalogItemSummary
body, err := network.SendGetRequest(url)
if err != nil {
return entities, err
}
err = json.Unmarshal(body, &entities)
return entities, err
}
func Catalog(network *net.Network) ([]models.CatalogItemSummary, error) {
url := "/v1/catalog/applications"
var applications []models.CatalogItemSummary
body, err := network.SendGetRequest(url)
if err != nil {
return applications, err
}
err = json.Unmarshal(body, &applications)
return applications, err
}
func GetLocation(network *net.Network, locationId string) (models.CatalogLocationSummary, error) {
url := fmt.Sprintf("/v1/catalog/locations/%s", locationId)
var catalogLocation models.CatalogLocationSummary
body, err := network.SendGetRequest(url)
if err != nil {
return catalogLocation, err
}
err = json.Unmarshal(body, &catalogLocation)
return catalogLocation, err
}