This repository has been archived by the owner on Jun 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
graph.go
243 lines (220 loc) · 5.36 KB
/
graph.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
package pixela
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
)
//GraphInfo is need info to create graph
type GraphInfo struct {
ID string `json:"id"`
Name string `json:"name"`
Unit string `json:"unit"`
UnitType string `json:"type"`
Color string `json:"color"`
}
//Validate check info need create Graph
func (gi GraphInfo) Validate() error {
if gi.ID == "" {
return errors.New("id is empty. plz input")
}
if gi.Name == "" {
return errors.New("name is empty. plz input")
}
if gi.Unit == "" {
return errors.New("unit name is empty. plz input")
}
switch gi.UnitType {
case "int", "float":
default:
return errors.New("invalid unit type. expected int or float")
}
switch gi.Color {
case "shibafu", "momiji", "sora", "ichou", "ajisai", "kuro":
default:
return errors.New("invalid color")
}
return nil
}
//CreateGraph create new graph
func (c Client) CreateGraph(gi GraphInfo) error {
if c.UserName == "" || c.Token == "" {
return errors.New("Plz set user information in Client")
}
giJSON, err := json.Marshal(gi)
if err != nil {
return err
}
u := fmt.Sprintf("%s/users/%s/graphs", c.URL, c.UserName)
req, err := http.NewRequest("POST", u, bytes.NewBuffer(giJSON))
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-USER-TOKEN", c.Token)
res, err := c.HTTPClient.Do(req)
if err != nil {
return err
}
if res.StatusCode != http.StatusOK {
return errors.New("return status code: " + res.Status)
}
bodyJSON, err := ioutil.ReadAll(res.Body)
if err != nil {
return err
}
type ResponseBody struct {
Message string `json:"message"`
IsSuccess bool `json:"isSuccess"`
}
body := ResponseBody{}
err = json.Unmarshal(bodyJSON, &body)
if err != nil {
return err
}
if !body.IsSuccess {
return errors.New(body.Message)
}
return nil
}
//ListGraph return User's graph info list
func (c Client) ListGraph() ([]GraphInfo, error) {
if c.UserName == "" || c.Token == "" {
return nil, errors.New("Plz set user information in Client")
}
u := fmt.Sprintf("%s/users/%s/graphs", c.URL, c.UserName)
req, err := http.NewRequest("GET", u, nil)
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-USER-TOKEN", c.Token)
res, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
if res.StatusCode != http.StatusOK {
return nil, errors.New("return status code: " + res.Status)
}
bodyJSON, err := ioutil.ReadAll(res.Body)
if err != nil {
return nil, err
}
type ResponseBody struct {
Graphs []GraphInfo `json:"graphs"`
}
body := ResponseBody{}
err = json.Unmarshal(bodyJSON, &body)
if err != nil {
return nil, err
}
return body.Graphs, nil
}
//GetGraph get specific graphs's svg
func (c Client) GetGraph(id, date string) (string, error) {
if c.UserName == "" || c.Token == "" {
return "", errors.New("Plz set user information in Client")
}
u := fmt.Sprintf("%s/users/%s/graphs/%s", c.URL, c.UserName, id)
req, err := http.NewRequest("GET", u, nil)
if err != nil {
return "", err
}
req.Header.Set("X-USER-TOKEN", c.Token)
if date != "" {
q := req.URL.Query()
q.Add("date", date)
req.URL.RawQuery = q.Encode()
}
res, err := c.HTTPClient.Do(req)
if err != nil {
return "", err
}
if res.StatusCode != http.StatusOK {
return "", errors.New("return status code: " + res.Status)
}
body, err := ioutil.ReadAll(res.Body)
if err != nil {
return "", err
}
return string(body), nil
}
//UpdateGraph update specific graphs's information
func (c Client) UpdateGraph(gi GraphInfo) error {
if c.UserName == "" || c.Token == "" {
return errors.New("Plz set user information in Client")
}
giJSON, err := json.Marshal(gi)
if err != nil {
return err
}
u := fmt.Sprintf("%s/users/%s/graphs/%s", c.URL, c.UserName, gi.ID)
req, err := http.NewRequest("PUT", u, bytes.NewBuffer(giJSON))
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-USER-TOKEN", c.Token)
res, err := c.HTTPClient.Do(req)
if err != nil {
return err
}
if res.StatusCode != http.StatusOK {
return errors.New("return status code: " + res.Status)
}
bodyJSON, err := ioutil.ReadAll(res.Body)
if err != nil {
return err
}
type ResponseBody struct {
Message string `json:"message"`
IsSuccess bool `json:"isSuccess"`
}
body := ResponseBody{}
err = json.Unmarshal(bodyJSON, &body)
if err != nil {
return err
}
if !body.IsSuccess {
return errors.New(body.Message)
}
return nil
}
//DeleteGraph delete specific graphs
func (c Client) DeleteGraph(id string) error {
if c.UserName == "" || c.Token == "" {
return errors.New("Plz set user information in Client")
}
u := fmt.Sprintf("%s/users/%s/graphs/%s", c.URL, c.UserName, id)
req, err := http.NewRequest("DELETE", u, nil)
if err != nil {
return err
}
req.Header.Set("X-USER-TOKEN", c.Token)
res, err := c.HTTPClient.Do(req)
if err != nil {
return err
}
if res.StatusCode != http.StatusOK {
return errors.New("return status code: " + res.Status)
}
bodyJSON, err := ioutil.ReadAll(res.Body)
if err != nil {
return err
}
type ResponseBody struct {
Message string `json:"message"`
IsSuccess bool `json:"isSuccess"`
}
body := ResponseBody{}
err = json.Unmarshal(bodyJSON, &body)
if err != nil {
return err
}
if !body.IsSuccess {
return errors.New(body.Message)
}
return nil
}