forked from solid-connection/solid-connect-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSiteUser.java
More file actions
141 lines (120 loc) · 4.39 KB
/
SiteUser.java
File metadata and controls
141 lines (120 loc) · 4.39 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package com.example.solidconnection.siteuser.domain;
import com.example.solidconnection.community.comment.domain.Comment;
import com.example.solidconnection.community.post.domain.Post;
import com.example.solidconnection.community.post.domain.PostLike;
import com.example.solidconnection.score.domain.GpaScore;
import com.example.solidconnection.score.domain.LanguageTestScore;
import com.example.solidconnection.type.PreparationStatus;
import com.example.solidconnection.type.Role;
import jakarta.persistence.CascadeType;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.EnumType;
import jakarta.persistence.Enumerated;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.OneToMany;
import jakarta.persistence.Table;
import jakarta.persistence.UniqueConstraint;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Entity
@AllArgsConstructor
@Table(uniqueConstraints = {
@UniqueConstraint(
name = "uk_site_user_email_auth_type",
columnNames = {"email", "auth_type"}
)
})
public class SiteUser {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Column(name = "email", nullable = false, length = 100)
private String email;
@Column(name = "auth_type", nullable = false, length = 100)
@Enumerated(EnumType.STRING)
private AuthType authType;
@Setter
@Column(nullable = false, length = 100)
private String nickname;
@Setter
@Column(length = 500)
private String profileImageUrl;
@Column(nullable = false)
@Enumerated(EnumType.STRING)
private PreparationStatus preparationStage;
@Column(nullable = false)
@Enumerated(EnumType.STRING)
private Role role;
@Setter
private LocalDateTime nicknameModifiedAt;
@Setter
private LocalDate quitedAt;
@Column(nullable = true)
private String password;
@OneToMany(mappedBy = "siteUser", cascade = CascadeType.ALL, orphanRemoval = true)
private List<Post> postList = new ArrayList<>();
@OneToMany(mappedBy = "siteUser", cascade = CascadeType.ALL)
private List<Comment> commentList = new ArrayList<>();
@OneToMany(mappedBy = "siteUser", cascade = CascadeType.ALL, orphanRemoval = true)
private List<PostLike> postLikeList = new ArrayList<>();
@OneToMany(mappedBy = "siteUser", cascade = CascadeType.ALL, orphanRemoval = true)
private List<LanguageTestScore> languageTestScoreList = new ArrayList<>();
@OneToMany(mappedBy = "siteUser", cascade = CascadeType.ALL, orphanRemoval = true)
private List<GpaScore> gpaScoreList = new ArrayList<>();
public SiteUser(
String email,
String nickname,
String profileImageUrl,
PreparationStatus preparationStage,
Role role) {
this.email = email;
this.nickname = nickname;
this.profileImageUrl = profileImageUrl;
this.preparationStage = preparationStage;
this.role = role;
this.authType = AuthType.KAKAO;
}
public SiteUser(
String email,
String nickname,
String profileImageUrl,
PreparationStatus preparationStage,
Role role,
AuthType authType) {
this.email = email;
this.nickname = nickname;
this.profileImageUrl = profileImageUrl;
this.preparationStage = preparationStage;
this.role = role;
this.authType = authType;
}
// todo: 가입 방법에 따라서 정해진 인자만 받고, 그렇지 않을 경우 예외 발생하도록 수정 필요
public SiteUser(
String email,
String nickname,
String profileImageUrl,
PreparationStatus preparationStage,
Role role,
AuthType authType,
String password) {
this.email = email;
this.nickname = nickname;
this.profileImageUrl = profileImageUrl;
this.preparationStage = preparationStage;
this.role = role;
this.authType = authType;
this.password = password;
}
}