-
Notifications
You must be signed in to change notification settings - Fork 2
/
user.go
140 lines (117 loc) · 3.22 KB
/
user.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package dbaas
import (
"context"
"encoding/json"
"fmt"
"net/http"
)
// UserCreateOpts represents options for the user Create request.
type UserCreateOpts struct {
Name string `json:"name"`
Password string `json:"password"`
DatastoreID string `json:"datastore_id"`
}
// UserUpdateOpts represents options for the user Update request.
type UserUpdateOpts struct {
Password string `json:"password"`
}
// User is the API response for the users.
type User struct {
ID string `json:"id"`
CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"`
ProjectID string `json:"project_id"`
DatastoreID string `json:"datastore_id"`
Name string `json:"name"`
Status Status `json:"status"`
}
const UsersURI = "/users"
// User returns a user based on the ID.
func (api *API) User(ctx context.Context, userID string) (User, error) {
uri := fmt.Sprintf("%s/%s", UsersURI, userID)
resp, err := api.makeRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return User{}, err
}
var result struct {
User User `json:"user"`
}
err = json.Unmarshal(resp, &result)
if err != nil {
return User{}, fmt.Errorf("Error during Unmarshal, %w", err)
}
return result.User, nil
}
// Users returns all users.
func (api *API) Users(ctx context.Context) ([]User, error) {
resp, err := api.makeRequest(ctx, http.MethodGet, UsersURI, nil)
if err != nil {
return []User{}, err
}
var result struct {
Users []User `json:"users"`
}
err = json.Unmarshal(resp, &result)
if err != nil {
return []User{}, fmt.Errorf("Error during Unmarshal, %w", err)
}
return result.Users, nil
}
// CreateUser creates a new user.
func (api *API) CreateUser(ctx context.Context, opts UserCreateOpts) (User, error) {
createUserOpts := struct {
User UserCreateOpts `json:"user"`
}{
User: opts,
}
requestBody, err := json.Marshal(createUserOpts)
if err != nil {
return User{}, fmt.Errorf("Error marshalling params to JSON, %w", err)
}
resp, err := api.makeRequest(ctx, http.MethodPost, UsersURI, requestBody)
if err != nil {
return User{}, err
}
var result struct {
User User `json:"user"`
}
err = json.Unmarshal(resp, &result)
if err != nil {
return User{}, fmt.Errorf("Error during Unmarshal, %w", err)
}
return result.User, nil
}
// DeleteUser deletes an existing user.
func (api *API) DeleteUser(ctx context.Context, userID string) error {
uri := fmt.Sprintf("%s/%s", UsersURI, userID)
_, err := api.makeRequest(ctx, http.MethodDelete, uri, nil)
if err != nil {
return err
}
return nil
}
// UpdateUser updates an existing user.
func (api *API) UpdateUser(ctx context.Context, userID string, opts UserUpdateOpts) (User, error) {
uri := fmt.Sprintf("%s/%s", UsersURI, userID)
updateUserOpts := struct {
User UserUpdateOpts `json:"user"`
}{
User: opts,
}
requestBody, err := json.Marshal(updateUserOpts)
if err != nil {
return User{}, fmt.Errorf("Error marshalling params to JSON, %w", err)
}
resp, err := api.makeRequest(ctx, http.MethodPut, uri, requestBody)
if err != nil {
return User{}, err
}
var result struct {
User User `json:"user"`
}
err = json.Unmarshal(resp, &result)
if err != nil {
return User{}, fmt.Errorf("Error during Unmarshal, %w", err)
}
return result.User, nil
}