/builtin/providers/cloudstack/resources.go

https://gitlab.com/displague/terraform · Go · 137 lines · 112 code · 20 blank · 5 comment · 20 complexity · f1f930071b077d9197ce509f87b47c87 MD5 · raw file

  1. package cloudstack
  2. import (
  3. "fmt"
  4. "log"
  5. "regexp"
  6. "time"
  7. "github.com/hashicorp/terraform/helper/schema"
  8. "github.com/xanzy/go-cloudstack/cloudstack"
  9. )
  10. type retrieveError struct {
  11. name string
  12. value string
  13. err error
  14. }
  15. func (e *retrieveError) Error() error {
  16. return fmt.Errorf("Error retrieving UUID of %s %s: %s", e.name, e.value, e.err)
  17. }
  18. func setValueOrUUID(d *schema.ResourceData, key string, value string, uuid string) {
  19. if isUUID(d.Get(key).(string)) {
  20. d.Set(key, uuid)
  21. } else {
  22. d.Set(key, value)
  23. }
  24. }
  25. func retrieveUUID(cs *cloudstack.CloudStackClient, name, value string) (uuid string, e *retrieveError) {
  26. // If the supplied value isn't a UUID, try to retrieve the UUID ourselves
  27. if isUUID(value) {
  28. return value, nil
  29. }
  30. log.Printf("[DEBUG] Retrieving UUID of %s: %s", name, value)
  31. var err error
  32. switch name {
  33. case "disk_offering":
  34. uuid, err = cs.DiskOffering.GetDiskOfferingID(value)
  35. case "virtual_machine":
  36. uuid, err = cs.VirtualMachine.GetVirtualMachineID(value)
  37. case "service_offering":
  38. uuid, err = cs.ServiceOffering.GetServiceOfferingID(value)
  39. case "network_offering":
  40. uuid, err = cs.NetworkOffering.GetNetworkOfferingID(value)
  41. case "vpc_offering":
  42. uuid, err = cs.VPC.GetVPCOfferingID(value)
  43. case "vpc":
  44. uuid, err = cs.VPC.GetVPCID(value)
  45. case "network":
  46. uuid, err = cs.Network.GetNetworkID(value)
  47. case "zone":
  48. uuid, err = cs.Zone.GetZoneID(value)
  49. case "ipaddress":
  50. p := cs.Address.NewListPublicIpAddressesParams()
  51. p.SetIpaddress(value)
  52. l, e := cs.Address.ListPublicIpAddresses(p)
  53. if e != nil {
  54. err = e
  55. break
  56. }
  57. if l.Count == 1 {
  58. uuid = l.PublicIpAddresses[0].Id
  59. break
  60. }
  61. err = fmt.Errorf("Could not find UUID of IP address: %s", value)
  62. case "os_type":
  63. p := cs.GuestOS.NewListOsTypesParams()
  64. p.SetDescription(value)
  65. l, e := cs.GuestOS.ListOsTypes(p)
  66. if e != nil {
  67. err = e
  68. break
  69. }
  70. if l.Count == 1 {
  71. uuid = l.OsTypes[0].Id
  72. break
  73. }
  74. err = fmt.Errorf("Could not find UUID of OS Type: %s", value)
  75. case "project":
  76. uuid, err = cs.Project.GetProjectID(value)
  77. default:
  78. return uuid, &retrieveError{name: name, value: value,
  79. err: fmt.Errorf("Unknown request: %s", name)}
  80. }
  81. if err != nil {
  82. return uuid, &retrieveError{name: name, value: value, err: err}
  83. }
  84. return uuid, nil
  85. }
  86. func retrieveTemplateUUID(cs *cloudstack.CloudStackClient, zoneid, value string) (uuid string, e *retrieveError) {
  87. // If the supplied value isn't a UUID, try to retrieve the UUID ourselves
  88. if isUUID(value) {
  89. return value, nil
  90. }
  91. log.Printf("[DEBUG] Retrieving UUID of template: %s", value)
  92. uuid, err := cs.Template.GetTemplateID(value, "executable", zoneid)
  93. if err != nil {
  94. return uuid, &retrieveError{name: "template", value: value, err: err}
  95. }
  96. return uuid, nil
  97. }
  98. func isUUID(s string) bool {
  99. re := regexp.MustCompile(`^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`)
  100. return re.MatchString(s)
  101. }
  102. // RetryFunc is the function retried n times
  103. type RetryFunc func() (interface{}, error)
  104. // Retry is a wrapper around a RetryFunc that will retry a function
  105. // n times or until it succeeds.
  106. func Retry(n int, f RetryFunc) (interface{}, error) {
  107. var lastErr error
  108. for i := 0; i < n; i++ {
  109. r, err := f()
  110. if err == nil {
  111. return r, nil
  112. }
  113. lastErr = err
  114. time.Sleep(30 * time.Second)
  115. }
  116. return nil, lastErr
  117. }