Jamie Hannaford | a7f671a | 2014-09-11 10:25:08 +0200 | [diff] [blame] | 1 | package networks |
| 2 | |
Jamie Hannaford | 01e1492 | 2014-09-11 15:23:49 +0200 | [diff] [blame] | 3 | import ( |
| 4 | "github.com/racker/perigee" |
| 5 | "github.com/rackspace/gophercloud" |
Jamie Hannaford | f0c615b | 2014-09-17 10:56:52 +0200 | [diff] [blame] | 6 | "github.com/rackspace/gophercloud/pagination" |
Jamie Hannaford | 01e1492 | 2014-09-11 15:23:49 +0200 | [diff] [blame] | 7 | ) |
| 8 | |
Jamie Hannaford | 965ae70 | 2014-09-22 14:58:19 +0200 | [diff] [blame] | 9 | type networkOpts struct { |
Jamie Hannaford | 7db63f2 | 2014-09-29 11:18:45 +0200 | [diff] [blame] | 10 | AdminStateUp *bool |
Jamie Hannaford | 1ce30f2 | 2014-09-16 11:23:34 +0200 | [diff] [blame] | 11 | Name string |
| 12 | Shared *bool |
| 13 | TenantID string |
Jamie Hannaford | 12bc247 | 2014-09-15 12:14:31 +0200 | [diff] [blame] | 14 | } |
Jamie Hannaford | d01a3c7 | 2014-09-15 12:51:00 +0200 | [diff] [blame] | 15 | |
Jamie Hannaford | 686c496 | 2014-09-23 10:46:20 +0200 | [diff] [blame] | 16 | // ListOpts allows the filtering and sorting of paginated collections through |
| 17 | // the API. Filtering is achieved by passing in struct field values that map to |
| 18 | // the network attributes you want to see returned. SortKey allows you to sort |
| 19 | // by a particular network attribute. SortDir sets the direction, and is either |
| 20 | // `asc' or `desc'. Marker and Limit are used for pagination. |
| 21 | type ListOpts struct { |
Jamie Hannaford | 92523e3 | 2014-10-02 11:08:36 +0200 | [diff] [blame] | 22 | Status string `q:"status"` |
| 23 | Name string `q:"name"` |
| 24 | AdminStateUp *bool `q:"admin_state_up"` |
| 25 | TenantID string `q:"tenant_id"` |
| 26 | Shared *bool `q:"shared"` |
| 27 | ID string `q:"id"` |
| 28 | Marker string `q:"marker"` |
| 29 | Limit int `q:"limit"` |
| 30 | SortKey string `q:"sort_key"` |
| 31 | SortDir string `q:"sort_dir"` |
Jamie Hannaford | 686c496 | 2014-09-23 10:46:20 +0200 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | // List returns a Pager which allows you to iterate over a collection of |
| 35 | // networks. It accepts a ListOpts struct, which allows you to filter and sort |
| 36 | // the returned collection for greater efficiency. |
Jamie Hannaford | f0c615b | 2014-09-17 10:56:52 +0200 | [diff] [blame] | 37 | func List(c *gophercloud.ServiceClient, opts ListOpts) pagination.Pager { |
Jamie Hannaford | 4721abc | 2014-09-16 16:29:04 +0200 | [diff] [blame] | 38 | // Build query parameters |
Jamie Hannaford | 92523e3 | 2014-10-02 11:08:36 +0200 | [diff] [blame] | 39 | q, err := gophercloud.BuildQueryString(&opts) |
| 40 | if err != nil { |
| 41 | return pagination.Pager{Err: err} |
Jamie Hannaford | 4721abc | 2014-09-16 16:29:04 +0200 | [diff] [blame] | 42 | } |
Jamie Hannaford | 92523e3 | 2014-10-02 11:08:36 +0200 | [diff] [blame] | 43 | u := listURL(c) + q.String() |
Jamie Hannaford | f0c615b | 2014-09-17 10:56:52 +0200 | [diff] [blame] | 44 | return pagination.NewPager(c, u, func(r pagination.LastHTTPResponse) pagination.Page { |
Ash Wilson | fc55c82 | 2014-09-25 13:18:16 -0400 | [diff] [blame] | 45 | return NetworkPage{pagination.LinkedPageBase{LastHTTPResponse: r}} |
Jamie Hannaford | f0c615b | 2014-09-17 10:56:52 +0200 | [diff] [blame] | 46 | }) |
Jamie Hannaford | 4721abc | 2014-09-16 16:29:04 +0200 | [diff] [blame] | 47 | } |
| 48 | |
Jamie Hannaford | 686c496 | 2014-09-23 10:46:20 +0200 | [diff] [blame] | 49 | // Get retrieves a specific network based on its unique ID. |
Jamie Hannaford | d903642 | 2014-09-23 17:50:24 +0200 | [diff] [blame] | 50 | func Get(c *gophercloud.ServiceClient, id string) GetResult { |
| 51 | var res GetResult |
Jamie Hannaford | 6f57e9e | 2014-10-02 10:27:28 +0200 | [diff] [blame] | 52 | _, res.Err = perigee.Request("GET", getURL(c, id), perigee.Options{ |
Jamie Hannaford | d01a3c7 | 2014-09-15 12:51:00 +0200 | [diff] [blame] | 53 | MoreHeaders: c.Provider.AuthenticatedHeaders(), |
Jamie Hannaford | d903642 | 2014-09-23 17:50:24 +0200 | [diff] [blame] | 54 | Results: &res.Resp, |
| 55 | OkCodes: []int{200}, |
Jamie Hannaford | d01a3c7 | 2014-09-15 12:51:00 +0200 | [diff] [blame] | 56 | }) |
Jamie Hannaford | d903642 | 2014-09-23 17:50:24 +0200 | [diff] [blame] | 57 | return res |
Jamie Hannaford | d01a3c7 | 2014-09-15 12:51:00 +0200 | [diff] [blame] | 58 | } |
Jamie Hannaford | d2d9f56 | 2014-09-15 15:35:07 +0200 | [diff] [blame] | 59 | |
Jamie Hannaford | e3bb3f6 | 2014-10-06 09:40:27 +0200 | [diff] [blame^] | 60 | type CreateOptsBuilder interface { |
| 61 | ToNetworkCreateMap() map[string]map[string]interface{} |
Jamie Hannaford | 9823bb6 | 2014-09-26 17:06:36 +0200 | [diff] [blame] | 62 | } |
| 63 | |
Jamie Hannaford | 965ae70 | 2014-09-22 14:58:19 +0200 | [diff] [blame] | 64 | type CreateOpts networkOpts |
| 65 | |
Jamie Hannaford | e3bb3f6 | 2014-10-06 09:40:27 +0200 | [diff] [blame^] | 66 | func (o CreateOpts) ToNetworkCreateMap() map[string]map[string]interface{} { |
Jamie Hannaford | 7db63f2 | 2014-09-29 11:18:45 +0200 | [diff] [blame] | 67 | inner := make(map[string]interface{}) |
| 68 | |
| 69 | if o.AdminStateUp != nil { |
| 70 | inner["admin_state_up"] = &o.AdminStateUp |
| 71 | } |
| 72 | if o.Name != "" { |
| 73 | inner["name"] = o.Name |
| 74 | } |
| 75 | if o.Shared != nil { |
| 76 | inner["shared"] = &o.Shared |
| 77 | } |
| 78 | if o.TenantID != "" { |
| 79 | inner["tenant_id"] = o.TenantID |
| 80 | } |
| 81 | |
| 82 | outer := make(map[string]map[string]interface{}) |
| 83 | outer["network"] = inner |
| 84 | |
| 85 | return outer |
| 86 | } |
| 87 | |
Jamie Hannaford | 686c496 | 2014-09-23 10:46:20 +0200 | [diff] [blame] | 88 | // Create accepts a CreateOpts struct and creates a new network using the values |
| 89 | // provided. This operation does not actually require a request body, i.e. the |
| 90 | // CreateOpts struct argument can be empty. |
| 91 | // |
| 92 | // The tenant ID that is contained in the URI is the tenant that creates the |
| 93 | // network. An admin user, however, has the option of specifying another tenant |
| 94 | // ID in the CreateOpts struct. |
Jamie Hannaford | e3bb3f6 | 2014-10-06 09:40:27 +0200 | [diff] [blame^] | 95 | func Create(c *gophercloud.ServiceClient, opts CreateOptsBuilder) CreateResult { |
Jamie Hannaford | 7db63f2 | 2014-09-29 11:18:45 +0200 | [diff] [blame] | 96 | var res CreateResult |
| 97 | |
Jamie Hannaford | e3bb3f6 | 2014-10-06 09:40:27 +0200 | [diff] [blame^] | 98 | reqBody := opts.ToNetworkCreateMap() |
Jamie Hannaford | d2d9f56 | 2014-09-15 15:35:07 +0200 | [diff] [blame] | 99 | |
Jamie Hannaford | d2d9f56 | 2014-09-15 15:35:07 +0200 | [diff] [blame] | 100 | // Send request to API |
Jamie Hannaford | 6f57e9e | 2014-10-02 10:27:28 +0200 | [diff] [blame] | 101 | _, res.Err = perigee.Request("POST", createURL(c), perigee.Options{ |
Jamie Hannaford | d2d9f56 | 2014-09-15 15:35:07 +0200 | [diff] [blame] | 102 | MoreHeaders: c.Provider.AuthenticatedHeaders(), |
| 103 | ReqBody: &reqBody, |
Jamie Hannaford | d903642 | 2014-09-23 17:50:24 +0200 | [diff] [blame] | 104 | Results: &res.Resp, |
Jamie Hannaford | d2d9f56 | 2014-09-15 15:35:07 +0200 | [diff] [blame] | 105 | OkCodes: []int{201}, |
| 106 | }) |
Jamie Hannaford | d903642 | 2014-09-23 17:50:24 +0200 | [diff] [blame] | 107 | return res |
Jamie Hannaford | d2d9f56 | 2014-09-15 15:35:07 +0200 | [diff] [blame] | 108 | } |
Jamie Hannaford | 7947505 | 2014-09-15 17:08:06 +0200 | [diff] [blame] | 109 | |
Jamie Hannaford | e3bb3f6 | 2014-10-06 09:40:27 +0200 | [diff] [blame^] | 110 | type UpdateOptsBuilder interface { |
| 111 | ToNetworkUpdateMap() map[string]map[string]interface{} |
Jamie Hannaford | 7db63f2 | 2014-09-29 11:18:45 +0200 | [diff] [blame] | 112 | } |
| 113 | |
Jamie Hannaford | 965ae70 | 2014-09-22 14:58:19 +0200 | [diff] [blame] | 114 | type UpdateOpts networkOpts |
| 115 | |
Jamie Hannaford | e3bb3f6 | 2014-10-06 09:40:27 +0200 | [diff] [blame^] | 116 | func (o UpdateOpts) ToNetworkUpdateMap() map[string]map[string]interface{} { |
Jamie Hannaford | 7db63f2 | 2014-09-29 11:18:45 +0200 | [diff] [blame] | 117 | inner := make(map[string]interface{}) |
| 118 | |
| 119 | if o.AdminStateUp != nil { |
| 120 | inner["admin_state_up"] = &o.AdminStateUp |
| 121 | } |
| 122 | if o.Name != "" { |
| 123 | inner["name"] = o.Name |
| 124 | } |
| 125 | if o.Shared != nil { |
| 126 | inner["shared"] = &o.Shared |
| 127 | } |
| 128 | |
| 129 | outer := make(map[string]map[string]interface{}) |
| 130 | outer["network"] = inner |
| 131 | |
| 132 | return outer |
| 133 | } |
| 134 | |
Jamie Hannaford | 686c496 | 2014-09-23 10:46:20 +0200 | [diff] [blame] | 135 | // Update accepts a UpdateOpts struct and updates an existing network using the |
| 136 | // values provided. For more information, see the Create function. |
Jamie Hannaford | e3bb3f6 | 2014-10-06 09:40:27 +0200 | [diff] [blame^] | 137 | func Update(c *gophercloud.ServiceClient, networkID string, opts UpdateOptsBuilder) UpdateResult { |
Jamie Hannaford | 7db63f2 | 2014-09-29 11:18:45 +0200 | [diff] [blame] | 138 | var res UpdateResult |
| 139 | |
Jamie Hannaford | e3bb3f6 | 2014-10-06 09:40:27 +0200 | [diff] [blame^] | 140 | reqBody := opts.ToNetworkUpdateMap() |
Jamie Hannaford | 7947505 | 2014-09-15 17:08:06 +0200 | [diff] [blame] | 141 | |
Jamie Hannaford | 7947505 | 2014-09-15 17:08:06 +0200 | [diff] [blame] | 142 | // Send request to API |
Jamie Hannaford | 6f57e9e | 2014-10-02 10:27:28 +0200 | [diff] [blame] | 143 | _, res.Err = perigee.Request("PUT", getURL(c, networkID), perigee.Options{ |
Jamie Hannaford | 7947505 | 2014-09-15 17:08:06 +0200 | [diff] [blame] | 144 | MoreHeaders: c.Provider.AuthenticatedHeaders(), |
| 145 | ReqBody: &reqBody, |
Jamie Hannaford | d903642 | 2014-09-23 17:50:24 +0200 | [diff] [blame] | 146 | Results: &res.Resp, |
Jamie Hannaford | f84171d | 2014-09-18 14:00:01 +0200 | [diff] [blame] | 147 | OkCodes: []int{200, 201}, |
Jamie Hannaford | 7947505 | 2014-09-15 17:08:06 +0200 | [diff] [blame] | 148 | }) |
Jamie Hannaford | 6f57e9e | 2014-10-02 10:27:28 +0200 | [diff] [blame] | 149 | |
Jamie Hannaford | d903642 | 2014-09-23 17:50:24 +0200 | [diff] [blame] | 150 | return res |
Jamie Hannaford | 7947505 | 2014-09-15 17:08:06 +0200 | [diff] [blame] | 151 | } |
Jamie Hannaford | 4721abc | 2014-09-16 16:29:04 +0200 | [diff] [blame] | 152 | |
Jamie Hannaford | 686c496 | 2014-09-23 10:46:20 +0200 | [diff] [blame] | 153 | // Delete accepts a unique ID and deletes the network associated with it. |
Jamie Hannaford | d903642 | 2014-09-23 17:50:24 +0200 | [diff] [blame] | 154 | func Delete(c *gophercloud.ServiceClient, networkID string) DeleteResult { |
| 155 | var res DeleteResult |
Jamie Hannaford | 6f57e9e | 2014-10-02 10:27:28 +0200 | [diff] [blame] | 156 | _, res.Err = perigee.Request("DELETE", deleteURL(c, networkID), perigee.Options{ |
Jamie Hannaford | 4721abc | 2014-09-16 16:29:04 +0200 | [diff] [blame] | 157 | MoreHeaders: c.Provider.AuthenticatedHeaders(), |
| 158 | OkCodes: []int{204}, |
| 159 | }) |
Jamie Hannaford | d903642 | 2014-09-23 17:50:24 +0200 | [diff] [blame] | 160 | return res |
Jamie Hannaford | 4721abc | 2014-09-16 16:29:04 +0200 | [diff] [blame] | 161 | } |