|
| 1 | +import { |
| 2 | + Controller, |
| 3 | + Get, |
| 4 | + Post, |
| 5 | + Param, |
| 6 | + UseFilters, |
| 7 | + UseGuards, |
| 8 | + Logger, |
| 9 | + Req, |
| 10 | + Body, |
| 11 | +} from '@nestjs/common'; |
| 12 | +import { CreditService } from '../services/credit-manager.service'; |
| 13 | +// import { AllExceptionsFilter } from '../../../utility/exception.filter'; |
| 14 | +import { |
| 15 | + ApiBadRequestResponse, |
| 16 | + ApiBearerAuth, |
| 17 | + ApiCreatedResponse, |
| 18 | + ApiNotFoundResponse, |
| 19 | + ApiOkResponse, |
| 20 | + ApiTags, |
| 21 | + ApiUnauthorizedResponse, |
| 22 | +} from '@nestjs/swagger'; |
| 23 | +// import { CustomAuthGuard } from 'src/auth/auth.guard'; |
| 24 | +// import { CreditAuthGuard } from 'src/auth/credit-token.guard'; |
| 25 | +import { |
| 26 | + createCreditResponse, |
| 27 | + ActivateCredtiResponse, |
| 28 | +} from '../dto/create-credit-manager.dto'; |
| 29 | +import { AllExceptionsFilter } from 'src/utils/utils'; |
| 30 | +import { |
| 31 | + CreditError, |
| 32 | + CreditNotFoundError, |
| 33 | + CreditUnAuthorizeError, |
| 34 | +} from '../dto/error-credit.dto'; |
| 35 | +import { AuthGuard } from '@nestjs/passport'; |
| 36 | +import { CreditAuthGuard } from '../gaurd/credit-token.gaurd'; |
| 37 | + |
| 38 | +@UseFilters(AllExceptionsFilter) |
| 39 | +@ApiTags('Credit') |
| 40 | +@Controller('credit') |
| 41 | +export class CreditManagerController { |
| 42 | + constructor(private readonly creditManagerService: CreditService) {} |
| 43 | + @ApiBearerAuth('Authorization') |
| 44 | + @UseGuards(CreditAuthGuard) |
| 45 | + @ApiCreatedResponse({ |
| 46 | + description: 'Credit detail is added successfully', |
| 47 | + type: createCreditResponse, |
| 48 | + }) |
| 49 | + @ApiBadRequestResponse({ |
| 50 | + description: 'Unable to add credit detail', |
| 51 | + type: CreditError, |
| 52 | + }) |
| 53 | + @ApiNotFoundResponse({ |
| 54 | + description: 'Missing', |
| 55 | + type: CreditNotFoundError, |
| 56 | + }) |
| 57 | + @ApiUnauthorizedResponse({ |
| 58 | + description: 'Authorization token is invalid or expired.', |
| 59 | + type: CreditUnAuthorizeError, |
| 60 | + }) |
| 61 | + @Post() |
| 62 | + AddNewCreditDetail(@Req() req) { |
| 63 | + Logger.log( |
| 64 | + 'AddNewCreditDetail() method to add credit detail', |
| 65 | + 'CreditManagerController', |
| 66 | + ); |
| 67 | + return this.creditManagerService.addCreditDetail(req.creditDetail); |
| 68 | + } |
| 69 | + @ApiBearerAuth('Authorization') |
| 70 | + @UseGuards(AuthGuard('jwt')) |
| 71 | + @ApiOkResponse({ |
| 72 | + description: 'Credit is activated successfully', |
| 73 | + type: ActivateCredtiResponse, |
| 74 | + }) |
| 75 | + @ApiBadRequestResponse({ |
| 76 | + description: 'Unable to activate credit detail', |
| 77 | + type: CreditError, |
| 78 | + }) |
| 79 | + @ApiNotFoundResponse({ |
| 80 | + description: 'Authorization token is invalid or expired.', |
| 81 | + type: CreditNotFoundError, |
| 82 | + }) |
| 83 | + @ApiUnauthorizedResponse({ |
| 84 | + description: 'Authorization token is invalid or expired.', |
| 85 | + type: CreditUnAuthorizeError, |
| 86 | + }) |
| 87 | + @Post(':creditId/activate') |
| 88 | + activateCredit(@Param('creditId') creditId: string) { |
| 89 | + Logger.log( |
| 90 | + 'activateCredit() method to activate existing credit detail', |
| 91 | + 'CreditManagerController', |
| 92 | + ); |
| 93 | + return this.creditManagerService.activateCredit(creditId); |
| 94 | + } |
| 95 | + @ApiBearerAuth('Authorization') |
| 96 | + @UseGuards(AuthGuard('jwt')) |
| 97 | + @ApiOkResponse({ |
| 98 | + description: 'Fetched all credit detail', |
| 99 | + type: createCreditResponse, |
| 100 | + }) |
| 101 | + @ApiBadRequestResponse({ |
| 102 | + description: 'Unable to fetch credit detail', |
| 103 | + type: CreditError, |
| 104 | + }) |
| 105 | + @ApiUnauthorizedResponse({ |
| 106 | + description: 'Authorization token is invalid or expired.', |
| 107 | + type: CreditUnAuthorizeError, |
| 108 | + }) |
| 109 | + @Get() |
| 110 | + fetchCreditDetails() { |
| 111 | + Logger.log( |
| 112 | + 'fetchCreditDetails() method to fetch all credit detail', |
| 113 | + 'CreditManagerController', |
| 114 | + ); |
| 115 | + return this.creditManagerService.fetchCreditDetails(); |
| 116 | + } |
| 117 | + @ApiBearerAuth('Authorization') |
| 118 | + @UseGuards(AuthGuard('jwt')) |
| 119 | + @ApiOkResponse({ |
| 120 | + description: 'The details of the credit have been successfully fetched.', |
| 121 | + type: ActivateCredtiResponse, |
| 122 | + }) |
| 123 | + @ApiBadRequestResponse({ |
| 124 | + description: 'Unable to fetch particular credit detail', |
| 125 | + type: CreditError, |
| 126 | + }) |
| 127 | + @ApiUnauthorizedResponse({ |
| 128 | + description: 'Authorization token is invalid or expired.', |
| 129 | + type: CreditUnAuthorizeError, |
| 130 | + }) |
| 131 | + @Get(':creditId') |
| 132 | + fetchParticularCreditDetail(@Param('creditId') creditId: string, @Req() req) { |
| 133 | + Logger.log( |
| 134 | + 'fetchParticularCreditDetail() method to fetch particular credit detail', |
| 135 | + 'CreditManagerController', |
| 136 | + ); |
| 137 | + const appId = req.user.appId; |
| 138 | + return this.creditManagerService.fetchParticularCreditDetail( |
| 139 | + creditId, |
| 140 | + appId, |
| 141 | + ); |
| 142 | + } |
| 143 | +} |
0 commit comments