-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.go
109 lines (99 loc) · 3.49 KB
/
tasks.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
package wrikego
import (
"fmt"
"net/http"
"strings"
params "github.com/TGoers-FNSB/WrikeGo/parameters"
resp "github.com/TGoers-FNSB/WrikeGo/response"
query "github.com/TGoers-FNSB/go-querystring-wrike/query"
)
func QueryTasks(config Config, params params.QueryTasks) (resp.Tasks, *http.Response) {
path := "/tasks"
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Get(config, path, body)
ErrorCheck(err)
json, err := resp.TasksFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func QueryTasksByFolder(config Config, params params.QueryTasks, pathId string) (resp.Tasks, *http.Response) {
path := fmt.Sprintf("/folders/%s/tasks", pathId)
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Get(config, path, body)
ErrorCheck(err)
json, err := resp.TasksFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func QueryTasksBySpace(config Config, params params.QueryTasks, pathId string) (resp.Tasks, *http.Response) {
path := fmt.Sprintf("/spaces/%s/tasks", pathId)
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Get(config, path, body)
ErrorCheck(err)
json, err := resp.TasksFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func QueryTasksByIds(config Config, params params.QueryTasks, pathId []string) (resp.Tasks, *http.Response) {
path := fmt.Sprintf("/tasks/%s", strings.Join(pathId, ","))
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Get(config, path, body)
ErrorCheck(err)
json, err := resp.TasksFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func QueryTasksFieldsHistoryByTasks(config Config, params params.QueryTasksFieldsHistory, pathId []string) (resp.Tasks, *http.Response) {
path := fmt.Sprintf("/tasks/%s/tasks_history", strings.Join(pathId, ","))
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Get(config, path, body)
ErrorCheck(err)
json, err := resp.TasksFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
//----------------------
func CreateTasksByFolder(config Config, params params.CreateTasks, pathId string) (resp.Tasks, *http.Response) {
path := fmt.Sprintf("/folders/%s/tasks", pathId)
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Post(config, path, body)
ErrorCheck(err)
json, err := resp.TasksFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
//-----------------------
func ModifyTasksById(config Config, params params.ModifyTasks, pathId string) (resp.Tasks, *http.Response) {
path := fmt.Sprintf("/tasks/%s", pathId)
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Put(config, path, body)
ErrorCheck(err)
json, err := resp.TasksFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func ModifyTasksByIds(config Config, params params.ModifyTasks, pathId []string) (resp.Tasks, *http.Response) {
path := fmt.Sprintf("/tasks/%s", strings.Join(pathId, ","))
body, err := query.Values(params)
ErrorCheck(err)
response, httpResponse, err := Put(config, path, body)
ErrorCheck(err)
json, err := resp.TasksFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}
func DeleteTasksById(config Config, pathId string) (resp.Tasks, *http.Response) {
path := fmt.Sprintf("/tasks/%s", pathId)
response, httpResponse, err := Delete(config, path, nil)
ErrorCheck(err)
json, err := resp.TasksFromJSON(response)
ErrorCheck(err)
return json, httpResponse
}