fix plan-users persist on clone

This commit is contained in:
CITE\spapacharalampous 2024-07-17 14:48:45 +03:00
parent bb880632c2
commit 788cef46cd
1 changed files with 14 additions and 11 deletions

View File

@ -18,6 +18,7 @@ import gr.cite.tools.validation.ValidationFailure;
import gr.cite.tools.validation.ValidatorFactory;
import jakarta.xml.bind.JAXBException;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.opencdmp.authorization.AuthorizationFlags;
import org.opencdmp.authorization.Permission;
import org.opencdmp.authorization.authorizationcontentresolver.AuthorizationContentResolver;
@ -734,19 +735,21 @@ public class PlanServiceImpl implements PlanService {
.collect();
UUID currentUserId = this.userScope.getUserId();
boolean currentUserIsInPlan = planUsers.stream().anyMatch(u -> u.getUserId() == currentUserId);
if (!currentUserIsInPlan) {
PlanUserEntity newUser = new PlanUserEntity();
newUser.setId(UUID.randomUUID());
newUser.setPlanId(newPlan.getId());
newUser.setUserId(currentUserId);
newUser.setRole(PlanUserRole.Owner);
newUser.setCreatedAt(Instant.now());
newUser.setUpdatedAt(Instant.now());
newUser.setIsActive(IsActive.Active);
this.entityManager.persist(newUser);
boolean isCurrentUserInPlan = planUsers.stream().anyMatch(u -> u.getUserId().equals(currentUserId));
if (!isCurrentUserInPlan) {
this.addOwner(newPlan);
} else {
PlanUserEntity currentPlanUser = planUsers.stream().filter(u -> u.getUserId().equals(currentUserId)).toList().getFirst();
boolean isCurrentUserOwner = PlanUserRole.Owner.equals(currentPlanUser.getRole());
if (!isCurrentUserOwner) {
planUsers.remove(currentPlanUser);
this.addOwner(newPlan);
}
}
for (PlanUserEntity planUser : planUsers) {
PlanUserEntity newUser = new PlanUserEntity();
newUser.setId(UUID.randomUUID());