-
Notifications
You must be signed in to change notification settings - Fork 0
/
groups.go
76 lines (68 loc) · 2.26 KB
/
groups.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
package wrikego
import (
"fmt"
"net/http"
params "github.com/TGoers-FNSB/WrikeGo/parameters"
resp "github.com/TGoers-FNSB/WrikeGo/response"
query "github.com/TGoers-FNSB/go-querystring-wrike/query"
)
func QueryGroupsById(config Config, params params.QueryGroups, pathId string) (resp.Groups, *http.Response) {
path := fmt.Sprintf("/groups/%s", pathId)
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Get(config, path, body)
ErrorCheck(err)
json, err := resp.GroupsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func QueryGroups(config Config, params params.QueryGroups) (resp.Groups, *http.Response) {
path := "/groups"
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Get(config, path, body)
ErrorCheck(err)
json, err := resp.GroupsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func CreateGroups(config Config, params params.CreateGroups) (resp.Groups, *http.Response) {
path := "/groups"
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Post(config, path, body)
ErrorCheck(err)
json, err := resp.GroupsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func ModifyGroupsBulk(config Config, params params.ModifyGroupsBulk) (resp.Groups, *http.Response) {
path := "groups_bulk"
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Put(config, path, body)
ErrorCheck(err)
json, err := resp.GroupsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func ModifyGroupsById(config Config, params params.ModifyGroups, pathId string) (resp.Groups, *http.Response) {
path := fmt.Sprintf("/groups/%s", pathId)
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Put(config, path, body)
ErrorCheck(err)
json, err := resp.GroupsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func DeleteGroupsById(config Config, params params.DeleteGroups, pathId string) (resp.Groups, *http.Response) {
path := fmt.Sprintf("/groups/%s", pathId)
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Delete(config, path, body)
ErrorCheck(err)
json, err := resp.GroupsFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}