-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapi_timesheet.go
236 lines (186 loc) · 7.93 KB
/
api_timesheet.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
package tapd
import (
"context"
"net/http"
)
type (
Timesheet struct {
ID string `json:"id,omitempty"` // id
EntityType EntityType `json:"entity_type,omitempty"` // 对象类型,如story、task、bug等
EntityID string `json:"entity_id,omitempty"` // 对象ID
Timespent string `json:"timespent,omitempty"` // 花费工时
Spentdate string `json:"spentdate,omitempty"` // 花费日期
Owner string `json:"owner,omitempty"` // 花费创建人
Created string `json:"created,omitempty"` // 创建时间
Modified string `json:"modified,omitempty"` // 最后修改时间
WorkspaceID string `json:"workspace_id,omitempty"` // 项目ID
Memo string `json:"memo,omitempty"` // 花费描述
IsDelete string `json:"is_delete,omitempty"` // 是否已删除
}
)
type TimesheetService struct {
client *Client
}
// -----------------------------------------------------------------------------
// 创建工时花费
// -----------------------------------------------------------------------------
type CreateTimesheetRequest struct {
EntityType *EntityType `json:"entity_type,omitempty"` // [必须]对象类型,如story、task、bug等
EntityID *int `json:"entity_id,omitempty"` // [必须]对象ID
Timespent *string `json:"timespent,omitempty"` // [必须]花费工时
Timeremain *string `json:"timeremain,omitempty"` // 剩余工时
Spentdate *string `json:"spentdate,omitempty"` // 花费日期
Owner *string `json:"owner,omitempty"` // [必须]花费创建人
WorkspaceID *int `json:"workspace_id,omitempty"` // [必须]项目ID
Memo *string `json:"memo,omitempty"` // 花费描述
}
// CreateTimesheet 创建工时花费
// https://open.tapd.cn/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/timesheet/add_timesheet.html
func (s *TimesheetService) CreateTimesheet(
ctx context.Context, request *CreateTimesheetRequest, opts ...RequestOption,
) (*Timesheet, *Response, error) {
req, err := s.client.NewRequest(ctx, http.MethodPost, "timesheets", request, opts)
if err != nil {
return nil, nil, err
}
var response struct {
Timesheet *Timesheet `json:"Timesheet"`
}
resp, err := s.client.Do(req, &response)
if err != nil {
return nil, resp, err
}
return response.Timesheet, resp, nil
}
// -----------------------------------------------------------------------------
// 获取工时花费
// -----------------------------------------------------------------------------
type GetTimesheetsRequest struct {
// [可选]id 支持多ID查询
ID *Multi[int] `url:"id,omitempty"`
// [必选]项目ID
WorkspaceID *int `url:"workspace_id,omitempty"`
// [可选]对象类型,如story、task、bug等
EntityType *EntityType `url:"entity_type,omitempty"`
// [可选]对象ID
EntityID *int `url:"entity_id,omitempty"`
// [可选]花费工时
Timespent *string `url:"timespent,omitempty"`
// [可选]花费日期 支持时间查询
Spentdate *string `url:"spentdate,omitempty"`
// [可选]最后修改时间 支持时间查询
Modified *string `url:"modified,omitempty"`
// [可选]花费创建人
Owner *string `url:"owner,omitempty"`
// [可选]值=0不返回父需求的花费
IncludeParentStoryTimesheet *int `url:"include_parent_story_timesheet,omitempty"`
// [可选]创建时间 支持时间查询
Created *string `url:"created,omitempty"`
// [可选]花费描述
Memo *string `url:"memo,omitempty"`
// [可选]是否已删除。默认取 0,不返回已删除的工时记录。取 1 可以返回已删除的记录
IsDelete *int `url:"is_delete,omitempty"`
// [可选]设置返回数量限制,默认为30
Limit *int `url:"limit,omitempty"`
// [可选]返回当前数量限制下第N页的数据,默认为1(第一页)
Page *int `url:"page,omitempty"`
// [可选]排序规则,规则:字段名 ASC或者DESC,然后 urlencode 如按创建时间逆序
Order *Order `url:"order,omitempty"`
// [可选]设置获取的字段,多个字段间以','逗号隔开
Fields *Multi[string] `url:"fields,omitempty"`
}
// GetTimesheets 获取工时花费
// https://open.tapd.cn/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/timesheet/get_timesheets.html
func (s *TimesheetService) GetTimesheets(
ctx context.Context, request *GetTimesheetsRequest, opts ...RequestOption,
) ([]*Timesheet, *Response, error) {
req, err := s.client.NewRequest(ctx, http.MethodGet, "timesheets", request, opts)
if err != nil {
return nil, nil, err
}
var items []struct {
Timesheet *Timesheet `json:"Timesheet"`
}
resp, err := s.client.Do(req, &items)
if err != nil {
return nil, resp, err
}
timesheets := make([]*Timesheet, 0, len(items))
for _, item := range items {
timesheets = append(timesheets, item.Timesheet)
}
return timesheets, resp, nil
}
// -----------------------------------------------------------------------------
// 获取工时花费的数量
// -----------------------------------------------------------------------------
type GetTimesheetsCountRequest struct {
// [可选]id 支持多ID查询
ID *Multi[int] `url:"id,omitempty"`
// [必选]项目ID
WorkspaceID *int `url:"workspace_id,omitempty"`
// [可选]对象类型,如story、task、bug等
EntityType *EntityType `url:"entity_type,omitempty"`
// [可选]对象ID
EntityID *int `url:"entity_id,omitempty"`
// [可选]花费工时
Timespent *string `url:"timespent,omitempty"`
// [可选]花费日期 支持时间查询
Spentdate *string `url:"spentdate,omitempty"`
// [可选]最后修改时间 支持时间查询
Modified *string `url:"modified,omitempty"`
// [可选]花费创建人
Owner *string `url:"owner,omitempty"`
// [可选]值=0不返回父需求的花费
IncludeParentStoryTimesheet *int `url:"include_parent_story_timesheet,omitempty"`
// [可选]创建时间 支持时间查询
Created *string `url:"created,omitempty"`
// [可选]花费描述
Memo *string `url:"memo,omitempty"`
// [可选]是否已删除。默认取 0,不返回已删除的工时记录。取 1 可以返回已删除的记录
IsDelete *int `url:"is_delete,omitempty"`
}
// GetTimesheetsCount 获取工时花费的数量
// https://open.tapd.cn/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/timesheet/get_timesheets_count.html
func (s *TimesheetService) GetTimesheetsCount(
ctx context.Context, request *GetTimesheetsCountRequest, opts ...RequestOption,
) (int, *Response, error) {
req, err := s.client.NewRequest(ctx, http.MethodGet, "timesheets/count", request, opts)
if err != nil {
return 0, nil, err
}
var response CountResponse
resp, err := s.client.Do(req, &response)
if err != nil {
return 0, resp, err
}
return response.Count, resp, nil
}
// -----------------------------------------------------------------------------
// 更新工时花费
// -----------------------------------------------------------------------------
type UpdateTimesheetRequest struct {
ID *int `json:"id"` // [必须]工时花费ID
Timespent *string `json:"timespent,omitempty"` // [可选]花费工时
Timeremain *string `json:"timeremain,omitempty"` // [可选]剩余工时
WorkspaceID *int `json:"workspace_id,omitempty"` // [必须]项目ID
Memo *string `json:"memo,omitempty"` // [可选]花费描述
}
// UpdateTimesheet 更新工时花费
// https://open.tapd.cn/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/timesheet/update_timesheet.html
func (s *TimesheetService) UpdateTimesheet(
ctx context.Context, request *UpdateTimesheetRequest, opts ...RequestOption,
) (*Timesheet, *Response, error) {
req, err := s.client.NewRequest(ctx, http.MethodPost, "timesheets", request, opts)
if err != nil {
return nil, nil, err
}
var response struct {
Timesheet *Timesheet `json:"Timesheet"`
}
resp, err := s.client.Do(req, &response)
if err != nil {
return nil, resp, err
}
return response.Timesheet, resp, nil
}