-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadmin.controller.ts
More file actions
343 lines (309 loc) · 9.28 KB
/
Copy pathadmin.controller.ts
File metadata and controls
343 lines (309 loc) · 9.28 KB
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
import {
Controller,
Get,
Post,
Patch,
Param,
Body,
Header,
HttpCode,
HttpStatus,
BadRequestException,
InternalServerErrorException,
} from '@nestjs/common';
import {
ApiOperation,
ApiTags,
ApiResponse,
ApiParam,
ApiBody,
ApiBearerAuth,
} from '@nestjs/swagger';
import { stringify } from 'csv-stringify/sync';
import { TopcoderMembersService } from 'src/shared/topcoder/members.service';
import { Role } from 'src/core/auth/auth.constants';
import { Roles, User } from 'src/core/auth/decorators';
import { AdminService } from './admin.service';
import { ResponseDto, ResponseStatusType } from 'src/dto/api-response.dto';
import { WinningAuditDto, AuditPayoutDto } from './dto/audit.dto';
import { WinningRequestDto, SearchWinningResult } from 'src/dto/winning.dto';
import { WinningsRepository } from '../repository/winnings.repo';
import { WinningUpdateRequestDto } from './dto/winnings.dto';
import { AccessControlService } from 'src/shared/access-control';
@ApiTags('AdminWinnings')
@Controller('/admin')
@ApiBearerAuth()
export class AdminController {
private static readonly EXPORT_BATCH_SIZE = 1000;
constructor(
private readonly adminService: AdminService,
private readonly winningsRepo: WinningsRepository,
private readonly tcMembersService: TopcoderMembersService,
private readonly accessControlService: AccessControlService,
) {}
@Post('/winnings/search')
@Roles(
Role.PaymentAdmin,
Role.PaymentBaAdmin,
Role.EngagementPaymentApprover,
Role.PaymentEditor,
Role.PaymentViewer,
)
@ApiOperation({
summary: 'Search winnings with parameters',
description: 'Roles: Payment Admin, Payment Editor, Payment Viewer',
})
@ApiBody({
description: 'Winning request body',
type: WinningRequestDto,
})
@ApiResponse({
status: 200,
description: 'Search winnings successfully.',
type: ResponseDto<SearchWinningResult>,
})
@HttpCode(HttpStatus.OK)
async searchWinnings(
@Body() body: WinningRequestDto,
@User() user: any,
): Promise<ResponseDto<SearchWinningResult>> {
const filters =
await this.accessControlService.applyFilters<WinningRequestDto>(
user.id,
user.roles,
body,
);
const result = await this.winningsRepo.searchWinnings(filters);
if (result.error) {
result.status = ResponseStatusType.ERROR;
}
result.status = ResponseStatusType.SUCCESS;
return result;
}
@Post('/winnings/export')
@Roles(
Role.PaymentAdmin,
Role.PaymentBaAdmin,
Role.EngagementPaymentApprover,
Role.PaymentEditor,
Role.PaymentViewer,
)
@ApiOperation({
summary: 'Export search winnings result in csv file format',
description: 'Roles: Payment Admin, Payment Editor, Payment Viewer',
})
@ApiBody({
description: 'Winning request body',
type: WinningRequestDto,
})
@ApiResponse({
status: 200,
description: 'Export winnings successfully.',
type: ResponseDto<SearchWinningResult>,
})
@HttpCode(HttpStatus.OK)
@Header('Content-Type', 'text/csv')
@Header('Content-Disposition', 'attachment; filename="winnings.csv"')
async exportWinnings(@Body() body: WinningRequestDto, @User() user: any) {
const baseFilters =
await this.accessControlService.applyFilters<WinningRequestDto>(
user.id,
user.roles,
{
...body,
limit: undefined,
offset: undefined,
},
);
const winnings: SearchWinningResult['winnings'] = [];
let offset = 0;
while (true) {
const result = await this.winningsRepo.searchWinnings(
{
...baseFilters,
limit: AdminController.EXPORT_BATCH_SIZE,
offset,
},
{
includeCount: false,
includePayoutStatus: false,
latestPaymentOnly: true,
},
);
if (result.error || !result.data) {
throw new InternalServerErrorException(
result.error?.message ?? 'Export winnings failed',
);
}
winnings.push(...result.data.winnings);
if (result.data.winnings.length < AdminController.EXPORT_BATCH_SIZE) {
break;
}
offset += AdminController.EXPORT_BATCH_SIZE;
}
const handles = await this.tcMembersService.getHandlesByUserIds(
winnings.map((d) => d.winnerId),
);
const csvRes = winnings.map((item) => {
const payment =
item.details && item.details.length > 0 ? item.details[0] : null;
return {
id: item.id,
winnerId: item.winnerId,
handle: handles[`${item.winnerId}`] ?? item.winnerId,
origin: item.origin,
category: item.category,
title: item.title,
description: item.description,
externalId: item.externalId,
status: payment?.status,
totalAmount: payment?.totalAmount,
datePaid: payment?.datePaid?.toISOString() ?? '',
createdAt: item.createdAt.toISOString(),
updatedAt: item.updatedAt?.toISOString() ?? '',
releaseDate: item.releaseDate?.toISOString() ?? '',
billingAccount: payment?.billingAccount,
};
});
const output = stringify(csvRes, {
header: true,
columns: [
{ key: 'id', header: 'Winnings ID' },
{ key: 'winnerId', header: 'Winner ID' },
{ key: 'handle', header: 'Handle' },
{ key: 'origin', header: 'Origin' },
{ key: 'category', header: 'Category' },
{ key: 'title', header: 'Title' },
{ key: 'description', header: 'Description' },
{ key: 'externalId', header: 'External ID' },
{ key: 'status', header: 'Status' },
{ key: 'totalAmount', header: 'Total Amount' },
{ key: 'datePaid', header: 'Date Paid' },
{ key: 'createdAt', header: 'Created At' },
{ key: 'updatedAt', header: 'Updated At' },
{ key: 'releaseDate', header: 'Release Date' },
{ key: 'billingAccount', header: 'Billing Account' },
],
});
return output;
}
@Patch('/winnings')
@Roles(
Role.PaymentAdmin,
Role.PaymentBaAdmin,
Role.EngagementPaymentApprover,
Role.PaymentEditor,
)
@ApiOperation({
summary: 'Update winnings with given parameter',
description:
'User with role "Payment Admin" or "Payment Editor" can access. \n paymentStatus, releaseDate and paymentAmount cannot be null at the same time.r',
})
@ApiResponse({
status: 200,
description: 'Update winning data successfully.',
type: ResponseDto<string>,
})
async updateWinning(
@Body() body: WinningUpdateRequestDto,
@User() user: any,
): Promise<ResponseDto<string>> {
if (
!body.paymentAmount &&
!body.releaseDate &&
!body.paymentStatus &&
!body.description
) {
throw new BadRequestException(
'description, paymentStatus, releaseDate and paymentAmount cannot be null at the same time.',
);
}
const result = await this.adminService.updateWinnings(
body,
user.id,
user.roles,
);
result.status = ResponseStatusType.SUCCESS;
if (result.error) {
result.status = ResponseStatusType.ERROR;
}
return result;
}
@Get('/winnings/:winningID/audit')
@Roles(
Role.PaymentAdmin,
Role.PaymentBaAdmin,
Role.EngagementPaymentApprover,
Role.PaymentEditor,
Role.PaymentViewer,
)
@ApiOperation({
summary: 'List winning audit logs with given winning id',
description: 'Roles: Payment Admin, Payment Editor, Payment Viewer',
})
@ApiParam({
name: 'winningID',
description: 'The ID of the winning',
example: '2ccba36d-8db7-49da-94c9-b6c5b7bf47fb',
})
@ApiResponse({
status: 200,
description: 'List winning audit logs successfully.',
type: ResponseDto<WinningAuditDto[]>,
})
async getWinningAudit(
@Param('winningID') winningId: string,
@User() user: any,
): Promise<ResponseDto<WinningAuditDto[]>> {
await this.adminService.verifyUserAccessToWinning(
winningId,
user.id,
user.roles,
);
const result = await this.adminService.getWinningAudit(winningId);
result.status = ResponseStatusType.SUCCESS;
if (result.error) {
result.status = ResponseStatusType.ERROR;
}
return result;
}
@Get('/winnings/:winningID/audit-payout')
@Roles(
Role.PaymentAdmin,
Role.PaymentBaAdmin,
Role.EngagementPaymentApprover,
Role.PaymentEditor,
Role.PaymentViewer,
)
@ApiOperation({
summary: 'Fetch winnings payout audit logs with given winning id.',
description:
'User with role "Payment Admin", "Payment Editor" or "Payment Viewer" can access.',
})
@ApiParam({
name: 'winningID',
description: 'The ID of the winning',
example: '2ccba36d-8db7-49da-94c9-b6c5b7bf47fb',
})
@ApiResponse({
status: 200,
description: 'List winning payout audit logs successfully.',
type: ResponseDto<AuditPayoutDto[]>,
})
async getWinningAuditPayout(
@Param('winningID') winningId: string,
@User() user: any,
): Promise<ResponseDto<AuditPayoutDto[]>> {
await this.adminService.verifyUserAccessToWinning(
winningId,
user.id,
user.roles,
);
const result = await this.adminService.getWinningAuditPayout(winningId);
result.status = ResponseStatusType.SUCCESS;
if (result.error) {
result.status = ResponseStatusType.ERROR;
}
return result;
}
}