-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathauth.controller.ts
More file actions
280 lines (269 loc) · 7.08 KB
/
auth.controller.ts
File metadata and controls
280 lines (269 loc) · 7.08 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
import {
ApiBearerAuth,
ApiOperation,
ApiResponse,
ApiTags,
ApiBody,
} from '@nestjs/swagger';
import {
Body,
ClassSerializerInterceptor,
Controller,
HttpCode,
Post,
Req,
UseGuards,
UseInterceptors,
Logger,
UseFilters,
} from '@nestjs/common';
import { Public } from '../../common/decorators';
import { UserCreateDto } from '../user/user.dto';
import {
AuthDto,
ForgotPasswordDto,
ResendEmailVerificationDto,
RestorePasswordDto,
SignInDto,
VerifyEmailDto,
Web3SignUpDto,
Web3SignInDto,
RefreshDto,
} from './auth.dto';
import { AuthService } from './auth.service';
import { JwtAuthGuard } from '../../common/guards';
import { HCaptchaGuard } from '../../common/guards/hcaptcha';
import { RequestWithUser } from '../../common/types';
import { TokenRepository } from './token.repository';
import { TokenType } from './token.entity';
import { AuthControllerErrorsFilter } from './auth.error-filter';
@ApiTags('Auth')
@ApiResponse({
status: 400,
description: 'Bad Request. Invalid input parameters.',
})
@ApiResponse({
status: 401,
description: 'Unauthorized. Missing or invalid credentials.',
})
@ApiResponse({
status: 404,
description: 'Not Found. Could not find the requested content.',
})
@ApiResponse({
status: 422,
description: 'Unprocessable entity.',
})
@Controller('/auth')
@UseFilters(AuthControllerErrorsFilter)
export class AuthJwtController {
private readonly logger = new Logger(AuthJwtController.name);
constructor(
private readonly authService: AuthService,
private readonly tokenRepository: TokenRepository,
) {}
@Public()
@Post('/signup')
@UseGuards(HCaptchaGuard)
@UseInterceptors(ClassSerializerInterceptor)
@ApiOperation({
summary: 'User Signup',
description: 'Endpoint to register a new user.',
})
@ApiBody({ type: UserCreateDto })
@ApiResponse({
status: 200,
description: 'User registered successfully',
})
@ApiResponse({
status: 400,
description: 'Bad Request. Invalid input parameters.',
})
public async signup(@Body() data: UserCreateDto): Promise<void> {
await this.authService.signup(data);
return;
}
@Public()
@Post('/signin')
@UseGuards(HCaptchaGuard)
@HttpCode(200)
@ApiOperation({
summary: 'User Signin',
description: 'Endpoint for user authentication.',
})
@ApiBody({ type: SignInDto })
@ApiResponse({
status: 200,
description: 'User authenticated successfully',
type: AuthDto,
})
@ApiResponse({
status: 401,
description: 'Unauthorized. Missing or invalid credentials.',
})
@ApiResponse({
status: 404,
description: 'Not Found. Could not find the requested content.',
})
public signin(@Body() data: SignInDto): Promise<AuthDto> {
return this.authService.signin(data);
}
@Public()
@Post('/web3/signup')
@ApiOperation({
summary: 'Web3 User Signup',
description: 'Endpoint for Web3 user registration.',
})
@ApiBody({ type: Web3SignUpDto })
@ApiResponse({
status: 200,
description: 'User registered successfully',
type: AuthDto,
})
@ApiResponse({
status: 401,
description: 'Unauthorized. Missing or invalid credentials.',
})
public async web3SignUp(@Body() data: Web3SignUpDto): Promise<AuthDto> {
return this.authService.web3Signup(data);
}
@Public()
@Post('/web3/signin')
@HttpCode(200)
@ApiOperation({
summary: 'Web3 User Signin',
description: 'Endpoint for Web3 user authentication.',
})
@ApiBody({ type: Web3SignInDto })
@ApiResponse({
status: 200,
description: 'User authenticated successfully',
type: AuthDto,
})
@ApiResponse({
status: 401,
description: 'Unauthorized. Missing or invalid credentials.',
})
public async web3SignIn(@Body() data: Web3SignInDto): Promise<AuthDto> {
return this.authService.web3Signin(data);
}
@Public()
@HttpCode(200)
@Post('/refresh')
@ApiBody({ type: RefreshDto })
@ApiOperation({
summary: 'Refresh Token',
description: 'Endpoint to refresh the authentication token.',
})
@ApiResponse({
status: 200,
description: 'Token refreshed successfully',
type: AuthDto,
})
async refreshToken(@Body() data: RefreshDto): Promise<AuthDto> {
return this.authService.refresh(data);
}
@ApiBearerAuth()
@UseGuards(JwtAuthGuard)
@HttpCode(204)
@Post('/logout')
@ApiOperation({
summary: 'User Logout',
description: 'Endpoint to log out the user.',
})
@ApiResponse({
status: 204,
description: 'User logged out successfully',
})
public async logout(@Req() request: RequestWithUser): Promise<void> {
await this.tokenRepository.deleteOneByTypeAndUserId(
TokenType.REFRESH,
request.user.id,
);
}
@Public()
@Post('/forgot-password')
@UseGuards(HCaptchaGuard)
@HttpCode(204)
@ApiOperation({
summary: 'Forgot Password',
description: 'Endpoint to initiate the password reset process.',
})
@ApiBody({ type: ForgotPasswordDto })
@ApiResponse({
status: 204,
description: 'Password reset email sent successfully',
})
@ApiResponse({
status: 401,
description: 'Unauthorized. Missing or invalid credentials.',
})
@ApiResponse({
status: 404,
description: 'Not Found. Could not find the requested content.',
})
public forgotPassword(@Body() data: ForgotPasswordDto): Promise<void> {
return this.authService.forgotPassword(data);
}
@Public()
@Post('/restore-password')
@UseGuards(HCaptchaGuard)
@HttpCode(204)
@ApiOperation({
summary: 'Restore Password',
description: 'Endpoint to restore the user password after reset.',
})
@ApiBody({ type: RestorePasswordDto })
@ApiResponse({
status: 204,
description: 'Password restored successfully',
})
@ApiResponse({
status: 404,
description: 'Not Found. Could not find the requested content.',
})
public restorePassword(@Body() data: RestorePasswordDto): Promise<void> {
return this.authService.restorePassword(data);
}
@Public()
@HttpCode(200)
@Post('/email-verification')
@ApiOperation({
summary: 'Email Verification',
description: 'Endpoint to verify the user email address.',
})
@ApiBody({ type: VerifyEmailDto })
@ApiResponse({
status: 200,
description: 'Email verification successful',
})
@ApiResponse({
status: 404,
description: 'Not Found. Could not find the requested content.',
})
public async emailVerification(@Body() data: VerifyEmailDto): Promise<void> {
await this.authService.emailVerification(data);
}
@ApiBearerAuth()
@UseGuards(HCaptchaGuard, JwtAuthGuard)
@HttpCode(204)
@Post('/resend-email-verification')
@ApiOperation({
summary: 'Resend Email Verification',
description: 'Endpoint to resend the email verification link.',
})
@ApiBody({ type: ResendEmailVerificationDto })
@ApiResponse({
status: 204,
description: 'Email verification resent successfully',
})
@ApiResponse({
status: 404,
description: 'Not Found. Could not find the requested content.',
})
public resendEmailVerification(
@Body() data: ResendEmailVerificationDto,
): Promise<void> {
return this.authService.resendEmailVerification(data);
}
}