Samuel A. Falvo II | c007c27 | 2014-02-10 20:49:26 -0800 | [diff] [blame] | 1 | package servers |
| 2 | |
| 3 | import ( |
Ash Wilson | 6a310e0 | 2014-09-29 08:24:02 -0400 | [diff] [blame] | 4 | "encoding/base64" |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 5 | "fmt" |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 6 | |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 7 | "github.com/racker/perigee" |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 8 | "github.com/rackspace/gophercloud" |
| 9 | "github.com/rackspace/gophercloud/pagination" |
Samuel A. Falvo II | c007c27 | 2014-02-10 20:49:26 -0800 | [diff] [blame] | 10 | ) |
| 11 | |
Jamie Hannaford | bfe33b2 | 2014-10-16 12:45:40 +0200 | [diff] [blame] | 12 | // ListOptsBuilder allows extensions to add additional parameters to the |
| 13 | // List request. |
| 14 | type ListOptsBuilder interface { |
| 15 | ToServerListQuery() (string, error) |
| 16 | } |
| 17 | |
| 18 | // ListOpts allows the filtering and sorting of paginated collections through |
| 19 | // the API. Filtering is achieved by passing in struct field values that map to |
| 20 | // the server attributes you want to see returned. Marker and Limit are used |
| 21 | // for pagination. |
| 22 | type ListOpts struct { |
| 23 | // A time/date stamp for when the server last changed status. |
| 24 | ChangesSince string `q:"changes-since"` |
| 25 | |
| 26 | // Name of the image in URL format. |
| 27 | Image string `q:"image"` |
| 28 | |
| 29 | // Name of the flavor in URL format. |
| 30 | Flavor string `q:"flavor"` |
| 31 | |
| 32 | // Name of the server as a string; can be queried with regular expressions. |
| 33 | // Realize that ?name=bob returns both bob and bobb. If you need to match bob |
| 34 | // only, you can use a regular expression matching the syntax of the |
| 35 | // underlying database server implemented for Compute. |
| 36 | Name string `q:"name"` |
| 37 | |
| 38 | // Value of the status of the server so that you can filter on "ACTIVE" for example. |
| 39 | Status string `q:"status"` |
| 40 | |
| 41 | // Name of the host as a string. |
| 42 | Host string `q:"host"` |
| 43 | |
| 44 | // UUID of the server at which you want to set a marker. |
| 45 | Marker string `q:"marker"` |
| 46 | |
| 47 | // Integer value for the limit of values to return. |
| 48 | Limit int `q:"limit"` |
| 49 | } |
| 50 | |
| 51 | // ToServerListQuery formats a ListOpts into a query string. |
| 52 | func (opts ListOpts) ToServerListQuery() (string, error) { |
| 53 | q, err := gophercloud.BuildQueryString(opts) |
| 54 | if err != nil { |
| 55 | return "", err |
| 56 | } |
| 57 | return q.String(), nil |
| 58 | } |
| 59 | |
Samuel A. Falvo II | c007c27 | 2014-02-10 20:49:26 -0800 | [diff] [blame] | 60 | // List makes a request against the API to list servers accessible to you. |
Jamie Hannaford | bfe33b2 | 2014-10-16 12:45:40 +0200 | [diff] [blame] | 61 | func List(client *gophercloud.ServiceClient, opts ListOptsBuilder) pagination.Pager { |
| 62 | url := listDetailURL(client) |
| 63 | |
| 64 | if opts != nil { |
| 65 | query, err := opts.ToServerListQuery() |
| 66 | if err != nil { |
| 67 | return pagination.Pager{Err: err} |
| 68 | } |
| 69 | url += query |
| 70 | } |
| 71 | |
| 72 | createPageFn := func(r pagination.LastHTTPResponse) pagination.Page { |
Ash Wilson | 397c78b | 2014-09-25 15:19:14 -0400 | [diff] [blame] | 73 | return ServerPage{pagination.LinkedPageBase{LastHTTPResponse: r}} |
Samuel A. Falvo II | c007c27 | 2014-02-10 20:49:26 -0800 | [diff] [blame] | 74 | } |
| 75 | |
Jamie Hannaford | bfe33b2 | 2014-10-16 12:45:40 +0200 | [diff] [blame] | 76 | return pagination.NewPager(client, url, createPageFn) |
Samuel A. Falvo II | c007c27 | 2014-02-10 20:49:26 -0800 | [diff] [blame] | 77 | } |
| 78 | |
Ash Wilson | 2206a11 | 2014-10-02 10:57:38 -0400 | [diff] [blame] | 79 | // CreateOptsBuilder describes struct types that can be accepted by the Create call. |
Ash Wilson | 6a310e0 | 2014-09-29 08:24:02 -0400 | [diff] [blame] | 80 | // The CreateOpts struct in this package does. |
Ash Wilson | 2206a11 | 2014-10-02 10:57:38 -0400 | [diff] [blame] | 81 | type CreateOptsBuilder interface { |
Ash Wilson | e45c973 | 2014-09-29 10:54:12 -0400 | [diff] [blame] | 82 | ToServerCreateMap() map[string]interface{} |
Ash Wilson | 6a310e0 | 2014-09-29 08:24:02 -0400 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | // Network is used within CreateOpts to control a new server's network attachments. |
| 86 | type Network struct { |
| 87 | // UUID of a nova-network to attach to the newly provisioned server. |
| 88 | // Required unless Port is provided. |
| 89 | UUID string |
| 90 | |
| 91 | // Port of a neutron network to attach to the newly provisioned server. |
| 92 | // Required unless UUID is provided. |
| 93 | Port string |
| 94 | |
| 95 | // FixedIP [optional] specifies a fixed IPv4 address to be used on this network. |
| 96 | FixedIP string |
| 97 | } |
| 98 | |
| 99 | // CreateOpts specifies server creation parameters. |
| 100 | type CreateOpts struct { |
| 101 | // Name [required] is the name to assign to the newly launched server. |
| 102 | Name string |
| 103 | |
| 104 | // ImageRef [required] is the ID or full URL to the image that contains the server's OS and initial state. |
| 105 | // Optional if using the boot-from-volume extension. |
| 106 | ImageRef string |
| 107 | |
| 108 | // FlavorRef [required] is the ID or full URL to the flavor that describes the server's specs. |
| 109 | FlavorRef string |
| 110 | |
| 111 | // SecurityGroups [optional] lists the names of the security groups to which this server should belong. |
| 112 | SecurityGroups []string |
| 113 | |
| 114 | // UserData [optional] contains configuration information or scripts to use upon launch. |
| 115 | // Create will base64-encode it for you. |
| 116 | UserData []byte |
| 117 | |
| 118 | // AvailabilityZone [optional] in which to launch the server. |
| 119 | AvailabilityZone string |
| 120 | |
| 121 | // Networks [optional] dictates how this server will be attached to available networks. |
| 122 | // By default, the server will be attached to all isolated networks for the tenant. |
| 123 | Networks []Network |
| 124 | |
| 125 | // Metadata [optional] contains key-value pairs (up to 255 bytes each) to attach to the server. |
| 126 | Metadata map[string]string |
| 127 | |
| 128 | // Personality [optional] includes the path and contents of a file to inject into the server at launch. |
| 129 | // The maximum size of the file is 255 bytes (decoded). |
| 130 | Personality []byte |
| 131 | |
| 132 | // ConfigDrive [optional] enables metadata injection through a configuration drive. |
| 133 | ConfigDrive bool |
| 134 | } |
| 135 | |
Ash Wilson | e45c973 | 2014-09-29 10:54:12 -0400 | [diff] [blame] | 136 | // ToServerCreateMap assembles a request body based on the contents of a CreateOpts. |
| 137 | func (opts CreateOpts) ToServerCreateMap() map[string]interface{} { |
Ash Wilson | 6a310e0 | 2014-09-29 08:24:02 -0400 | [diff] [blame] | 138 | server := make(map[string]interface{}) |
| 139 | |
| 140 | server["name"] = opts.Name |
| 141 | server["imageRef"] = opts.ImageRef |
| 142 | server["flavorRef"] = opts.FlavorRef |
| 143 | |
| 144 | if opts.UserData != nil { |
| 145 | encoded := base64.StdEncoding.EncodeToString(opts.UserData) |
| 146 | server["user_data"] = &encoded |
| 147 | } |
| 148 | if opts.Personality != nil { |
| 149 | encoded := base64.StdEncoding.EncodeToString(opts.Personality) |
| 150 | server["personality"] = &encoded |
| 151 | } |
| 152 | if opts.ConfigDrive { |
| 153 | server["config_drive"] = "true" |
| 154 | } |
| 155 | if opts.AvailabilityZone != "" { |
| 156 | server["availability_zone"] = opts.AvailabilityZone |
| 157 | } |
| 158 | if opts.Metadata != nil { |
| 159 | server["metadata"] = opts.Metadata |
| 160 | } |
| 161 | |
| 162 | if len(opts.SecurityGroups) > 0 { |
| 163 | securityGroups := make([]map[string]interface{}, len(opts.SecurityGroups)) |
| 164 | for i, groupName := range opts.SecurityGroups { |
| 165 | securityGroups[i] = map[string]interface{}{"name": groupName} |
| 166 | } |
| 167 | } |
| 168 | if len(opts.Networks) > 0 { |
| 169 | networks := make([]map[string]interface{}, len(opts.Networks)) |
| 170 | for i, net := range opts.Networks { |
| 171 | networks[i] = make(map[string]interface{}) |
| 172 | if net.UUID != "" { |
| 173 | networks[i]["uuid"] = net.UUID |
| 174 | } |
| 175 | if net.Port != "" { |
| 176 | networks[i]["port"] = net.Port |
| 177 | } |
| 178 | if net.FixedIP != "" { |
| 179 | networks[i]["fixed_ip"] = net.FixedIP |
| 180 | } |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | return map[string]interface{}{"server": server} |
| 185 | } |
| 186 | |
Samuel A. Falvo II | ce00073 | 2014-02-13 18:53:53 -0800 | [diff] [blame] | 187 | // Create requests a server to be provisioned to the user in the current tenant. |
Ash Wilson | 2206a11 | 2014-10-02 10:57:38 -0400 | [diff] [blame] | 188 | func Create(client *gophercloud.ServiceClient, opts CreateOptsBuilder) CreateResult { |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 189 | var result CreateResult |
Ash Wilson | 31f6bde | 2014-09-25 14:52:12 -0400 | [diff] [blame] | 190 | _, result.Err = perigee.Request("POST", listURL(client), perigee.Options{ |
Ash Wilson | 6a310e0 | 2014-09-29 08:24:02 -0400 | [diff] [blame] | 191 | Results: &result.Resp, |
Ash Wilson | e45c973 | 2014-09-29 10:54:12 -0400 | [diff] [blame] | 192 | ReqBody: opts.ToServerCreateMap(), |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 193 | MoreHeaders: client.Provider.AuthenticatedHeaders(), |
Samuel A. Falvo II | e246ac0 | 2014-02-13 23:20:09 -0800 | [diff] [blame] | 194 | OkCodes: []int{202}, |
Samuel A. Falvo II | ce00073 | 2014-02-13 18:53:53 -0800 | [diff] [blame] | 195 | }) |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 196 | return result |
Samuel A. Falvo II | ce00073 | 2014-02-13 18:53:53 -0800 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | // Delete requests that a server previously provisioned be removed from your account. |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 200 | func Delete(client *gophercloud.ServiceClient, id string) error { |
Jon Perritt | 703bfc0 | 2014-10-08 14:35:00 -0500 | [diff] [blame] | 201 | _, err := perigee.Request("DELETE", deleteURL(client, id), perigee.Options{ |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 202 | MoreHeaders: client.Provider.AuthenticatedHeaders(), |
Samuel A. Falvo II | e246ac0 | 2014-02-13 23:20:09 -0800 | [diff] [blame] | 203 | OkCodes: []int{204}, |
Samuel A. Falvo II | ce00073 | 2014-02-13 18:53:53 -0800 | [diff] [blame] | 204 | }) |
| 205 | return err |
| 206 | } |
| 207 | |
Ash Wilson | 7ddf036 | 2014-09-17 10:59:09 -0400 | [diff] [blame] | 208 | // Get requests details on a single server, by ID. |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 209 | func Get(client *gophercloud.ServiceClient, id string) GetResult { |
| 210 | var result GetResult |
Jon Perritt | 703bfc0 | 2014-10-08 14:35:00 -0500 | [diff] [blame] | 211 | _, result.Err = perigee.Request("GET", getURL(client, id), perigee.Options{ |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 212 | Results: &result.Resp, |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 213 | MoreHeaders: client.Provider.AuthenticatedHeaders(), |
Samuel A. Falvo II | ce00073 | 2014-02-13 18:53:53 -0800 | [diff] [blame] | 214 | }) |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 215 | return result |
Samuel A. Falvo II | ce00073 | 2014-02-13 18:53:53 -0800 | [diff] [blame] | 216 | } |
| 217 | |
Jon Perritt | 8204821 | 2014-10-13 22:33:13 -0500 | [diff] [blame] | 218 | // UpdateOptsBuilder allows extentions to add additional attributes to the Update request. |
| 219 | type UpdateOptsBuilder interface { |
Ash Wilson | e45c973 | 2014-09-29 10:54:12 -0400 | [diff] [blame] | 220 | ToServerUpdateMap() map[string]interface{} |
Ash Wilson | dcbc8fb | 2014-09-29 09:05:44 -0400 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | // UpdateOpts specifies the base attributes that may be updated on an existing server. |
| 224 | type UpdateOpts struct { |
| 225 | // Name [optional] changes the displayed name of the server. |
| 226 | // The server host name will *not* change. |
| 227 | // Server names are not constrained to be unique, even within the same tenant. |
| 228 | Name string |
| 229 | |
| 230 | // AccessIPv4 [optional] provides a new IPv4 address for the instance. |
| 231 | AccessIPv4 string |
| 232 | |
| 233 | // AccessIPv6 [optional] provides a new IPv6 address for the instance. |
| 234 | AccessIPv6 string |
| 235 | } |
| 236 | |
Ash Wilson | e45c973 | 2014-09-29 10:54:12 -0400 | [diff] [blame] | 237 | // ToServerUpdateMap formats an UpdateOpts structure into a request body. |
| 238 | func (opts UpdateOpts) ToServerUpdateMap() map[string]interface{} { |
Ash Wilson | dcbc8fb | 2014-09-29 09:05:44 -0400 | [diff] [blame] | 239 | server := make(map[string]string) |
| 240 | if opts.Name != "" { |
| 241 | server["name"] = opts.Name |
| 242 | } |
| 243 | if opts.AccessIPv4 != "" { |
| 244 | server["accessIPv4"] = opts.AccessIPv4 |
| 245 | } |
| 246 | if opts.AccessIPv6 != "" { |
| 247 | server["accessIPv6"] = opts.AccessIPv6 |
| 248 | } |
| 249 | return map[string]interface{}{"server": server} |
| 250 | } |
| 251 | |
Samuel A. Falvo II | 22d3b77 | 2014-02-13 19:27:05 -0800 | [diff] [blame] | 252 | // Update requests that various attributes of the indicated server be changed. |
Jon Perritt | 8204821 | 2014-10-13 22:33:13 -0500 | [diff] [blame] | 253 | func Update(client *gophercloud.ServiceClient, id string, opts UpdateOptsBuilder) UpdateResult { |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 254 | var result UpdateResult |
Jon Perritt | 703bfc0 | 2014-10-08 14:35:00 -0500 | [diff] [blame] | 255 | _, result.Err = perigee.Request("PUT", updateURL(client, id), perigee.Options{ |
Ash Wilson | dcbc8fb | 2014-09-29 09:05:44 -0400 | [diff] [blame] | 256 | Results: &result.Resp, |
Ash Wilson | e45c973 | 2014-09-29 10:54:12 -0400 | [diff] [blame] | 257 | ReqBody: opts.ToServerUpdateMap(), |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 258 | MoreHeaders: client.Provider.AuthenticatedHeaders(), |
Samuel A. Falvo II | 22d3b77 | 2014-02-13 19:27:05 -0800 | [diff] [blame] | 259 | }) |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 260 | return result |
Samuel A. Falvo II | 22d3b77 | 2014-02-13 19:27:05 -0800 | [diff] [blame] | 261 | } |
Samuel A. Falvo II | ca5f9a3 | 2014-03-11 17:52:58 -0700 | [diff] [blame] | 262 | |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 263 | // ChangeAdminPassword alters the administrator or root password for a specified server. |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 264 | func ChangeAdminPassword(client *gophercloud.ServiceClient, id, newPassword string) ActionResult { |
Ash Wilson | dc7daa8 | 2014-09-23 16:34:42 -0400 | [diff] [blame] | 265 | var req struct { |
| 266 | ChangePassword struct { |
| 267 | AdminPass string `json:"adminPass"` |
| 268 | } `json:"changePassword"` |
| 269 | } |
| 270 | |
| 271 | req.ChangePassword.AdminPass = newPassword |
| 272 | |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 273 | var res ActionResult |
| 274 | |
| 275 | _, res.Err = perigee.Request("POST", actionURL(client, id), perigee.Options{ |
Ash Wilson | dc7daa8 | 2014-09-23 16:34:42 -0400 | [diff] [blame] | 276 | ReqBody: req, |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 277 | Results: &res.Resp, |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 278 | MoreHeaders: client.Provider.AuthenticatedHeaders(), |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 279 | OkCodes: []int{202}, |
Samuel A. Falvo II | ca5f9a3 | 2014-03-11 17:52:58 -0700 | [diff] [blame] | 280 | }) |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 281 | |
| 282 | return res |
Samuel A. Falvo II | ca5f9a3 | 2014-03-11 17:52:58 -0700 | [diff] [blame] | 283 | } |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 284 | |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 285 | // ErrArgument errors occur when an argument supplied to a package function |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 286 | // fails to fall within acceptable values. For example, the Reboot() function |
| 287 | // expects the "how" parameter to be one of HardReboot or SoftReboot. These |
| 288 | // constants are (currently) strings, leading someone to wonder if they can pass |
| 289 | // other string values instead, perhaps in an effort to break the API of their |
| 290 | // provider. Reboot() returns this error in this situation. |
| 291 | // |
| 292 | // Function identifies which function was called/which function is generating |
| 293 | // the error. |
| 294 | // Argument identifies which formal argument was responsible for producing the |
| 295 | // error. |
| 296 | // Value provides the value as it was passed into the function. |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 297 | type ErrArgument struct { |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 298 | Function, Argument string |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 299 | Value interface{} |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | // Error yields a useful diagnostic for debugging purposes. |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 303 | func (e *ErrArgument) Error() string { |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 304 | return fmt.Sprintf("Bad argument in call to %s, formal parameter %s, value %#v", e.Function, e.Argument, e.Value) |
| 305 | } |
| 306 | |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 307 | func (e *ErrArgument) String() string { |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 308 | return e.Error() |
| 309 | } |
| 310 | |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 311 | // RebootMethod describes the mechanisms by which a server reboot can be requested. |
| 312 | type RebootMethod string |
| 313 | |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 314 | // These constants determine how a server should be rebooted. |
| 315 | // See the Reboot() function for further details. |
| 316 | const ( |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 317 | SoftReboot RebootMethod = "SOFT" |
| 318 | HardReboot RebootMethod = "HARD" |
| 319 | OSReboot = SoftReboot |
| 320 | PowerCycle = HardReboot |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 321 | ) |
| 322 | |
| 323 | // Reboot requests that a given server reboot. |
| 324 | // Two methods exist for rebooting a server: |
| 325 | // |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 326 | // HardReboot (aka PowerCycle) restarts the server instance by physically cutting power to the machine, or if a VM, |
| 327 | // terminating it at the hypervisor level. |
| 328 | // It's done. Caput. Full stop. |
| 329 | // Then, after a brief while, power is restored or the VM instance restarted. |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 330 | // |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 331 | // SoftReboot (aka OSReboot) simply tells the OS to restart under its own procedures. |
| 332 | // E.g., in Linux, asking it to enter runlevel 6, or executing "sudo shutdown -r now", or by asking Windows to restart the machine. |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 333 | func Reboot(client *gophercloud.ServiceClient, id string, how RebootMethod) ActionResult { |
| 334 | var res ActionResult |
| 335 | |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 336 | if (how != SoftReboot) && (how != HardReboot) { |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 337 | res.Err = &ErrArgument{ |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 338 | Function: "Reboot", |
| 339 | Argument: "how", |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 340 | Value: how, |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 341 | } |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 342 | return res |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 343 | } |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 344 | |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 345 | _, res.Err = perigee.Request("POST", actionURL(client, id), perigee.Options{ |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 346 | ReqBody: struct { |
| 347 | C map[string]string `json:"reboot"` |
| 348 | }{ |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 349 | map[string]string{"type": string(how)}, |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 350 | }, |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 351 | Results: &res.Resp, |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 352 | MoreHeaders: client.Provider.AuthenticatedHeaders(), |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 353 | OkCodes: []int{202}, |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 354 | }) |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 355 | |
| 356 | return res |
Samuel A. Falvo II | 41c9f61 | 2014-03-11 19:00:10 -0700 | [diff] [blame] | 357 | } |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 358 | |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 359 | // RebuildOptsBuilder is an interface that allows extensions to override the |
| 360 | // default behaviour of rebuild options |
| 361 | type RebuildOptsBuilder interface { |
| 362 | ToServerRebuildMap() (map[string]interface{}, error) |
| 363 | } |
| 364 | |
| 365 | // RebuildOpts represents the configuration options used in a server rebuild |
| 366 | // operation |
| 367 | type RebuildOpts struct { |
| 368 | // Required. The ID of the image you want your server to be provisioned on |
Jamie Hannaford | dcb8c27 | 2014-10-16 16:34:41 +0200 | [diff] [blame] | 369 | ImageID string |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 370 | |
| 371 | // Name to set the server to |
Jamie Hannaford | dcb8c27 | 2014-10-16 16:34:41 +0200 | [diff] [blame] | 372 | Name string |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 373 | |
| 374 | // Required. The server's admin password |
Jamie Hannaford | dcb8c27 | 2014-10-16 16:34:41 +0200 | [diff] [blame] | 375 | AdminPass string |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 376 | |
| 377 | // AccessIPv4 [optional] provides a new IPv4 address for the instance. |
Jamie Hannaford | dcb8c27 | 2014-10-16 16:34:41 +0200 | [diff] [blame] | 378 | AccessIPv4 string |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 379 | |
| 380 | // AccessIPv6 [optional] provides a new IPv6 address for the instance. |
Jamie Hannaford | dcb8c27 | 2014-10-16 16:34:41 +0200 | [diff] [blame] | 381 | AccessIPv6 string |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 382 | |
| 383 | // Metadata [optional] contains key-value pairs (up to 255 bytes each) to attach to the server. |
Jamie Hannaford | dcb8c27 | 2014-10-16 16:34:41 +0200 | [diff] [blame] | 384 | Metadata map[string]string |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 385 | |
| 386 | // Personality [optional] includes the path and contents of a file to inject into the server at launch. |
| 387 | // The maximum size of the file is 255 bytes (decoded). |
Jamie Hannaford | dcb8c27 | 2014-10-16 16:34:41 +0200 | [diff] [blame] | 388 | Personality []byte |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | // ToServerRebuildMap formats a RebuildOpts struct into a map for use in JSON |
| 392 | func (opts RebuildOpts) ToServerRebuildMap() (map[string]interface{}, error) { |
| 393 | var err error |
| 394 | server := make(map[string]interface{}) |
| 395 | |
| 396 | if opts.AdminPass == "" { |
| 397 | err = fmt.Errorf("AdminPass is required") |
| 398 | } |
| 399 | |
| 400 | if opts.ImageID == "" { |
| 401 | err = fmt.Errorf("ImageID is required") |
| 402 | } |
| 403 | |
| 404 | if err != nil { |
| 405 | return server, err |
| 406 | } |
| 407 | |
| 408 | server["name"] = opts.Name |
| 409 | server["adminPass"] = opts.AdminPass |
| 410 | server["imageRef"] = opts.ImageID |
| 411 | |
| 412 | if opts.AccessIPv4 != "" { |
| 413 | server["accessIPv4"] = opts.AccessIPv4 |
| 414 | } |
| 415 | |
| 416 | if opts.AccessIPv6 != "" { |
| 417 | server["accessIPv6"] = opts.AccessIPv6 |
| 418 | } |
| 419 | |
| 420 | if opts.Metadata != nil { |
| 421 | server["metadata"] = opts.Metadata |
| 422 | } |
| 423 | |
| 424 | if opts.Personality != nil { |
| 425 | encoded := base64.StdEncoding.EncodeToString(opts.Personality) |
| 426 | server["personality"] = &encoded |
| 427 | } |
| 428 | |
| 429 | return map[string]interface{}{"rebuild": server}, nil |
| 430 | } |
| 431 | |
| 432 | // Rebuild will reprovision the server according to the configuration options |
| 433 | // provided in the RebuildOpts struct. |
| 434 | func Rebuild(client *gophercloud.ServiceClient, id string, opts RebuildOptsBuilder) RebuildResult { |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 435 | var result RebuildResult |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 436 | |
| 437 | if id == "" { |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 438 | result.Err = fmt.Errorf("ID is required") |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 439 | return result |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 440 | } |
| 441 | |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 442 | reqBody, err := opts.ToServerRebuildMap() |
| 443 | if err != nil { |
| 444 | result.Err = err |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 445 | return result |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 446 | } |
| 447 | |
Ash Wilson | 31f6bde | 2014-09-25 14:52:12 -0400 | [diff] [blame] | 448 | _, result.Err = perigee.Request("POST", actionURL(client, id), perigee.Options{ |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 449 | ReqBody: &reqBody, |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 450 | Results: &result.Resp, |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 451 | MoreHeaders: client.Provider.AuthenticatedHeaders(), |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 452 | OkCodes: []int{202}, |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 453 | }) |
Jamie Hannaford | 6c9eb60 | 2014-10-16 16:28:07 +0200 | [diff] [blame] | 454 | |
Ash Wilson | d27e0ff | 2014-09-25 11:50:31 -0400 | [diff] [blame] | 455 | return result |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | // Resize instructs the provider to change the flavor of the server. |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 459 | // Note that this implies rebuilding it. |
| 460 | // Unfortunately, one cannot pass rebuild parameters to the resize function. |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 461 | // When the resize completes, the server will be in RESIZE_VERIFY state. |
| 462 | // While in this state, you can explore the use of the new server's configuration. |
| 463 | // If you like it, call ConfirmResize() to commit the resize permanently. |
| 464 | // Otherwise, call RevertResize() to restore the old configuration. |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 465 | func Resize(client *gophercloud.ServiceClient, id, flavorRef string) ActionResult { |
| 466 | var res ActionResult |
| 467 | |
| 468 | _, res.Err = perigee.Request("POST", actionURL(client, id), perigee.Options{ |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 469 | ReqBody: struct { |
| 470 | R map[string]interface{} `json:"resize"` |
| 471 | }{ |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 472 | map[string]interface{}{"flavorRef": flavorRef}, |
| 473 | }, |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 474 | Results: &res.Resp, |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 475 | MoreHeaders: client.Provider.AuthenticatedHeaders(), |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 476 | OkCodes: []int{202}, |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 477 | }) |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 478 | |
| 479 | return res |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | // ConfirmResize confirms a previous resize operation on a server. |
| 483 | // See Resize() for more details. |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 484 | func ConfirmResize(client *gophercloud.ServiceClient, id string) ActionResult { |
| 485 | var res ActionResult |
| 486 | |
| 487 | _, res.Err = perigee.Request("POST", actionURL(client, id), perigee.Options{ |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 488 | ReqBody: map[string]interface{}{"confirmResize": nil}, |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 489 | MoreHeaders: client.Provider.AuthenticatedHeaders(), |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 490 | Results: &res.Resp, |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 491 | OkCodes: []int{204}, |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 492 | }) |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 493 | |
| 494 | return res |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | // RevertResize cancels a previous resize operation on a server. |
| 498 | // See Resize() for more details. |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 499 | func RevertResize(client *gophercloud.ServiceClient, id string) ActionResult { |
| 500 | var res ActionResult |
| 501 | |
| 502 | _, res.Err = perigee.Request("POST", actionURL(client, id), perigee.Options{ |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 503 | ReqBody: map[string]interface{}{"revertResize": nil}, |
Ash Wilson | 01626a3 | 2014-09-17 10:38:07 -0400 | [diff] [blame] | 504 | MoreHeaders: client.Provider.AuthenticatedHeaders(), |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 505 | Results: &res.Resp, |
Jon Perritt | 3055864 | 2014-04-14 17:07:12 -0500 | [diff] [blame] | 506 | OkCodes: []int{202}, |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 507 | }) |
Jamie Hannaford | 8c072a3 | 2014-10-16 14:33:32 +0200 | [diff] [blame^] | 508 | |
| 509 | return res |
Samuel A. Falvo II | 808bb63 | 2014-03-12 00:07:50 -0700 | [diff] [blame] | 510 | } |