-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapi_comment.go
237 lines (189 loc) · 7.47 KB
/
api_comment.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
package tapd
import (
"context"
"net/http"
)
// CommentEntryType 评论类型
type CommentEntryType string
// CommentEntryType 评论类型
const (
CommentEntryTypeBug CommentEntryType = "bug" // bug
CommentEntryTypeBugRemark CommentEntryType = "bug_remark" // bug_remark (流转缺陷时候的评论)
CommentEntryTypeStories CommentEntryType = "stories" // stories
CommentEntryTypeTasks CommentEntryType = "tasks" // tasks
CommentEntryTypeWiki CommentEntryType = "wiki" // wiki
CommentEntryTypeMiniItems CommentEntryType = "mini_items" // mini_items
)
// String CommentEntryType to string
func (t CommentEntryType) String() string {
return string(t)
}
// Comment 评论
type Comment struct {
ID string `json:"id,omitempty"` // 评论ID
Title string `json:"title,omitempty"` // 标题
Description string `json:"description,omitempty"` // 内容
Author string `json:"author,omitempty"` // 评论人
EntryType CommentEntryType `json:"entry_type,omitempty"` // 评论类型
EntryID string `json:"entry_id,omitempty"` // 评论所依附的业务对象实体id
ReplyID string `json:"reply_id,omitempty"` // 评论回复的ID
RootID string `json:"root_id,omitempty"` // 根评论ID
Created string `json:"created,omitempty"` // 创建时间
Modified string `json:"modified,omitempty"` // 最后更改时间
WorkspaceID string `json:"workspace_id,omitempty"` // 项目ID
}
// =====================================================================================================================
// CommentService 评论服务
type CommentService struct {
client *Client
}
type CreateCommentRequest struct {
Title *string `json:"title,omitempty"` // 标题
Description *string `json:"description,omitempty"` // 内容
Author *string `json:"author,omitempty"` // 评论人
EntryType *CommentEntryType `json:"entry_type,omitempty"` // 评论类型
EntryID *int `json:"entry_id,omitempty"` // 评论所依附的业务对象实体id
ReplyID *int `json:"reply_id,omitempty"` // 评论回复的ID
RootID *int `json:"root_id,omitempty"` // 根评论ID
WorkspaceID *int `json:"workspace_id,omitempty"` // 项目ID
}
// CreateComment 添加评论接口
//
// https://open.tapd.cn/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/comment/add_comment.html
func (s *CommentService) CreateComment(
ctx context.Context, request *CreateCommentRequest, opts ...RequestOption,
) (*Comment, *Response, error) {
req, err := s.client.NewRequest(ctx, http.MethodPost, "comments", request, opts)
if err != nil {
return nil, nil, err
}
var response struct {
Comment *Comment `json:"Comment"`
}
resp, err := s.client.Do(req, &response)
if err != nil {
return nil, resp, err
}
return response.Comment, resp, nil
}
type GetCommentsRequest struct {
// 评论ID 支持多ID查询
ID *Multi[int] `url:"id,omitempty"`
// 标题
Title *string `url:"title,omitempty"`
// 内容
Description *string `url:"description,omitempty"`
// 评论人
Author *string `url:"author,omitempty"`
// 评论类型(取值: bug、 bug_remark (流转缺陷时候的评论)、 stories、 tasks 。多个类型间以竖线隔开) 支持枚举查询
EntryType *CommentEntryType `url:"entry_type,omitempty"`
// 评论所依附的业务对象实体id
EntryID *int `url:"entry_id,omitempty"`
// 创建时间 支持时间查询
Created *string `url:"created,omitempty"`
// 最后更改时间 支持时间查询
Modified *string `url:"modified,omitempty"`
// 项目ID
WorkspaceID *int `url:"workspace_id,omitempty"`
// 根评论ID
RootID *int `url:"root_id,omitempty"`
// 评论回复的ID
ReplyID *int `url:"reply_id,omitempty"`
// 设置返回数量限制,默认为30
Limit *int `url:"limit,omitempty"`
// 返回当前数量限制下第N页的数据,默认为1(第一页)
Page *int `url:"page,omitempty"`
// 排序规则,规则:字段名 ASC或者DESC,然后 urlencode 如按创建时间逆序:order=created%20desc
Order *Order `url:"order,omitempty"`
// 设置获取的字段,多个字段间以','逗号隔开
Fields *Multi[string] `url:"fields,omitempty"`
}
// GetComments 获取评论
//
// https://open.tapd.cn/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/comment/get_comments.html
func (s *CommentService) GetComments(
ctx context.Context, request *GetCommentsRequest, opts ...RequestOption,
) ([]*Comment, *Response, error) {
req, err := s.client.NewRequest(ctx, http.MethodGet, "comments", request, opts)
if err != nil {
return nil, nil, err
}
var items []struct {
Comment *Comment `json:"Comment"`
}
resp, err := s.client.Do(req, &items)
if err != nil {
return nil, resp, err
}
comments := make([]*Comment, 0, len(items))
for _, item := range items {
comments = append(comments, item.Comment)
}
return comments, resp, nil
}
type GetCommentsCountRequest struct {
// 评论ID 支持多ID查询
ID *Multi[int] `url:"id,omitempty"`
// 标题
Title *string `url:"title,omitempty"`
// 内容
Description *string `url:"description,omitempty"`
// 评论人
Author *string `url:"author,omitempty"`
// 评论类型(取值: bug、 bug_remark (流转缺陷时候的评论)、 stories、 tasks 。多个类型间以竖线隔开) 支持枚举查询
EntryType *CommentEntryType `url:"entry_type,omitempty"`
// 评论所依附的业务对象实体id
EntryID *int `url:"entry_id,omitempty"`
// 创建时间 支持时间查询
Created *string `url:"created,omitempty"`
// 最后更改时间 支持时间查询
Modified *string `url:"modified,omitempty"`
// 项目ID
WorkspaceID *int `url:"workspace_id,omitempty"`
// 根评论ID
RootID *int `url:"root_id,omitempty"`
// 评论回复的ID
ReplyID *int `url:"reply_id,omitempty"`
}
// GetCommentsCount 获取评论数量
//
// https://open.tapd.cn/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/comment/get_comments_count.html
func (s *CommentService) GetCommentsCount(
ctx context.Context, request *GetCommentsCountRequest, opts ...RequestOption,
) (int, *Response, error) {
req, err := s.client.NewRequest(ctx, http.MethodGet, "comments/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 UpdateCommentRequest struct {
WorkspaceID *int `json:"workspace_id,omitempty"` // [必须]项目ID
ID *int `json:"id,omitempty"` // [必须]评论ID
Description *string `json:"description,omitempty"` // [必须]内容
ChangeCreator *string `json:"change_creator,omitempty"` // 变更人
}
// UpdateComment 更新评论接口
//
// https://open.tapd.cn/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/comment/update_comment.html
func (s *CommentService) UpdateComment(
ctx context.Context, request *UpdateCommentRequest, opts ...RequestOption,
) (*Comment, *Response, error) {
req, err := s.client.NewRequest(ctx, http.MethodPost, "comments", request, opts)
if err != nil {
return nil, nil, err
}
var response struct {
Comment *Comment `json:"Comment"`
}
resp, err := s.client.Do(req, &response)
if err != nil {
return nil, resp, err
}
return response.Comment, resp, nil
}