|
| 1 | +package com.tnt.application.pt; |
| 2 | + |
| 3 | +import static com.tnt.global.error.model.ErrorMessage.PT_TRAINEE_ALREADY_EXIST; |
| 4 | +import static com.tnt.global.error.model.ErrorMessage.PT_TRAINER_TRAINEE_ALREADY_EXIST; |
| 5 | +import static java.util.Objects.isNull; |
| 6 | + |
| 7 | +import java.time.LocalDate; |
| 8 | +import java.util.List; |
| 9 | + |
| 10 | +import org.springframework.stereotype.Service; |
| 11 | +import org.springframework.transaction.annotation.Transactional; |
| 12 | + |
| 13 | +import com.tnt.application.trainee.TraineeService; |
| 14 | +import com.tnt.application.trainer.TrainerService; |
| 15 | +import com.tnt.domain.member.Member; |
| 16 | +import com.tnt.domain.pt.PtTrainerTrainee; |
| 17 | +import com.tnt.domain.trainee.PtGoal; |
| 18 | +import com.tnt.domain.trainee.Trainee; |
| 19 | +import com.tnt.domain.trainer.Trainer; |
| 20 | +import com.tnt.dto.trainer.ConnectWithTrainerDto; |
| 21 | +import com.tnt.dto.trainer.request.ConnectWithTrainerRequest; |
| 22 | +import com.tnt.dto.trainer.response.ConnectWithTraineeResponse; |
| 23 | +import com.tnt.global.error.exception.ConflictException; |
| 24 | +import com.tnt.global.error.exception.NotFoundException; |
| 25 | +import com.tnt.global.error.model.ErrorMessage; |
| 26 | +import com.tnt.infrastructure.mysql.repository.pt.PtTrainerTraineeRepository; |
| 27 | +import com.tnt.infrastructure.mysql.repository.trainee.PtGoalRepository; |
| 28 | + |
| 29 | +import lombok.RequiredArgsConstructor; |
| 30 | + |
| 31 | +@Service |
| 32 | +@Transactional(readOnly = true) |
| 33 | +@RequiredArgsConstructor |
| 34 | +public class PtService { |
| 35 | + |
| 36 | + private final TraineeService traineeService; |
| 37 | + private final TrainerService trainerService; |
| 38 | + private final PtTrainerTraineeRepository ptTrainerTraineeRepository; |
| 39 | + private final PtGoalRepository ptGoalRepository; |
| 40 | + |
| 41 | + @Transactional |
| 42 | + public ConnectWithTrainerDto connectWithTrainer(String memberId, ConnectWithTrainerRequest request) { |
| 43 | + Trainer trainer = trainerService.getTrainerWithInvitationCode(request.invitationCode()); |
| 44 | + Trainee trainee = traineeService.getTraineeWithMemberId(memberId); |
| 45 | + |
| 46 | + validateNotAlreadyConnected(trainer.getId(), trainee.getId()); |
| 47 | + |
| 48 | + PtTrainerTrainee ptTrainerTrainee = PtTrainerTrainee.builder() |
| 49 | + .trainerId(trainer.getId()) |
| 50 | + .traineeId(trainee.getId()) |
| 51 | + .startedAt(request.startDate()) |
| 52 | + .finishedPtCount(request.finishedPtCount()) |
| 53 | + .totalPtCount(request.totalPtCount()) |
| 54 | + .build(); |
| 55 | + |
| 56 | + ptTrainerTraineeRepository.save(ptTrainerTrainee); |
| 57 | + |
| 58 | + Member trainerMember = trainer.getMember(); // fetch join 으로 가져온 member |
| 59 | + Member traineeMember = trainee.getMember(); // fetch join 으로 가져온 member |
| 60 | + |
| 61 | + return new ConnectWithTrainerDto(trainerMember.getFcmToken(), trainerMember.getName(), traineeMember.getName(), |
| 62 | + trainerMember.getProfileImageUrl(), traineeMember.getProfileImageUrl(), trainer.getId(), trainee.getId()); |
| 63 | + } |
| 64 | + |
| 65 | + public ConnectWithTraineeResponse getFirstTrainerTraineeConnect(String memberId, String trainerId, |
| 66 | + String traineeId) { |
| 67 | + validateIfNotConnected(trainerId, traineeId); |
| 68 | + |
| 69 | + Trainer trainer = trainerService.getTrainerWithMemberId(memberId); |
| 70 | + Trainee trainee = traineeService.getTraineeWithId(traineeId); |
| 71 | + |
| 72 | + Member trainerMember = trainer.getMember(); // fetch join 으로 가져온 member |
| 73 | + Member traineeMember = trainee.getMember(); // fetch join 으로 가져온 member |
| 74 | + |
| 75 | + String traineeAge = calculateCurrentAge(traineeMember.getBirthday()); |
| 76 | + |
| 77 | + List<PtGoal> ptGoals = ptGoalRepository.findAllByTraineeId(Long.valueOf(traineeId)); |
| 78 | + String ptGoal = getPtGoals(ptGoals); |
| 79 | + |
| 80 | + return new ConnectWithTraineeResponse(trainerMember.getName(), traineeMember.getName(), |
| 81 | + trainerMember.getProfileImageUrl(), traineeMember.getProfileImageUrl(), traineeAge, trainee.getHeight(), |
| 82 | + trainee.getWeight(), ptGoal, trainee.getCautionNote()); |
| 83 | + } |
| 84 | + |
| 85 | + private void validateNotAlreadyConnected(Long trainerId, Long traineeId) { |
| 86 | + ptTrainerTraineeRepository.findByTraineeIdAndDeletedAtIsNull(traineeId) |
| 87 | + .ifPresent(pt -> { // 이미 다른 트레이너와 연결 중인지 확인 |
| 88 | + throw new ConflictException(PT_TRAINEE_ALREADY_EXIST); |
| 89 | + }); |
| 90 | + |
| 91 | + ptTrainerTraineeRepository.findByTrainerIdAndTraineeIdAndDeletedAtIsNull(trainerId, traineeId) |
| 92 | + .ifPresent(pt -> { // 이미 해당 트레이너와 연결 중인지 확인 |
| 93 | + throw new ConflictException(PT_TRAINER_TRAINEE_ALREADY_EXIST); |
| 94 | + }); |
| 95 | + } |
| 96 | + |
| 97 | + private void validateIfNotConnected(String trainerId, String traineeId) { |
| 98 | + ptTrainerTraineeRepository.findByTrainerIdAndTraineeIdAndDeletedAtIsNull(Long.valueOf(trainerId), |
| 99 | + Long.valueOf(traineeId)) |
| 100 | + .orElseThrow(() -> new NotFoundException(ErrorMessage.PT_TRAINER_TRAINEE_NOT_FOUND)); |
| 101 | + } |
| 102 | + |
| 103 | + private String calculateCurrentAge(LocalDate birthDay) { |
| 104 | + if (isNull(birthDay)) { |
| 105 | + return "비공개"; |
| 106 | + } |
| 107 | + |
| 108 | + LocalDate currentDate = LocalDate.now(); |
| 109 | + int age = currentDate.getYear() - birthDay.getYear(); |
| 110 | + |
| 111 | + // 생일이 아직 지나지 않았으면 나이를 1 줄임 |
| 112 | + if (currentDate.isBefore(birthDay.withYear(currentDate.getYear()))) { |
| 113 | + age--; |
| 114 | + } |
| 115 | + |
| 116 | + return String.valueOf(age); |
| 117 | + } |
| 118 | + |
| 119 | + private String getPtGoals(List<PtGoal> ptGoals) { |
| 120 | + StringBuilder sb = new StringBuilder(); |
| 121 | + |
| 122 | + for (int i = 0; i < ptGoals.size(); i++) { |
| 123 | + sb.append(ptGoals.get(i).getContent()); |
| 124 | + |
| 125 | + if (i != ptGoals.size() - 1) { |
| 126 | + sb.append(", "); |
| 127 | + } |
| 128 | + } |
| 129 | + |
| 130 | + return sb.toString(); |
| 131 | + } |
| 132 | +} |
0 commit comments