1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
package flavors
import (
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/openstack/compute/v2/flavors"
)
// IDFromName is a convenience function that returns a flavor's ID given its
// name. Errors when the number of items found is not one.
func IDFromName(client *gophercloud.ServiceClient, name string) (string, error) {
IDs, err := IDsFromName(client, name)
if err != nil {
return "", err
}
switch count := len(IDs); count {
case 0:
return "", &gophercloud.ErrResourceNotFound{Name: name, ResourceType: "flavor"}
case 1:
return IDs[0], nil
default:
return "", &gophercloud.ErrMultipleResourcesFound{Name: name, Count: count, ResourceType: "flavor"}
}
}
// IDsFromName returns zero or more IDs corresponding to a name. The returned
// error is only non-nil in case of failure.
func IDsFromName(client *gophercloud.ServiceClient, name string) ([]string, error) {
pages, err := flavors.ListDetail(client, nil).AllPages()
if err != nil {
return nil, err
}
all, err := flavors.ExtractFlavors(pages)
if err != nil {
return nil, err
}
IDs := make([]string, 0, len(all))
for _, s := range all {
if s.Name == name {
IDs = append(IDs, s.ID)
}
}
return IDs, nil
}
|