blob: fec5345b3d0878ef16e568e08be3d8c099171708 [file] [log] [blame]
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -08001package servers
2
3import (
Samuel A. Falvo IIe246ac02014-02-13 23:20:09 -08004 "github.com/mitchellh/mapstructure"
Ash Wilsond27e0ff2014-09-25 11:50:31 -04005 "github.com/rackspace/gophercloud"
Ash Wilson01626a32014-09-17 10:38:07 -04006 "github.com/rackspace/gophercloud/pagination"
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -08007)
8
Ash Wilson397c78b2014-09-25 15:19:14 -04009type serverResult struct {
Ash Wilsonf548aad2014-10-20 08:35:34 -040010 gophercloud.Result
Ash Wilson397c78b2014-09-25 15:19:14 -040011}
12
13// Extract interprets any serverResult as a Server, if possible.
14func (r serverResult) Extract() (*Server, error) {
15 if r.Err != nil {
16 return nil, r.Err
17 }
18
19 var response struct {
20 Server Server `mapstructure:"server"`
21 }
22
Ash Wilsond3dc2542014-10-20 10:10:48 -040023 err := mapstructure.Decode(r.Body, &response)
Ash Wilson397c78b2014-09-25 15:19:14 -040024 return &response.Server, err
25}
26
27// CreateResult temporarily contains the response from a Create call.
28type CreateResult struct {
29 serverResult
30}
31
32// GetResult temporarily contains the response from a Get call.
33type GetResult struct {
34 serverResult
35}
36
37// UpdateResult temporarily contains the response from an Update call.
38type UpdateResult struct {
39 serverResult
40}
41
Jamie Hannaford34732fe2014-10-27 11:29:36 +010042// DeleteResult temporarily contains the response from an Delete call.
43type DeleteResult struct {
Jon Perrittba2395e2014-10-27 15:23:21 -050044 gophercloud.ErrResult
Jamie Hannaford34732fe2014-10-27 11:29:36 +010045}
46
Ash Wilson397c78b2014-09-25 15:19:14 -040047// RebuildResult temporarily contains the response from a Rebuild call.
Jamie Hannaford01c1efe2014-10-16 15:08:59 +020048type RebuildResult struct {
Ash Wilson397c78b2014-09-25 15:19:14 -040049 serverResult
50}
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -080051
Jamie Hannaford01c1efe2014-10-16 15:08:59 +020052// ActionResult represents the result of server action operations, like reboot
53type ActionResult struct {
Jon Perrittba2395e2014-10-27 15:23:21 -050054 gophercloud.ErrResult
Jamie Hannaford01c1efe2014-10-16 15:08:59 +020055}
56
Alex Gaynor587e3e32014-11-13 10:39:09 -080057// RescueResult represents the result of a server rescue operation
Alex Gaynorfbe61bb2014-11-12 13:35:03 -080058type RescueResult struct {
59 ActionResult
Alex Gaynor7f3b06e2014-11-13 09:54:03 -080060}
61
62func (r RescueResult) Extract() (string, error) {
63 if r.Err != nil {
Alex Gaynor94a28aa2014-11-13 10:09:56 -080064 return "", r.Err
Alex Gaynor7f3b06e2014-11-13 09:54:03 -080065 }
66
67 var response struct {
68 AdminPass string `mapstructure:"adminPass"`
69 }
70
71 err := mapstructure.Decode(r.Body, &response)
Alex Gaynor94a28aa2014-11-13 10:09:56 -080072 return response.AdminPass, err
Alex Gaynorfbe61bb2014-11-12 13:35:03 -080073}
74
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -080075// Server exposes only the standard OpenStack fields corresponding to a given server on the user's account.
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -080076type Server struct {
Ash Wilson01626a32014-09-17 10:38:07 -040077 // ID uniquely identifies this server amongst all other servers, including those not accessible to the current tenant.
78 ID string
79
80 // TenantID identifies the tenant owning this server resource.
81 TenantID string `mapstructure:"tenant_id"`
82
83 // UserID uniquely identifies the user account owning the tenant.
84 UserID string `mapstructure:"user_id"`
85
86 // Name contains the human-readable name for the server.
87 Name string
88
89 // Updated and Created contain ISO-8601 timestamps of when the state of the server last changed, and when it was created.
90 Updated string
91 Created string
92
93 HostID string
94
95 // Status contains the current operational status of the server, such as IN_PROGRESS or ACTIVE.
96 Status string
97
98 // Progress ranges from 0..100.
99 // A request made against the server completes only once Progress reaches 100.
100 Progress int
101
102 // AccessIPv4 and AccessIPv6 contain the IP addresses of the server, suitable for remote access for administration.
Jamie Hannaford908e1e92014-10-27 14:41:17 +0100103 AccessIPv4, AccessIPv6 string
Ash Wilson01626a32014-09-17 10:38:07 -0400104
105 // Image refers to a JSON object, which itself indicates the OS image used to deploy the server.
106 Image map[string]interface{}
107
108 // Flavor refers to a JSON object, which itself indicates the hardware configuration of the deployed server.
109 Flavor map[string]interface{}
110
111 // Addresses includes a list of all IP addresses assigned to the server, keyed by pool.
Ash Wilson01626a32014-09-17 10:38:07 -0400112 Addresses map[string]interface{}
113
114 // Metadata includes a list of all user-specified key-value pairs attached to the server.
115 Metadata map[string]interface{}
116
117 // Links includes HTTP references to the itself, useful for passing along to other APIs that might want a server reference.
118 Links []interface{}
119
Ash Wilsonad21c712014-09-25 10:15:22 -0400120 // KeyName indicates which public key was injected into the server on launch.
Ash Wilson69b144f2014-10-21 14:03:52 -0400121 KeyName string `json:"key_name" mapstructure:"key_name"`
Ash Wilsonad21c712014-09-25 10:15:22 -0400122
Ash Wilson01626a32014-09-17 10:38:07 -0400123 // AdminPass will generally be empty (""). However, it will contain the administrative password chosen when provisioning a new server without a set AdminPass setting in the first place.
124 // Note that this is the ONLY time this field will be valid.
Ash Wilson69b144f2014-10-21 14:03:52 -0400125 AdminPass string `json:"adminPass" mapstructure:"adminPass"`
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -0800126}
127
Ash Wilson397c78b2014-09-25 15:19:14 -0400128// ServerPage abstracts the raw results of making a List() request against the API.
129// As OpenStack extensions may freely alter the response bodies of structures returned to the client, you may only safely access the
130// data provided through the ExtractServers call.
131type ServerPage struct {
132 pagination.LinkedPageBase
Ash Wilsonf57381e2014-09-25 13:21:34 -0400133}
134
Ash Wilson397c78b2014-09-25 15:19:14 -0400135// IsEmpty returns true if a page contains no Server results.
136func (page ServerPage) IsEmpty() (bool, error) {
137 servers, err := ExtractServers(page)
138 if err != nil {
139 return true, err
140 }
141 return len(servers) == 0, nil
142}
143
144// NextPageURL uses the response's embedded link reference to navigate to the next page of results.
145func (page ServerPage) NextPageURL() (string, error) {
Ash Wilson397c78b2014-09-25 15:19:14 -0400146 type resp struct {
Jamie Hannaforda581acd2014-10-08 17:14:13 +0200147 Links []gophercloud.Link `mapstructure:"servers_links"`
Ash Wilsond27e0ff2014-09-25 11:50:31 -0400148 }
149
Ash Wilson397c78b2014-09-25 15:19:14 -0400150 var r resp
151 err := mapstructure.Decode(page.Body, &r)
152 if err != nil {
153 return "", err
Ash Wilsond27e0ff2014-09-25 11:50:31 -0400154 }
155
Jamie Hannaforda581acd2014-10-08 17:14:13 +0200156 return gophercloud.ExtractNextURL(r.Links)
Ash Wilsond27e0ff2014-09-25 11:50:31 -0400157}
158
Ash Wilson01626a32014-09-17 10:38:07 -0400159// ExtractServers interprets the results of a single page from a List() call, producing a slice of Server entities.
160func ExtractServers(page pagination.Page) ([]Server, error) {
Ash Wilson397c78b2014-09-25 15:19:14 -0400161 casted := page.(ServerPage).Body
Ash Wilson12259392014-09-17 10:50:02 -0400162
163 var response struct {
164 Servers []Server `mapstructure:"servers"`
165 }
166 err := mapstructure.Decode(casted, &response)
167 return response.Servers, err
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -0800168}