user/src/modules/users/domain/usecases/update-user.usecase.ts

39 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-12-14 10:37:13 +00:00
import { Mapper } from '@automapper/core';
import { InjectMapper } from '@automapper/nestjs';
import { CommandHandler } from '@nestjs/cqrs';
2022-12-22 13:24:51 +00:00
import { UserMessager } from '../../adapters/secondaries/user.messager';
2022-12-14 10:37:13 +00:00
import { UsersRepository } from '../../adapters/secondaries/users.repository';
import { UpdateUserCommand } from '../../commands/update-user.command';
2022-12-16 16:31:08 +00:00
import { UpdateUserRequest } from '../dtos/update-user.request';
2022-12-14 10:37:13 +00:00
import { User } from '../entities/user';
@CommandHandler(UpdateUserCommand)
export class UpdateUserUseCase {
constructor(
private readonly _repository: UsersRepository,
2022-12-22 13:24:51 +00:00
private readonly _messager: UserMessager,
2022-12-14 10:37:13 +00:00
@InjectMapper() private readonly _mapper: Mapper,
) {}
async execute(command: UpdateUserCommand): Promise<User> {
const entity = this._mapper.map(
command.updateUserRequest,
UpdateUserRequest,
User,
);
2022-12-22 13:24:51 +00:00
const user = await this._repository.update(
command.updateUserRequest.uuid,
entity,
);
if (user) {
this._messager.publish(
'user.update',
JSON.stringify(command.updateUserRequest),
);
}
return user;
2022-12-14 10:37:13 +00:00
}
}