Skip to content

Instantly share code, notes, and snippets.

@Miczeq22
Created July 1, 2020 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Miczeq22/6641edfc7ddd83b962bcda5803dbf7ca to your computer and use it in GitHub Desktop.
Save Miczeq22/6641edfc7ddd83b962bcda5803dbf7ca to your computer and use it in GitHub Desktop.
interface Dependencies {
customerRepository: CustomerRepository;
}
class RegisterCustomerCommandHandler extends CommandHandler<
RegisterCustomerCommand
> {
constructor(private readonly dependencies: Dependencies) {
super(REGISTER_CUSTOMER_COMMAND_TYPE);
}
public async execute({ payload }: RegisterCustomerCommand) {
const { customerRepository } = this.dependencies;
const { email } = payload;
const existingUser = await customerRepository.findByEmail(email);
if (existingUser) {
throw new Error(`User with email: "${email}" already exist.`);
}
await customerRepository.insert(payload);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment