blob: 59087d880007aa4e0d53393583282a2895c1c6c2 [file] [log] [blame]
Jamie Hannaford548d3402014-09-18 15:50:08 +02001package ports
2
3import (
Jamie Hannaford548d3402014-09-18 15:50:08 +02004 "github.com/rackspace/gophercloud"
Jamie Hannaford548d3402014-09-18 15:50:08 +02005 "github.com/rackspace/gophercloud/pagination"
6)
7
Jamie Hannafordc98f59b2014-10-09 10:32:50 +02008// AdminState gives users a solid type to work with for create and update
9// operations. It is recommended that users use the `Up` and `Down` enums.
10type AdminState *bool
11
12// Convenience vars for AdminStateUp values.
13var (
14 iTrue = true
15 iFalse = false
16
17 Up AdminState = &iTrue
18 Down AdminState = &iFalse
19)
20
Jon Perritt04851d32014-10-14 02:07:13 -050021// ListOptsBuilder allows extensions to add additional parameters to the
22// List request.
23type ListOptsBuilder interface {
Jon Perritt26780d52014-10-14 11:35:58 -050024 ToPortListQuery() (string, error)
Jon Perritt04851d32014-10-14 02:07:13 -050025}
26
Jamie Hannaford686c4962014-09-23 10:46:20 +020027// ListOpts allows the filtering and sorting of paginated collections through
28// the API. Filtering is achieved by passing in struct field values that map to
29// the port attributes you want to see returned. SortKey allows you to sort
30// by a particular port attribute. SortDir sets the direction, and is either
31// `asc' or `desc'. Marker and Limit are used for pagination.
Jamie Hannaford548d3402014-09-18 15:50:08 +020032type ListOpts struct {
Jamie Hannaford92523e32014-10-02 11:08:36 +020033 Status string `q:"status"`
34 Name string `q:"name"`
35 AdminStateUp *bool `q:"admin_state_up"`
36 NetworkID string `q:"network_id"`
37 TenantID string `q:"tenant_id"`
38 DeviceOwner string `q:"device_owner"`
39 MACAddress string `q:"mac_address"`
40 ID string `q:"id"`
41 DeviceID string `q:"device_id"`
42 Limit int `q:"limit"`
43 Marker string `q:"marker"`
44 SortKey string `q:"sort_key"`
45 SortDir string `q:"sort_dir"`
Jamie Hannaford548d3402014-09-18 15:50:08 +020046}
47
Jon Perritt26780d52014-10-14 11:35:58 -050048// ToPortListQuery formats a ListOpts into a query string.
49func (opts ListOpts) ToPortListQuery() (string, error) {
Jon Perritt04851d32014-10-14 02:07:13 -050050 q, err := gophercloud.BuildQueryString(opts)
51 if err != nil {
52 return "", err
53 }
54 return q.String(), nil
55}
56
Jamie Hannaford686c4962014-09-23 10:46:20 +020057// List returns a Pager which allows you to iterate over a collection of
58// ports. It accepts a ListOpts struct, which allows you to filter and sort
59// the returned collection for greater efficiency.
60//
61// Default policy settings return only those ports that are owned by the tenant
Alex Gaynora6d5f9f2014-10-27 10:52:32 -070062// who submits the request, unless the request is submitted by a user with
Jamie Hannaford686c4962014-09-23 10:46:20 +020063// administrative rights.
Jon Perritt04851d32014-10-14 02:07:13 -050064func List(c *gophercloud.ServiceClient, opts ListOptsBuilder) pagination.Pager {
65 url := listURL(c)
66 if opts != nil {
Jon Perritt26780d52014-10-14 11:35:58 -050067 query, err := opts.ToPortListQuery()
Jon Perritt04851d32014-10-14 02:07:13 -050068 if err != nil {
69 return pagination.Pager{Err: err}
70 }
71 url += query
Jamie Hannaford548d3402014-09-18 15:50:08 +020072 }
Jamie Hannaford548d3402014-09-18 15:50:08 +020073
Ash Wilsonb8b16f82014-10-20 10:19:49 -040074 return pagination.NewPager(c, url, func(r pagination.PageResult) pagination.Page {
75 return PortPage{pagination.LinkedPageBase{PageResult: r}}
Jamie Hannaford548d3402014-09-18 15:50:08 +020076 })
77}
Jamie Hannaforda311f182014-09-19 11:19:10 +020078
Jamie Hannaford686c4962014-09-23 10:46:20 +020079// Get retrieves a specific port based on its unique ID.
Jamie Hannafordd9036422014-09-23 17:50:24 +020080func Get(c *gophercloud.ServiceClient, id string) GetResult {
81 var res GetResult
Ash Wilson59fb6c42015-02-12 16:21:13 -050082 _, res.Err = c.Request("GET", getURL(c, id), gophercloud.RequestOpts{
83 JSONResponse: &res.Body,
Jamie Hannaforda311f182014-09-19 11:19:10 +020084 })
Jamie Hannafordd9036422014-09-23 17:50:24 +020085 return res
Jamie Hannaforda311f182014-09-19 11:19:10 +020086}
Jamie Hannaforda5fb7822014-09-19 15:07:02 +020087
Jon Perritt04851d32014-10-14 02:07:13 -050088// CreateOptsBuilder is the interface options structs have to satisfy in order
89// to be used in the main Create operation in this package. Since many
90// extensions decorate or modify the common logic, it is useful for them to
91// satisfy a basic interface in order for them to be used.
92type CreateOptsBuilder interface {
93 ToPortCreateMap() (map[string]interface{}, error)
94}
95
Jamie Hannaford686c4962014-09-23 10:46:20 +020096// CreateOpts represents the attributes used when creating a new port.
Jamie Hannaford965ae702014-09-22 14:58:19 +020097type CreateOpts struct {
98 NetworkID string
99 Name string
100 AdminStateUp *bool
101 MACAddress string
102 FixedIPs interface{}
103 DeviceID string
104 DeviceOwner string
105 TenantID string
106 SecurityGroups []string
107}
108
Jon Perritt04851d32014-10-14 02:07:13 -0500109// ToPortCreateMap casts a CreateOpts struct to a map.
110func (opts CreateOpts) ToPortCreateMap() (map[string]interface{}, error) {
111 p := make(map[string]interface{})
112
113 if opts.NetworkID == "" {
114 return nil, errNetworkIDRequired
115 }
116 p["network_id"] = opts.NetworkID
117
118 if opts.DeviceID != "" {
119 p["device_id"] = opts.DeviceID
120 }
121 if opts.DeviceOwner != "" {
122 p["device_owner"] = opts.DeviceOwner
123 }
124 if opts.FixedIPs != nil {
125 p["fixed_ips"] = opts.FixedIPs
126 }
127 if opts.SecurityGroups != nil {
128 p["security_groups"] = opts.SecurityGroups
129 }
130 if opts.TenantID != "" {
131 p["tenant_id"] = opts.TenantID
132 }
133 if opts.AdminStateUp != nil {
134 p["admin_state_up"] = &opts.AdminStateUp
135 }
136 if opts.Name != "" {
137 p["name"] = opts.Name
138 }
139 if opts.MACAddress != "" {
140 p["mac_address"] = opts.MACAddress
141 }
142
143 return map[string]interface{}{"port": p}, nil
144}
145
Jamie Hannaford686c4962014-09-23 10:46:20 +0200146// Create accepts a CreateOpts struct and creates a new network using the values
147// provided. You must remember to provide a NetworkID value.
Jon Perritt04851d32014-10-14 02:07:13 -0500148func Create(c *gophercloud.ServiceClient, opts CreateOptsBuilder) CreateResult {
Jamie Hannafordd9036422014-09-23 17:50:24 +0200149 var res CreateResult
150
Jon Perritt04851d32014-10-14 02:07:13 -0500151 reqBody, err := opts.ToPortCreateMap()
152 if err != nil {
153 res.Err = err
Jamie Hannafordd9036422014-09-23 17:50:24 +0200154 return res
Jamie Hannaforda5fb7822014-09-19 15:07:02 +0200155 }
156
Jamie Hannaforda5fb7822014-09-19 15:07:02 +0200157 // Response
Ash Wilson4bf41a32015-02-12 15:52:44 -0500158 _, res.Err = c.Request("POST", createURL(c), gophercloud.RequestOpts{
159 JSONBody: &reqBody,
160 JSONResponse: &res.Body,
Jamie Hannaforda5fb7822014-09-19 15:07:02 +0200161 })
Jamie Hannaford6f57e9e2014-10-02 10:27:28 +0200162
Jamie Hannafordd9036422014-09-23 17:50:24 +0200163 return res
Jamie Hannaforda5fb7822014-09-19 15:07:02 +0200164}
165
Jon Perritt04851d32014-10-14 02:07:13 -0500166// UpdateOptsBuilder is the interface options structs have to satisfy in order
167// to be used in the main Update operation in this package. Since many
168// extensions decorate or modify the common logic, it is useful for them to
169// satisfy a basic interface in order for them to be used.
170type UpdateOptsBuilder interface {
171 ToPortUpdateMap() (map[string]interface{}, error)
172}
173
Jamie Hannaford686c4962014-09-23 10:46:20 +0200174// UpdateOpts represents the attributes used when updating an existing port.
Jamie Hannaford965ae702014-09-22 14:58:19 +0200175type UpdateOpts struct {
176 Name string
177 AdminStateUp *bool
178 FixedIPs interface{}
179 DeviceID string
180 DeviceOwner string
181 SecurityGroups []string
182}
183
Jon Perritt04851d32014-10-14 02:07:13 -0500184// ToPortUpdateMap casts an UpdateOpts struct to a map.
185func (opts UpdateOpts) ToPortUpdateMap() (map[string]interface{}, error) {
186 p := make(map[string]interface{})
187
188 if opts.DeviceID != "" {
189 p["device_id"] = opts.DeviceID
190 }
191 if opts.DeviceOwner != "" {
192 p["device_owner"] = opts.DeviceOwner
193 }
194 if opts.FixedIPs != nil {
195 p["fixed_ips"] = opts.FixedIPs
196 }
197 if opts.SecurityGroups != nil {
198 p["security_groups"] = opts.SecurityGroups
199 }
200 if opts.AdminStateUp != nil {
201 p["admin_state_up"] = &opts.AdminStateUp
202 }
203 if opts.Name != "" {
204 p["name"] = opts.Name
205 }
206
207 return map[string]interface{}{"port": p}, nil
208}
209
Jamie Hannaford686c4962014-09-23 10:46:20 +0200210// Update accepts a UpdateOpts struct and updates an existing port using the
211// values provided.
Jon Perritt04851d32014-10-14 02:07:13 -0500212func Update(c *gophercloud.ServiceClient, id string, opts UpdateOptsBuilder) UpdateResult {
Jamie Hannafordd9036422014-09-23 17:50:24 +0200213 var res UpdateResult
Jon Perritt04851d32014-10-14 02:07:13 -0500214
215 reqBody, err := opts.ToPortUpdateMap()
216 if err != nil {
217 res.Err = err
218 return res
219 }
220
Ash Wilson59fb6c42015-02-12 16:21:13 -0500221 _, res.Err = c.Request("PUT", updateURL(c, id), gophercloud.RequestOpts{
222 JSONBody: &reqBody,
223 JSONResponse: &res.Body,
224 OkCodes: []int{200, 201},
Jamie Hannaforda5fb7822014-09-19 15:07:02 +0200225 })
Jamie Hannafordd9036422014-09-23 17:50:24 +0200226 return res
Jamie Hannaforda5fb7822014-09-19 15:07:02 +0200227}
Jamie Hannafordd444b7a2014-09-19 15:08:27 +0200228
Jamie Hannaford686c4962014-09-23 10:46:20 +0200229// Delete accepts a unique ID and deletes the port associated with it.
Jamie Hannafordd9036422014-09-23 17:50:24 +0200230func Delete(c *gophercloud.ServiceClient, id string) DeleteResult {
231 var res DeleteResult
Jamie Hannafordc530ba12015-03-23 17:50:46 +0100232 _, res.Err = c.Request("DELETE", deleteURL(c, id), gophercloud.RequestOpts{})
Jamie Hannafordd9036422014-09-23 17:50:24 +0200233 return res
Jamie Hannafordd444b7a2014-09-19 15:08:27 +0200234}