-
Notifications
You must be signed in to change notification settings - Fork 2
/
Participant.java
91 lines (75 loc) · 2.85 KB
/
Participant.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
82
83
84
85
86
87
88
89
90
91
package com.amorgakco.backend.participant.domain;
import com.amorgakco.backend.global.BaseTime;
import com.amorgakco.backend.global.exception.IllegalAccessException;
import com.amorgakco.backend.group.domain.Group;
import com.amorgakco.backend.member.domain.Member;
import jakarta.persistence.Entity;
import jakarta.persistence.EnumType;
import jakarta.persistence.Enumerated;
import jakarta.persistence.FetchType;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.ManyToOne;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.NoArgsConstructor;
import java.util.Objects;
@Entity
@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
public class Participant extends BaseTime {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn
private Member member;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn
private Group group;
@Enumerated(EnumType.STRING)
private LocationVerificationStatus locationVerificationStatus;
public Participant(final Member member) {
this.member = member;
this.locationVerificationStatus = LocationVerificationStatus.UNVERIFIED;
}
@Override
public boolean equals(final Object o) {
if (this==o) return true;
if (o==null || getClass()!=o.getClass()) return false;
final Participant that = (Participant) o;
return Objects.equals(getMember().getId(), that.getMember().getId());
}
@Override
public int hashCode() {
return Objects.hash(getMember().getId());
}
public void verify(final double longitude, final double latitude) {
if (isVerified()) {
throw IllegalAccessException.verificationDuplicated();
}
group.verifyLocation(longitude, latitude);
this.locationVerificationStatus = LocationVerificationStatus.VERIFIED;
}
private boolean isVerified() {
return this.locationVerificationStatus.equals(LocationVerificationStatus.VERIFIED);
}
public void add(final Group group) {
this.group = group;
}
public Integer increaseTemperature(final Participant requestParticipant) {
requestParticipant.validateSameGroupParticipant(this);
return member.increaseMoGakCoTemperature();
}
private void validateSameGroupParticipant(final Participant targetParticipant) {
if (!Objects.equals(this.group.getId(), targetParticipant.getGroup().getId())) {
throw IllegalAccessException.notSameGroupParticipant();
}
}
public Integer decreaseTemperature(final Participant requestParticipant) {
requestParticipant.validateSameGroupParticipant(this);
return member.decreaseMoGakCoTemperature();
}
}