blob: 34df63fee7b06ada05999d537f9f47e017fda216 [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 Wilson152d75a2014-09-15 09:35:03 -040058 return gophercloud.NewLinkedPager(client, u)
Ash Wilson2f5dd1f2014-09-03 14:01:37 -040059}
Ash Wilsonb1129972014-09-03 14:45:21 -040060
Ash Wilson5266e492014-09-09 15:44:30 -040061// Get returns additional information about a service, given its ID.
62func Get(client *gophercloud.ServiceClient, serviceID string) (*Service, error) {
Ash Wilsonb1129972014-09-03 14:45:21 -040063 var resp response
64 _, err := perigee.Request("GET", getServiceURL(client, serviceID), perigee.Options{
65 MoreHeaders: client.Provider.AuthenticatedHeaders(),
66 Results: &resp,
67 OkCodes: []int{200},
68 })
69 if err != nil {
70 return nil, err
71 }
72 return &resp.Service, nil
73}
Ash Wilsond1b72132014-09-03 15:26:26 -040074
75// Update changes the service type of an existing service.s
Ash Wilson64f44152014-09-05 13:45:03 -040076func Update(client *gophercloud.ServiceClient, serviceID string, serviceType string) (*Service, error) {
Ash Wilsond1b72132014-09-03 15:26:26 -040077 type request struct {
78 Type string `json:"type"`
79 }
80
81 req := request{Type: serviceType}
82
83 var resp response
84 _, err := perigee.Request("PATCH", getServiceURL(client, serviceID), perigee.Options{
85 MoreHeaders: client.Provider.AuthenticatedHeaders(),
86 ReqBody: &req,
87 Results: &resp,
88 OkCodes: []int{200},
89 })
90 if err != nil {
91 return nil, err
92 }
93
94 return &resp.Service, nil
95}
Ash Wilsond24786d2014-09-03 15:38:00 -040096
97// Delete removes an existing service.
98// It either deletes all associated endpoints, or fails until all endpoints are deleted.
99func Delete(client *gophercloud.ServiceClient, serviceID string) error {
100 _, err := perigee.Request("DELETE", getServiceURL(client, serviceID), perigee.Options{
101 MoreHeaders: client.Provider.AuthenticatedHeaders(),
102 OkCodes: []int{204},
103 })
104 return err
105}