feat: Add account deletion functionality for both agents and regular users.
This commit is contained in:
@@ -227,6 +227,19 @@ export class AgentsController {
|
|||||||
return this.agentsService.updatePrivacyPreferences(userId, data);
|
return this.agentsService.updatePrivacyPreferences(userId, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Delete account endpoint
|
||||||
|
|
||||||
|
@Delete('account')
|
||||||
|
@UseGuards(JwtAuthGuard, RolesGuard)
|
||||||
|
@Roles(UserRole.AGENT)
|
||||||
|
@ApiBearerAuth()
|
||||||
|
@ApiOperation({ summary: 'Delete agent account permanently (Agents only)' })
|
||||||
|
@ApiResponse({ status: 200, description: 'Account deleted successfully' })
|
||||||
|
@ApiResponse({ status: 404, description: 'User not found' })
|
||||||
|
async deleteAccount(@CurrentUser('id') userId: string) {
|
||||||
|
return this.agentsService.deleteAccount(userId);
|
||||||
|
}
|
||||||
|
|
||||||
// Public parameterized routes - MUST come after specific routes like profile/*
|
// Public parameterized routes - MUST come after specific routes like profile/*
|
||||||
@Get(':id')
|
@Get(':id')
|
||||||
@Public()
|
@Public()
|
||||||
|
|||||||
@@ -893,4 +893,50 @@ export class AgentsService {
|
|||||||
|
|
||||||
return updatedUser.privacyPreferences;
|
return updatedUser.privacyPreferences;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =============================================
|
||||||
|
// DELETE ACCOUNT
|
||||||
|
// =============================================
|
||||||
|
|
||||||
|
async deleteAccount(userId: string) {
|
||||||
|
const user = await this.prisma.user.findUnique({
|
||||||
|
where: { id: userId },
|
||||||
|
select: { id: true, role: true },
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!user) {
|
||||||
|
throw new NotFoundException('User not found');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (user.role !== 'AGENT') {
|
||||||
|
throw new BadRequestException('This endpoint is for agents only');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Delete in a transaction to ensure data consistency
|
||||||
|
await this.prisma.$transaction(async (tx) => {
|
||||||
|
// First, delete the agent profile and related data
|
||||||
|
const agentProfile = await tx.agentProfile.findUnique({
|
||||||
|
where: { userId },
|
||||||
|
});
|
||||||
|
|
||||||
|
if (agentProfile) {
|
||||||
|
// Delete agent profile field values
|
||||||
|
await tx.agentProfileFieldValue.deleteMany({
|
||||||
|
where: { agentProfileId: agentProfile.id },
|
||||||
|
});
|
||||||
|
|
||||||
|
// Delete the agent profile
|
||||||
|
await tx.agentProfile.delete({
|
||||||
|
where: { userId },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Finally, delete the user account
|
||||||
|
await tx.user.delete({
|
||||||
|
where: { id: userId },
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
return { message: 'Account deleted successfully' };
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import {
|
|||||||
Controller,
|
Controller,
|
||||||
Get,
|
Get,
|
||||||
Put,
|
Put,
|
||||||
|
Delete,
|
||||||
Param,
|
Param,
|
||||||
Patch,
|
Patch,
|
||||||
Body,
|
Body,
|
||||||
@@ -176,6 +177,19 @@ export class UsersController {
|
|||||||
return this.usersService.updatePrivacyPreferences(user.id, data);
|
return this.usersService.updatePrivacyPreferences(user.id, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =============================================
|
||||||
|
// DELETE ACCOUNT
|
||||||
|
// =============================================
|
||||||
|
|
||||||
|
@Delete('account')
|
||||||
|
@Roles(UserRole.USER)
|
||||||
|
@ApiOperation({ summary: 'Delete user account permanently (Regular users only)' })
|
||||||
|
@ApiResponse({ status: 200, description: 'Account deleted successfully' })
|
||||||
|
@ApiResponse({ status: 404, description: 'User not found' })
|
||||||
|
async deleteAccount(@CurrentUser() user: { id: string }) {
|
||||||
|
return this.usersService.deleteAccount(user.id);
|
||||||
|
}
|
||||||
|
|
||||||
// =============================================
|
// =============================================
|
||||||
// ADMIN ENDPOINTS
|
// ADMIN ENDPOINTS
|
||||||
// =============================================
|
// =============================================
|
||||||
|
|||||||
@@ -485,4 +485,38 @@ export class UsersService {
|
|||||||
|
|
||||||
return updatedUser.privacyPreferences;
|
return updatedUser.privacyPreferences;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =============================================
|
||||||
|
// DELETE ACCOUNT
|
||||||
|
// =============================================
|
||||||
|
|
||||||
|
async deleteAccount(userId: string) {
|
||||||
|
const user = await this.prisma.user.findUnique({
|
||||||
|
where: { id: userId },
|
||||||
|
select: { id: true, role: true },
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!user) {
|
||||||
|
throw new NotFoundException('User not found');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (user.role !== UserRole.USER) {
|
||||||
|
throw new BadRequestException('This endpoint is for regular users only');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Delete in a transaction to ensure data consistency
|
||||||
|
await this.prisma.$transaction(async (tx) => {
|
||||||
|
// Delete user profile if it exists
|
||||||
|
await tx.userProfile.deleteMany({
|
||||||
|
where: { userId },
|
||||||
|
});
|
||||||
|
|
||||||
|
// Delete the user account
|
||||||
|
await tx.user.delete({
|
||||||
|
where: { id: userId },
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
return { message: 'Account deleted successfully' };
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user