blob: 74a221fd9fd52e8c8722c61dc195da1b2523e925 [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
42// RebuildResult temporarily contains the response from a Rebuild call.
Jamie Hannaford01c1efe2014-10-16 15:08:59 +020043type RebuildResult struct {
Ash Wilson397c78b2014-09-25 15:19:14 -040044 serverResult
45}
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -080046
Jamie Hannaford01c1efe2014-10-16 15:08:59 +020047// ActionResult represents the result of server action operations, like reboot
48type ActionResult struct {
Ash Wilson262bcc82014-10-20 12:13:11 -040049 gophercloud.Result
Jamie Hannaford01c1efe2014-10-16 15:08:59 +020050}
51
52// Extract is a function that extracts error information from a result
53func (r ActionResult) Extract() error {
54 return r.Err
55}
56
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -080057// 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 -080058type Server struct {
Ash Wilson01626a32014-09-17 10:38:07 -040059 // ID uniquely identifies this server amongst all other servers, including those not accessible to the current tenant.
60 ID string
61
62 // TenantID identifies the tenant owning this server resource.
63 TenantID string `mapstructure:"tenant_id"`
64
65 // UserID uniquely identifies the user account owning the tenant.
66 UserID string `mapstructure:"user_id"`
67
68 // Name contains the human-readable name for the server.
69 Name string
70
71 // Updated and Created contain ISO-8601 timestamps of when the state of the server last changed, and when it was created.
72 Updated string
73 Created string
74
75 HostID string
76
77 // Status contains the current operational status of the server, such as IN_PROGRESS or ACTIVE.
78 Status string
79
80 // Progress ranges from 0..100.
81 // A request made against the server completes only once Progress reaches 100.
82 Progress int
83
84 // AccessIPv4 and AccessIPv6 contain the IP addresses of the server, suitable for remote access for administration.
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -080085 AccessIPv4 string
86 AccessIPv6 string
Ash Wilson01626a32014-09-17 10:38:07 -040087
88 // Image refers to a JSON object, which itself indicates the OS image used to deploy the server.
89 Image map[string]interface{}
90
91 // Flavor refers to a JSON object, which itself indicates the hardware configuration of the deployed server.
92 Flavor map[string]interface{}
93
94 // Addresses includes a list of all IP addresses assigned to the server, keyed by pool.
Ash Wilson01626a32014-09-17 10:38:07 -040095 Addresses map[string]interface{}
96
97 // Metadata includes a list of all user-specified key-value pairs attached to the server.
98 Metadata map[string]interface{}
99
100 // Links includes HTTP references to the itself, useful for passing along to other APIs that might want a server reference.
101 Links []interface{}
102
Ash Wilsonad21c712014-09-25 10:15:22 -0400103 // KeyName indicates which public key was injected into the server on launch.
Ash Wilson69b144f2014-10-21 14:03:52 -0400104 KeyName string `json:"key_name" mapstructure:"key_name"`
Ash Wilsonad21c712014-09-25 10:15:22 -0400105
Ash Wilson01626a32014-09-17 10:38:07 -0400106 // 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.
107 // Note that this is the ONLY time this field will be valid.
Ash Wilson69b144f2014-10-21 14:03:52 -0400108 AdminPass string `json:"adminPass" mapstructure:"adminPass"`
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -0800109}
110
Ash Wilson397c78b2014-09-25 15:19:14 -0400111// ServerPage abstracts the raw results of making a List() request against the API.
112// As OpenStack extensions may freely alter the response bodies of structures returned to the client, you may only safely access the
113// data provided through the ExtractServers call.
114type ServerPage struct {
115 pagination.LinkedPageBase
Ash Wilsonf57381e2014-09-25 13:21:34 -0400116}
117
Ash Wilson397c78b2014-09-25 15:19:14 -0400118// IsEmpty returns true if a page contains no Server results.
119func (page ServerPage) IsEmpty() (bool, error) {
120 servers, err := ExtractServers(page)
121 if err != nil {
122 return true, err
123 }
124 return len(servers) == 0, nil
125}
126
127// NextPageURL uses the response's embedded link reference to navigate to the next page of results.
128func (page ServerPage) NextPageURL() (string, error) {
Ash Wilson397c78b2014-09-25 15:19:14 -0400129 type resp struct {
Jamie Hannaforda581acd2014-10-08 17:14:13 +0200130 Links []gophercloud.Link `mapstructure:"servers_links"`
Ash Wilsond27e0ff2014-09-25 11:50:31 -0400131 }
132
Ash Wilson397c78b2014-09-25 15:19:14 -0400133 var r resp
134 err := mapstructure.Decode(page.Body, &r)
135 if err != nil {
136 return "", err
Ash Wilsond27e0ff2014-09-25 11:50:31 -0400137 }
138
Jamie Hannaforda581acd2014-10-08 17:14:13 +0200139 return gophercloud.ExtractNextURL(r.Links)
Ash Wilsond27e0ff2014-09-25 11:50:31 -0400140}
141
Ash Wilson01626a32014-09-17 10:38:07 -0400142// ExtractServers interprets the results of a single page from a List() call, producing a slice of Server entities.
143func ExtractServers(page pagination.Page) ([]Server, error) {
Ash Wilson397c78b2014-09-25 15:19:14 -0400144 casted := page.(ServerPage).Body
Ash Wilson12259392014-09-17 10:50:02 -0400145
146 var response struct {
147 Servers []Server `mapstructure:"servers"`
148 }
149 err := mapstructure.Decode(casted, &response)
150 return response.Servers, err
Samuel A. Falvo IIc007c272014-02-10 20:49:26 -0800151}