-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapp_locations.go
130 lines (107 loc) · 2.58 KB
/
app_locations.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
package crocgodyl
import (
"bytes"
"encoding/json"
"fmt"
"time"
)
type Location struct {
ID int `json:"id"`
Short string `json:"short"`
Long string `json:"long"`
CreatedAt *time.Time `json:"created_at"`
UpdatedAt *time.Time `json:"updated_at,omitempty"`
}
func (a *Application) GetLocations() ([]*Location, error) {
req := a.newRequest("GET", "/locations", nil)
res, err := a.Http.Do(req)
if err != nil {
return nil, err
}
buf, err := validate(res)
if err != nil {
return nil, err
}
var model struct {
Data []struct {
Attributes *Location `json:"attributes"`
} `json:"data"`
}
if err = json.Unmarshal(buf, &model); err != nil {
return nil, err
}
locs := make([]*Location, 0, len(model.Data))
for _, l := range model.Data {
locs = append(locs, l.Attributes)
}
return locs, nil
}
func (a *Application) GetLocation(id int) (*Location, error) {
req := a.newRequest("GET", fmt.Sprintf("/locations/%d", id), nil)
res, err := a.Http.Do(req)
if err != nil {
return nil, err
}
buf, err := validate(res)
if err != nil {
return nil, err
}
var model struct {
Attributes Location `json:"attributes"`
}
if err = json.Unmarshal(buf, &model); err != nil {
return nil, err
}
return &model.Attributes, nil
}
func (a *Application) CreateLocation(short, long string) (*Location, error) {
data, _ := json.Marshal(map[string]string{"short": short, "long": long})
body := bytes.Buffer{}
body.Write(data)
req := a.newRequest("POST", "/locations", &body)
res, err := a.Http.Do(req)
if err != nil {
return nil, err
}
buf, err := validate(res)
if err != nil {
return nil, err
}
var model struct {
Attributes Location `json:"attributes"`
}
if err = json.Unmarshal(buf, &model); err != nil {
return nil, err
}
return &model.Attributes, nil
}
func (a *Application) UpdateLocation(id int, short, long string) (*Location, error) {
data, _ := json.Marshal(map[string]string{"short": short, "long": long})
body := bytes.Buffer{}
body.Write(data)
req := a.newRequest("PATCH", fmt.Sprintf("/locations/%d", id), &body)
res, err := a.Http.Do(req)
if err != nil {
return nil, err
}
buf, err := validate(res)
if err != nil {
return nil, err
}
var model struct {
Attributes Location `json:"attributes"`
}
if err = json.Unmarshal(buf, &model); err != nil {
return nil, err
}
return &model.Attributes, nil
}
func (a *Application) DeleteLocation(id int) error {
req := a.newRequest("DELETE", fmt.Sprintf("/locations/%d", id), nil)
res, err := a.Http.Do(req)
if err != nil {
return err
}
_, err = validate(res)
return err
}