2016-01-29 20:53:56 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2014 VMware, Inc. All rights reserved. Licensed under the Apache v2 License.
|
|
|
|
*/
|
|
|
|
|
2017-01-31 12:11:06 +01:00
|
|
|
package govcloudair
|
2016-01-29 20:53:56 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
|
|
|
|
2017-01-31 12:11:06 +01:00
|
|
|
types "github.com/ukcloud/govcloudair/types/v56"
|
2016-01-29 20:53:56 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type CatalogItem struct {
|
|
|
|
CatalogItem *types.CatalogItem
|
|
|
|
c *Client
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewCatalogItem(c *Client) *CatalogItem {
|
|
|
|
return &CatalogItem{
|
|
|
|
CatalogItem: new(types.CatalogItem),
|
|
|
|
c: c,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ci *CatalogItem) GetVAppTemplate() (VAppTemplate, error) {
|
|
|
|
url, err := url.ParseRequestURI(ci.CatalogItem.Entity.HREF)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return VAppTemplate{}, fmt.Errorf("error decoding catalogitem response: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
req := ci.c.NewRequest(map[string]string{}, "GET", *url, nil)
|
|
|
|
|
|
|
|
resp, err := checkResp(ci.c.Http.Do(req))
|
|
|
|
if err != nil {
|
|
|
|
return VAppTemplate{}, fmt.Errorf("error retreiving vapptemplate: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
cat := NewVAppTemplate(ci.c)
|
|
|
|
|
|
|
|
if err = decodeBody(resp, cat.VAppTemplate); err != nil {
|
|
|
|
return VAppTemplate{}, fmt.Errorf("error decoding vapptemplate response: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The request was successful
|
|
|
|
return *cat, nil
|
|
|
|
|
|
|
|
}
|