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
123 lines (107 loc) · 3.41 KB
/
SiteUser.java
File metadata and controls
123 lines (107 loc) · 3.41 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
package com.example.solidconnection.siteuser.domain;
import com.example.solidconnection.common.BaseEntity;
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.Table;
import jakarta.persistence.UniqueConstraint;
import java.time.LocalDate;
import java.time.LocalDateTime;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Entity
@AllArgsConstructor
@Table(uniqueConstraints = {
@UniqueConstraint(
name = "uk_site_user_email_auth_type",
columnNames = {"email", "auth_type"}
),
@UniqueConstraint(
name = "uk_site_user_nickname",
columnNames = {"nickname"}
)
})
public class SiteUser extends BaseEntity {
@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 ExchangeStatus exchangeStatus;
@Column(nullable = false)
@Enumerated(EnumType.STRING)
private Role role;
@Setter
private LocalDateTime nicknameModifiedAt;
@Setter
private LocalDate quitedAt;
@Column(nullable = true)
private String password;
public SiteUser(
String email,
String nickname,
String profileImageUrl,
ExchangeStatus exchangeStatus,
Role role) {
this.email = email;
this.nickname = nickname;
this.profileImageUrl = profileImageUrl;
this.exchangeStatus = exchangeStatus;
this.role = role;
this.authType = AuthType.KAKAO;
}
public SiteUser(
String email,
String nickname,
String profileImageUrl,
ExchangeStatus exchangeStatus,
Role role,
AuthType authType) {
this.email = email;
this.nickname = nickname;
this.profileImageUrl = profileImageUrl;
this.exchangeStatus = exchangeStatus;
this.role = role;
this.authType = authType;
}
// todo: 가입 방법에 따라서 정해진 인자만 받고, 그렇지 않을 경우 예외 발생하도록 수정 필요
public SiteUser(
String email,
String nickname,
String profileImageUrl,
ExchangeStatus exchangeStatus,
Role role,
AuthType authType,
String password) {
this.email = email;
this.nickname = nickname;
this.profileImageUrl = profileImageUrl;
this.exchangeStatus = exchangeStatus;
this.role = role;
this.authType = authType;
this.password = password;
}
public void updatePassword(String newEncodedPassword) {
this.password = newEncodedPassword;
}
}