-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
AccountingServiceCommandHandler.java
81 lines (61 loc) · 3.53 KB
/
AccountingServiceCommandHandler.java
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
package net.chrisrichardson.ftgo.accountingservice.messaging;
import io.eventuate.sync.AggregateRepository;
import io.eventuate.tram.commands.consumer.CommandHandlers;
import io.eventuate.tram.commands.consumer.CommandMessage;
import io.eventuate.tram.sagas.participant.SagaCommandHandlersBuilder;
import net.chrisrichardson.ftgo.accountingservice.domain.*;
import net.chrisrichardson.ftgo.accountservice.api.AccountDisabledReply;
import net.chrisrichardson.ftgo.accountservice.api.AuthorizeCommand;
import net.chrisrichardson.ftgo.accountservice.api.ReverseAuthorizationCommand;
import net.chrisrichardson.ftgo.accountservice.api.ReviseAuthorization;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import static io.eventuate.tram.commands.consumer.CommandHandlerReplyBuilder.withFailure;
import static io.eventuate.tram.sagas.eventsourcingsupport.UpdatingOptionsBuilder.replyingTo;
public class AccountingServiceCommandHandler {
private Logger logger = LoggerFactory.getLogger(getClass());
@Autowired
private AggregateRepository<Account, AccountCommand> accountRepository;
public CommandHandlers commandHandlers() {
return SagaCommandHandlersBuilder
.fromChannel("accountingService")
.onMessage(AuthorizeCommand.class, this::authorize)
.onMessage(ReverseAuthorizationCommand.class, this::reverseAuthorization)
.onMessage(ReviseAuthorization.class, this::reviseAuthorization)
.build();
}
public void authorize(CommandMessage<AuthorizeCommand> cm) {
AuthorizeCommand command = cm.getCommand();
accountRepository.update(Long.toString(command.getConsumerId()),
makeAuthorizeCommandInternal(command),
replyingTo(cm)
.catching(AccountDisabledException.class, () -> withFailure(new AccountDisabledReply()))
.build());
}
public void reverseAuthorization(CommandMessage<ReverseAuthorizationCommand> cm) {
ReverseAuthorizationCommand command = cm.getCommand();
accountRepository.update(Long.toString(command.getConsumerId()),
makeReverseAuthorizeCommandInternal(command),
replyingTo(cm)
.catching(AccountDisabledException.class, () -> withFailure(new AccountDisabledReply()))
.build());
}
public void reviseAuthorization(CommandMessage<ReviseAuthorization> cm) {
ReviseAuthorization command = cm.getCommand();
accountRepository.update(Long.toString(command.getConsumerId()),
makeReviseAuthorizeCommandInternal(command),
replyingTo(cm)
.catching(AccountDisabledException.class, () -> withFailure(new AccountDisabledReply()))
.build());
}
private AuthorizeCommandInternal makeAuthorizeCommandInternal(AuthorizeCommand command) {
return new AuthorizeCommandInternal(Long.toString(command.getConsumerId()), Long.toString(command.getOrderId()), command.getOrderTotal());
}
private ReverseAuthorizationCommandInternal makeReverseAuthorizeCommandInternal(ReverseAuthorizationCommand command) {
return new ReverseAuthorizationCommandInternal(Long.toString(command.getConsumerId()), Long.toString(command.getOrderId()), command.getOrderTotal());
}
private ReviseAuthorizationCommandInternal makeReviseAuthorizeCommandInternal(ReviseAuthorization command) {
return new ReviseAuthorizationCommandInternal(Long.toString(command.getConsumerId()), Long.toString(command.getOrderId()), command.getOrderTotal());
}
}