blob: 7bc4a823cf5ab0568b287d2fa55c0dc264dd329d [file] [log] [blame]
Ash Wilsonb73b7f82014-08-29 15:38:06 -04001package services
2
3import (
Ash Wilson2f5dd1f2014-09-03 14:01:37 -04004 "strconv"
5
Ash Wilsonb73b7f82014-08-29 15:38:06 -04006 "github.com/racker/perigee"
7 "github.com/rackspace/gophercloud"
Ash Wilson2f5dd1f2014-09-03 14:01:37 -04008 "github.com/rackspace/gophercloud/openstack/utils"
Ash Wilsonb73b7f82014-08-29 15:38:06 -04009)
10
Ash Wilsond1b72132014-09-03 15:26:26 -040011type response struct {
Ash Wilson64f44152014-09-05 13:45:03 -040012 Service Service `json:"service"`
Ash Wilsond1b72132014-09-03 15:26:26 -040013}
14
Ash Wilsonb73b7f82014-08-29 15:38:06 -040015// Create adds a new service of the requested type to the catalog.
Ash Wilson64f44152014-09-05 13:45:03 -040016func Create(client *gophercloud.ServiceClient, serviceType string) (*Service, error) {
Ash Wilsonb73b7f82014-08-29 15:38:06 -040017 type request struct {
18 Type string `json:"type"`
19 }
20
Ash Wilsonb73b7f82014-08-29 15:38:06 -040021 req := request{Type: serviceType}
22 var resp response
23
24 _, err := perigee.Request("POST", getListURL(client), perigee.Options{
Ash Wilsona87ee062014-09-03 11:26:06 -040025 MoreHeaders: client.Provider.AuthenticatedHeaders(),
Ash Wilsonb73b7f82014-08-29 15:38:06 -040026 ReqBody: &req,
27 Results: &resp,
28 OkCodes: []int{201},
29 })
30 if err != nil {
31 return nil, err
32 }
33
34 return &resp.Service, nil
35}
Ash Wilson2f5dd1f2014-09-03 14:01:37 -040036
37// ListOpts allows you to query the List method.
38type ListOpts struct {
39 ServiceType string
40 PerPage int
41 Page int
42}
43
44// List enumerates the services available to a specific user.
Ash Wilsonbddac132014-09-12 14:20:16 -040045func List(client *gophercloud.ServiceClient, opts ListOpts) gophercloud.Pager {
Ash Wilson2f5dd1f2014-09-03 14:01:37 -040046 q := make(map[string]string)
47 if opts.ServiceType != "" {
48 q["type"] = opts.ServiceType
49 }
50 if opts.Page != 0 {
51 q["page"] = strconv.Itoa(opts.Page)
52 }
53 if opts.PerPage != 0 {
54 q["perPage"] = strconv.Itoa(opts.PerPage)
55 }
56 u := getListURL(client) + utils.BuildQuery(q)
57
Ash Wilsonab6be612014-09-15 15:51:22 -040058 countPage := func(p gophercloud.Page) (int, error) {
59 services, err := ExtractServices(p)
60 if err != nil {
61 return 0, err
62 }
63 return len(services), nil
64 }
65
66 return gophercloud.NewLinkedPager(client, u, countPage)
Ash Wilson2f5dd1f2014-09-03 14:01:37 -040067}
Ash Wilsonb1129972014-09-03 14:45:21 -040068
Ash Wilson5266e492014-09-09 15:44:30 -040069// Get returns additional information about a service, given its ID.
70func Get(client *gophercloud.ServiceClient, serviceID string) (*Service, error) {
Ash Wilsonb1129972014-09-03 14:45:21 -040071 var resp response
72 _, err := perigee.Request("GET", getServiceURL(client, serviceID), perigee.Options{
73 MoreHeaders: client.Provider.AuthenticatedHeaders(),
74 Results: &resp,
75 OkCodes: []int{200},
76 })
77 if err != nil {
78 return nil, err
79 }
80 return &resp.Service, nil
81}
Ash Wilsond1b72132014-09-03 15:26:26 -040082
83// Update changes the service type of an existing service.s
Ash Wilson64f44152014-09-05 13:45:03 -040084func Update(client *gophercloud.ServiceClient, serviceID string, serviceType string) (*Service, error) {
Ash Wilsond1b72132014-09-03 15:26:26 -040085 type request struct {
86 Type string `json:"type"`
87 }
88
89 req := request{Type: serviceType}
90
91 var resp response
92 _, err := perigee.Request("PATCH", getServiceURL(client, serviceID), perigee.Options{
93 MoreHeaders: client.Provider.AuthenticatedHeaders(),
94 ReqBody: &req,
95 Results: &resp,
96 OkCodes: []int{200},
97 })
98 if err != nil {
99 return nil, err
100 }
101
102 return &resp.Service, nil
103}
Ash Wilsond24786d2014-09-03 15:38:00 -0400104
105// Delete removes an existing service.
106// It either deletes all associated endpoints, or fails until all endpoints are deleted.
107func Delete(client *gophercloud.ServiceClient, serviceID string) error {
108 _, err := perigee.Request("DELETE", getServiceURL(client, serviceID), perigee.Options{
109 MoreHeaders: client.Provider.AuthenticatedHeaders(),
110 OkCodes: []int{204},
111 })
112 return err
113}