-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAsyncProjectServiceImpl.java
80 lines (71 loc) · 3.23 KB
/
AsyncProjectServiceImpl.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
package life.qbic.projectmanagement.application.api;
import java.util.Objects;
import java.util.function.Supplier;
import life.qbic.projectmanagement.application.ProjectInformationService;
import life.qbic.projectmanagement.domain.model.project.ProjectId;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.lang.NonNull;
import org.springframework.security.core.context.ReactiveSecurityContextHolder;
import org.springframework.security.core.context.SecurityContext;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.stereotype.Service;
import reactor.core.publisher.Mono;
import reactor.core.scheduler.Scheduler;
/**
* <b><class short description - 1 Line!></b>
*
* <p><More detailed description - When to use, what it solves, etc.></p>
*
* @since <version tag>
*/
@Service
public class AsyncProjectServiceImpl implements AsyncProjectService {
private final ProjectInformationService projectService;
private final Scheduler scheduler;
public AsyncProjectServiceImpl(@Autowired ProjectInformationService projectService,
@Autowired Scheduler scheduler) {
this.projectService = Objects.requireNonNull(projectService);
this.scheduler = Objects.requireNonNull(scheduler);
}
@Override
public Mono<ProjectUpdateResponse> update(@NonNull ProjectUpdateRequest request)
throws UnknownRequestException, RequestFailedException, AccessDeniedException {
var projectId = request.projectId();
switch (request.requestBody()) {
case ProjectDesign design:
return
withSecurityContext(SecurityContextHolder.getContext(),
() -> updateProjectDesign(projectId, design)).subscribeOn(scheduler);
default:
return Mono.error(new UnknownRequestException("Invalid request body"));
}
}
/*
Configures and writes the provided security context for a supplier of type Mono<ProjectUpdateResponse>. Without
the context written to the reactive stream, services that have access control methods will fail.
*/
private Mono<ProjectUpdateResponse> withSecurityContext(SecurityContext sctx,
Supplier<Mono<ProjectUpdateResponse>> supplier) {
var rcontext = ReactiveSecurityContextHolder.withSecurityContext(Mono.just(sctx));
return ReactiveSecurityContextHolder.getContext().flatMap(securityContext1 -> {
SecurityContextHolder.setContext(securityContext1);
return supplier.get();
}).contextWrite(rcontext);
}
private Mono<ProjectUpdateResponse> updateProjectDesign(String projectId, ProjectDesign design) {
return Mono.create(sink -> {
try {
var id = ProjectId.parse(projectId);
projectService.updateTitle(id, design.title());
projectService.updateObjective(id, design.objective());
sink.success(new ProjectUpdateResponse(projectId, design));
} catch (IllegalArgumentException e) {
sink.error(new RequestFailedException("Invalid project id: " + projectId));
} catch (org.springframework.security.access.AccessDeniedException e) {
sink.error(new AccessDeniedException("Access denied"));
} catch (RuntimeException e) {
sink.error(new RequestFailedException("Update project design failed", e));
}
});
}
}