forked from MrRefactoring/jira.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissueComments.ts
309 lines (295 loc) · 13.4 KB
/
issueComments.ts
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
import * as Models from './models';
import * as Parameters from './parameters';
import { Callback } from '../callback';
import { Client } from '../clients';
import { RequestConfig } from '../requestConfig';
export class IssueComments {
constructor(private client: Client) {}
/**
* Returns a [paginated](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#pagination) list of
* comments specified by a list of comment IDs.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Comments are returned where the user:
*
* - Has _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project containing
* the comment.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
* - If the comment has visibility restrictions, belongs to the group or has the role visibility is restricted to.
*/
async getCommentsByIds<T = Models.PageComment>(
parameters: Parameters.GetCommentsByIds,
callback: Callback<T>,
): Promise<void>;
/**
* Returns a [paginated](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#pagination) list of
* comments specified by a list of comment IDs.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Comments are returned where the user:
*
* - Has _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project containing
* the comment.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
* - If the comment has visibility restrictions, belongs to the group or has the role visibility is restricted to.
*/
async getCommentsByIds<T = Models.PageComment>(parameters: Parameters.GetCommentsByIds, callback?: never): Promise<T>;
async getCommentsByIds<T = Models.PageComment>(
parameters: Parameters.GetCommentsByIds,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/comment/list',
method: 'POST',
params: {
expand: parameters.expand,
},
data: {
ids: parameters.ids,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Returns all comments for an issue.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Comments are included in the response where the user has:
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project containing the
* comment.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
* - If the comment has visibility restrictions, belongs to the group or has the role visibility is role visibility is
* restricted to.
*/
async getComments<T = Models.PageOfComments>(
parameters: Parameters.GetComments | string,
callback: Callback<T>,
): Promise<void>;
/**
* Returns all comments for an issue.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* Comments are included in the response where the user has:
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project containing the
* comment.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
* - If the comment has visibility restrictions, belongs to the group or has the role visibility is role visibility is
* restricted to.
*/
async getComments<T = Models.PageOfComments>(
parameters: Parameters.GetComments | string,
callback?: never,
): Promise<T>;
async getComments<T = Models.PageOfComments>(
parameters: Parameters.GetComments | string,
callback?: Callback<T>,
): Promise<void | T> {
const issueIdOrKey = typeof parameters === 'string' ? parameters : parameters.issueIdOrKey;
const config: RequestConfig = {
url: `/rest/api/2/issue/${issueIdOrKey}/comment`,
method: 'GET',
params: {
startAt: typeof parameters !== 'string' && parameters.startAt,
maxResults: typeof parameters !== 'string' && parameters.maxResults,
orderBy: typeof parameters !== 'string' && parameters.orderBy,
expand: typeof parameters !== 'string' && parameters.expand,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Adds a comment to an issue.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Browse projects_ and _Add comments_ [ project permission](https://confluence.atlassian.com/x/yodKLg) for the
* project that the issue containing the comment is in.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
*/
async addComment<T = Models.Comment>(parameters: Parameters.AddComment, callback: Callback<T>): Promise<void>;
/**
* Adds a comment to an issue.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Browse projects_ and _Add comments_ [ project permission](https://confluence.atlassian.com/x/yodKLg) for the
* project that the issue containing the comment is in.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
*/
async addComment<T = Models.Comment>(parameters: Parameters.AddComment, callback?: never): Promise<T>;
async addComment<T = Models.Comment>(parameters: Parameters.AddComment, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/2/issue/${parameters.issueIdOrKey}/comment`,
method: 'POST',
params: {
expand: parameters.expand,
},
data: {
self: parameters.self,
id: parameters.id,
author: parameters.author,
body: parameters.comment,
renderedBody: parameters.renderedBody,
updateAuthor: parameters.updateAuthor,
created: parameters.created,
updated: parameters.updated,
visibility: parameters.visibility,
jsdPublic: parameters.jsdPublic,
jsdAuthorCanSeeRequest: parameters.jsdAuthorCanSeeRequest,
properties: parameters.properties,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Returns a comment.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project containing the
* comment.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
* - If the comment has visibility restrictions, the user belongs to the group or has the role visibility is restricted
* to.
*/
async getComment<T = Models.Comment>(parameters: Parameters.GetComment, callback: Callback<T>): Promise<void>;
/**
* Returns a comment.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project containing the
* comment.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
* - If the comment has visibility restrictions, the user belongs to the group or has the role visibility is restricted
* to.
*/
async getComment<T = Models.Comment>(parameters: Parameters.GetComment, callback?: never): Promise<T>;
async getComment<T = Models.Comment>(parameters: Parameters.GetComment, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/2/issue/${parameters.issueIdOrKey}/comment/${parameters.id}`,
method: 'GET',
params: {
expand: parameters.expand,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Updates a comment.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue
* containing the comment is in.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
* - _Edit all comments_[ project permission](https://confluence.atlassian.com/x/yodKLg) to update any comment or _Edit
* own comments_ to update comment created by the user.
* - If the comment has visibility restrictions, the user belongs to the group or has the role visibility is restricted
* to.
*/
async updateComment<T = Models.Comment>(parameters: Parameters.UpdateComment, callback: Callback<T>): Promise<void>;
/**
* Updates a comment.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue
* containing the comment is in.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
* - _Edit all comments_[ project permission](https://confluence.atlassian.com/x/yodKLg) to update any comment or _Edit
* own comments_ to update comment created by the user.
* - If the comment has visibility restrictions, the user belongs to the group or has the role visibility is restricted
* to.
*/
async updateComment<T = Models.Comment>(parameters: Parameters.UpdateComment, callback?: never): Promise<T>;
async updateComment<T = Models.Comment>(
parameters: Parameters.UpdateComment,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/2/issue/${parameters.issueIdOrKey}/comment/${parameters.id}`,
method: 'PUT',
params: {
notifyUsers: parameters.notifyUsers,
overrideEditableFlag: parameters.overrideEditableFlag,
expand: parameters.expand,
},
data: {
body: parameters.comment,
visibility: parameters.visibility,
properties: parameters.properties,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Deletes a comment.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue
* containing the comment is in.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
* - _Delete all comments_[ project permission](https://confluence.atlassian.com/x/yodKLg) to delete any comment or
* _Delete own comments_ to delete comment created by the user,
* - If the comment has visibility restrictions, the user belongs to the group or has the role visibility is restricted
* to.
*/
async deleteComment<T = void>(parameters: Parameters.DeleteComment, callback: Callback<T>): Promise<void>;
/**
* Deletes a comment.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
*
* - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue
* containing the comment is in.
* - If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission
* to view the issue.
* - _Delete all comments_[ project permission](https://confluence.atlassian.com/x/yodKLg) to delete any comment or
* _Delete own comments_ to delete comment created by the user,
* - If the comment has visibility restrictions, the user belongs to the group or has the role visibility is restricted
* to.
*/
async deleteComment<T = void>(parameters: Parameters.DeleteComment, callback?: never): Promise<T>;
async deleteComment<T = void>(parameters: Parameters.DeleteComment, callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/2/issue/${parameters.issueIdOrKey}/comment/${parameters.id}`,
method: 'DELETE',
};
return this.client.sendRequest(config, callback);
}
}