-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[backend] Use class serializer interceptor #29
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -5,53 +5,42 @@ import { PrismaService } from 'src/prisma/prisma.service'; | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { User, Prisma } from '@prisma/client'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { hash } from 'bcrypt'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type UserWithoutPassword = Omit<User, 'password'>; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
function excludePassword(user: User): Omit<User, 'password'> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const { password, ...userWithoutPassword } = user; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return userWithoutPassword; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Injectable() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export class UserService { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
constructor(private prisma: PrismaService) {} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
async create(createUserDto: CreateUserDto): Promise<UserWithoutPassword> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
async create(createUserDto: CreateUserDto): Promise<User> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const saltRounds = 10; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const hashedPassword = await hash(createUserDto.password, saltRounds); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const userData = { ...createUserDto, password: hashedPassword }; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return this.prisma.user.create({ data: userData }).then(excludePassword); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return this.prisma.user.create({ data: userData }); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
findAll(): Promise<UserWithoutPassword[]> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
findAll(): Promise<User[]> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return this.prisma.user | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.findMany() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.then((users) => users.map(excludePassword)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.findMany(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
findOne(id: number): Promise<UserWithoutPassword> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
findOne(id: number): Promise<User> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return this.prisma.user | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.findUniqueOrThrow({ where: { id: id } }) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.then(excludePassword); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.findUniqueOrThrow({ where: { id: id } }); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
update( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
id: number, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
updateUserDto: UpdateUserDto, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
): Promise<UserWithoutPassword> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
): Promise<User> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return this.prisma.user | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.update({ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
where: { id: id }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
data: updateUserDto, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.then(excludePassword); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When updating a user, consider checking if the user exists before attempting the update. This can prevent unnecessary database operations and provide more informative error messages. + async userExists(id: number): Promise<boolean> {
+ const user = await this.prisma.user.findUnique({ where: { id: id } });
+ return user !== null;
+ }
- update(
- id: number,
- updateUserDto: UpdateUserDto,
- ): Promise<User> {
- return this.prisma.user
- .update({
- where: { id: id },
- data: updateUserDto,
- });
- }
+ async update(
+ id: number,
+ updateUserDto: UpdateUserDto,
+ ): Promise<User> {
+ if (!await this.userExists(id)) {
+ throw new Error(`User with id ${id} does not exist`);
+ }
+ return this.prisma.user
+ .update({
+ where: { id: id },
+ data: updateUserDto,
+ });
+ } Commitable suggestion
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Checking if the user exists before attempting the update is done by ValidationPipe. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @usatie, thank you for your comment. You're correct that the The suggestion to add a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is already configured to perform that check, so it's unnecessary. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @usatie, thank you for the clarification. If the |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
remove(id: number): Promise<UserWithoutPassword> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
remove(id: number): Promise<User> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return this.prisma.user | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.delete({ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
where: { id: id }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.then(excludePassword); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to the update method, consider checking if the user exists before attempting to delete. This can prevent unnecessary database operations and provide more informative error messages. - remove(id: number): Promise<User> {
- return this.prisma.user
- .delete({
- where: { id: id },
- });
- }
+ async remove(id: number): Promise<User> {
+ if (!await this.userExists(id)) {
+ throw new Error(`User with id ${id} does not exist`);
+ }
+ return this.prisma.user
+ .delete({
- where: { id: id },
+ });
+ } Commitable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The password hashing logic is still present in the
create
method. Consider moving it to a separate function for better modularity and reusability. This will also make the code easier to test and maintain.Commitable suggestion