-
Notifications
You must be signed in to change notification settings - Fork 16
/
customContent.ts
364 lines (334 loc) · 14.8 KB
/
customContent.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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
import * as Models from './models';
import * as Parameters from './parameters';
import { Callback } from '../callback';
import { Client } from '../clients';
import { PaginationService } from '../services';
import { RequestConfig } from '../requestConfig';
export class CustomContent {
private paginationService = new PaginationService();
constructor(private client: Client) {}
/**
* Returns all custom content for a given type within a given blogpost. The number of results is limited by the
* `limit` parameter and additional results (if available) will be available through the `next` URL present in the
* `Link` response header.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the custom content, the
* container of the custom content (blog post), and the corresponding space.
*/
async getCustomContentByTypeInBlogPost<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByTypeInBlogPost,
callback: Callback<T>,
): Promise<void>;
/**
* Returns all custom content for a given type within a given blogpost. The number of results is limited by the
* `limit` parameter and additional results (if available) will be available through the `next` URL present in the
* `Link` response header.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the custom content, the
* container of the custom content (blog post), and the corresponding space.
*/
async getCustomContentByTypeInBlogPost<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByTypeInBlogPost,
callback?: never,
): Promise<T>;
async getCustomContentByTypeInBlogPost<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByTypeInBlogPost,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/blogposts/${parameters.id}/custom-content`,
method: 'GET',
params: {
type: parameters.type,
cursor: parameters.cursor,
limit: parameters.limit,
'body-format': parameters.bodyFormat,
'serialize-ids-as-strings': true,
},
};
try {
const customContents = await this.client.sendRequest<Models.Pagination<Models.CustomContent>>(config);
const paginatedCustomContents = this.paginationService.buildPaginatedResult(customContents, this.getCustomContentByTypeInBlogPost.bind(this));
const responseHandler = this.client.getResponseHandler(callback);
return responseHandler(paginatedCustomContents as T);
} catch (e: any) {
const errorHandler = this.client.getErrorHandler(callback);
return errorHandler(e);
}
}
/**
* Returns all custom content for a given type. The number of results is limited by the `limit` parameter and
* additional results (if available) will be available through the `next` URL present in the `Link` response header.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the custom content, the
* container of the custom content, and the corresponding space (if different from the container).
*/
async getCustomContentByType<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByType,
callback: Callback<T>,
): Promise<void>;
/**
* Returns all custom content for a given type. The number of results is limited by the `limit` parameter and
* additional results (if available) will be available through the `next` URL present in the `Link` response header.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the custom content, the
* container of the custom content, and the corresponding space (if different from the container).
*/
async getCustomContentByType<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByType,
callback?: never,
): Promise<T>;
async getCustomContentByType<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByType,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/custom-content',
method: 'GET',
params: {
type: parameters.type,
id: parameters.id,
cursor: parameters.cursor,
limit: parameters.limit,
'body-format': parameters.bodyFormat,
'serialize-ids-as-strings': true,
},
};
try {
const customContents = await this.client.sendRequest<Models.Pagination<Models.CustomContent>>(config);
const paginatedCustomContents = this.paginationService.buildPaginatedResult(customContents, this.getCustomContentByType.bind(this));
const responseHandler = this.client.getResponseHandler(callback);
return responseHandler(paginatedCustomContents as T);
} catch (e: any) {
const errorHandler = this.client.getErrorHandler(callback);
return errorHandler(e);
}
}
/**
* Creates a new custom content in the given space, page, blogpost or other custom content.
*
* Only one of `spaceId`, `pageId`, `blogPostId`, or `customContentId` is required in the request body.
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the content of the page
* or blogpost and its corresponding space. Permission to create custom content in the space.
*/
async createCustomContent<T = Models.CustomContent>(
parameters: Parameters.CreateCustomContent | undefined,
callback: Callback<T>,
): Promise<void>;
/**
* Creates a new custom content in the given space, page, blogpost or other custom content.
*
* Only one of `spaceId`, `pageId`, `blogPostId`, or `customContentId` is required in the request body.
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the content of the page
* or blogpost and its corresponding space. Permission to create custom content in the space.
*/
async createCustomContent<T = Models.CustomContent>(
parameters?: Parameters.CreateCustomContent,
callback?: never,
): Promise<T>;
async createCustomContent<T = Models.CustomContent>(
parameters?: Parameters.CreateCustomContent,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/custom-content',
method: 'POST',
params: {
'serialize-ids-as-strings': true,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Returns a specific piece of custom content.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the custom content, the
* container of the custom content, and the corresponding space (if different from the container).
*/
async getCustomContentById<T = Models.CustomContent>(
parameters: Parameters.GetCustomContentById,
callback: Callback<T>,
): Promise<void>;
/**
* Returns a specific piece of custom content.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the custom content, the
* container of the custom content, and the corresponding space (if different from the container).
*/
async getCustomContentById<T = Models.CustomContent>(
parameters: Parameters.GetCustomContentById,
callback?: never,
): Promise<T>;
async getCustomContentById<T = Models.CustomContent>(
parameters: Parameters.GetCustomContentById,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/custom-content/${parameters.id}`,
method: 'GET',
params: {
'body-format': parameters.bodyFormat,
version: parameters.version,
'serialize-ids-as-strings': true,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Update a custom content by id.
*
* `spaceId` is always required and maximum one of `pageId`, `blogPostId`, or `customContentId` is allowed in the
* request body. **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the content
* of the page or blogpost and its corresponding space. Permission to update custom content in the space.
*/
async updateCustomContent<T = Models.CustomContent>(
parameters: Parameters.UpdateCustomContent,
callback: Callback<T>,
): Promise<void>;
/**
* Update a custom content by id.
*
* `spaceId` is always required and maximum one of `pageId`, `blogPostId`, or `customContentId` is allowed in the
* request body. **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the content
* of the page or blogpost and its corresponding space. Permission to update custom content in the space.
*/
async updateCustomContent<T = Models.CustomContent>(
parameters: Parameters.UpdateCustomContent,
callback?: never,
): Promise<T>;
async updateCustomContent<T = Models.CustomContent>(
parameters: Parameters.UpdateCustomContent,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/custom-content/${parameters.id}`,
method: 'PUT',
params: {
'serialize-ids-as-strings': true,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Delete a custom content by id.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the content of the page
* or blogpost and its corresponding space. Permission to delete custom content in the space.
*/
async deleteCustomContent<T = void>(parameters: Parameters.DeleteCustomContent, callback: Callback<T>): Promise<void>;
/**
* Delete a custom content by id.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the content of the page
* or blogpost and its corresponding space. Permission to delete custom content in the space.
*/
async deleteCustomContent<T = void>(parameters: Parameters.DeleteCustomContent, callback?: never): Promise<T>;
async deleteCustomContent<T = void>(
parameters: Parameters.DeleteCustomContent,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/custom-content/${parameters.id}`,
method: 'DELETE',
};
return this.client.sendRequest(config, callback);
}
/**
* Returns all custom content for a given type within a given page. The number of results is limited by the `limit`
* parameter and additional results (if available) will be available through the `next` URL present in the `Link`
* response header.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the custom content, the
* container of the custom content (page), and the corresponding space.
*/
async getCustomContentByTypeInPage<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByTypeInPage,
callback: Callback<T>,
): Promise<void>;
/**
* Returns all custom content for a given type within a given page. The number of results is limited by the `limit`
* parameter and additional results (if available) will be available through the `next` URL present in the `Link`
* response header.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the custom content, the
* container of the custom content (page), and the corresponding space.
*/
async getCustomContentByTypeInPage<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByTypeInPage,
callback?: never,
): Promise<T>;
async getCustomContentByTypeInPage<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByTypeInPage,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/pages/${parameters.id}/custom-content`,
method: 'GET',
params: {
type: parameters.type,
cursor: parameters.cursor,
limit: parameters.limit,
'body-format': parameters.bodyFormat,
'serialize-ids-as-strings': true,
},
};
try {
const customContents = await this.client.sendRequest<Models.Pagination<Models.CustomContent>>(config);
const paginatedCustomContents = this.paginationService.buildPaginatedResult(customContents, this.getCustomContentByTypeInPage.bind(this));
const responseHandler = this.client.getResponseHandler(callback);
return responseHandler(paginatedCustomContents as T);
} catch (e: any) {
const errorHandler = this.client.getErrorHandler(callback);
return errorHandler(e);
}
}
/**
* Returns all custom content for a given type within a given space. The number of results is limited by the `limit`
* parameter and additional results (if available) will be available through the `next` URL present in the `Link`
* response header.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the custom content and
* the corresponding space.
*/
async getCustomContentByTypeInSpace<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByTypeInSpace,
callback: Callback<T>,
): Promise<void>;
/**
* Returns all custom content for a given type within a given space. The number of results is limited by the `limit`
* parameter and additional results (if available) will be available through the `next` URL present in the `Link`
* response header.
*
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: Permission to view the custom content and
* the corresponding space.
*/
async getCustomContentByTypeInSpace<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByTypeInSpace,
callback?: never,
): Promise<T>;
async getCustomContentByTypeInSpace<T = Models.Pagination<Models.CustomContent>>(
parameters: Parameters.GetCustomContentByTypeInSpace,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/spaces/${parameters.id}/custom-content`,
method: 'GET',
params: {
type: parameters.type,
cursor: parameters.cursor,
limit: parameters.limit,
'body-format': parameters.bodyFormat,
'serialize-ids-as-strings': true,
},
};
try {
const customContents = await this.client.sendRequest<Models.Pagination<Models.CustomContent>>(config);
const paginatedCustomContents = this.paginationService.buildPaginatedResult(customContents, this.getCustomContentByTypeInSpace.bind(this));
const responseHandler = this.client.getResponseHandler(callback);
return responseHandler(paginatedCustomContents as T);
} catch (e: any) {
const errorHandler = this.client.getErrorHandler(callback);
return errorHandler(e);
}
}
}