]> git.mxchange.org Git - juser-core.git/blob - src/org/mxchange/jusercore/model/user/LoginUser.java
sorted members + added this.
[juser-core.git] / src / org / mxchange / jusercore / model / user / LoginUser.java
1 /*
2  * Copyright (C) 2016 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jusercore.model.user;
18
19 import java.util.Calendar;
20 import java.util.Objects;
21 import javax.persistence.Basic;
22 import javax.persistence.CascadeType;
23 import javax.persistence.Column;
24 import javax.persistence.Entity;
25 import javax.persistence.EnumType;
26 import javax.persistence.Enumerated;
27 import javax.persistence.GeneratedValue;
28 import javax.persistence.GenerationType;
29 import javax.persistence.Id;
30 import javax.persistence.Index;
31 import javax.persistence.JoinColumn;
32 import javax.persistence.Lob;
33 import javax.persistence.NamedQueries;
34 import javax.persistence.NamedQuery;
35 import javax.persistence.OneToOne;
36 import javax.persistence.Table;
37 import javax.persistence.Temporal;
38 import javax.persistence.TemporalType;
39 import org.mxchange.jcontacts.contact.Contact;
40 import org.mxchange.jcontacts.contact.UserContact;
41 import org.mxchange.jusercore.model.user.profilemodes.ProfileMode;
42 import org.mxchange.jusercore.model.user.status.UserAccountStatus;
43
44 /**
45  * A generic user entity class
46  * <p>
47  * @author Roland Haeder<roland@mxchange.org>
48  */
49 @Entity (name = "users")
50 @Table (
51                 name = "users",
52                 indexes = {
53                         @Index (
54                                         name = "confirmation_key",
55                                         unique = true,
56                                         columnList = "user_confirm_key"
57                         ),
58                         @Index (
59                                         name = "user_name",
60                                         unique = true,
61                                         columnList = "user_name"
62                         )
63                 }
64 )
65 @NamedQueries (
66                 {
67                         @NamedQuery (name = "AllUserNames", query = "SELECT DISTINCT u.userName FROM users AS u ORDER BY u.userId ASC"),
68                         @NamedQuery (name = "AllEmailAddresses", query = "SELECT DISTINCT c.contactEmailAddress FROM contacts AS c INNER JOIN users AS u ON u.userContact = c ORDER BY c.contactId ASC"),
69                         @NamedQuery (name = "SearchUserName", query = "SELECT u FROM users AS u WHERE LOWER(u.userName) LIKE LOWER(:param)"),
70                         @NamedQuery (name = "SearchUserId", query = "SELECT u FROM users AS u WHERE u.userId = :id"),
71                         @NamedQuery (name = "SearchEmailAddress", query = "SELECT u FROM users AS u INNER JOIN contacts AS c ON u.userContact = c WHERE LOWER(c.contactEmailAddress) LIKE LOWER(:param)"),
72                         @NamedQuery (name = "SearchAllUsersExcept", query = "SELECT u FROM users AS u WHERE u != :user ORDER BY u.userId ASC"),
73                         @NamedQuery (name = "AllPublicUsers", query = "SELECT u FROM users AS u WHERE u.userAccountStatus = :status AND u.userProfileMode = :mode ORDER BY u.userId ASC"),
74                         @NamedQuery (name = "AllMemberPublicUsers", query = "SELECT u FROM users AS u WHERE u.userAccountStatus = :status AND u.userProfileMode IN (:public, :members) ORDER BY u.userId ASC")
75                 }
76 )
77 public class LoginUser implements User {
78
79         /**
80          * Serial number
81          */
82         private static final long serialVersionUID = 4_328_454_581_751L;
83
84         /**
85          * Last locked reason
86          */
87         @Lob
88         @Column (name = "user_last_locked_reason")
89         private String lastLockedReason;
90
91         /**
92          * Account status
93          */
94         @Basic (optional = false)
95         @Column (name = "user_account_status", nullable = false)
96         @Enumerated (value = EnumType.STRING)
97         private UserAccountStatus userAccountStatus;
98
99         /**
100          * Confirmation key
101          */
102         @Column (name = "user_confirm_key", length = 50)
103         private String userConfirmKey;
104
105         /**
106          * Id number from "contacts" table
107          */
108         @JoinColumn (name = "user_contact_id", nullable = false, updatable = false)
109         @OneToOne (targetEntity = UserContact.class, cascade = CascadeType.ALL, optional = false)
110         private Contact userContact;
111
112         /**
113          * "created" timestamp
114          */
115         @Basic (optional = false)
116         @Temporal (TemporalType.TIMESTAMP)
117         @Column (name = "user_created", nullable = false)
118         private Calendar userCreated;
119
120         /**
121          * Encrypted password
122          */
123         @Column (name = "user_encrypted_password", nullable = false)
124         private String userEncryptedPassword;
125
126         /**
127          * User id
128          */
129         @Id
130         @Column (name = "user_id", nullable = false, length = 20, updatable = false)
131         @GeneratedValue (strategy = GenerationType.IDENTITY)
132         private Long userId;
133
134         /**
135          * Last "locked" timestamp
136          */
137         @Temporal (TemporalType.TIMESTAMP)
138         @Column (name = "user_last_locked_timestamp")
139         private Calendar userLastLocked;
140
141         /**
142          * User name
143          */
144         @Column (name = "user_name", nullable = false, length = 20)
145         private String userName;
146
147         /**
148          * Profile mode of this user
149          */
150         @Basic (optional = false)
151         @Enumerated (EnumType.STRING)
152         @Column (name = "user_profile_mode", nullable = false)
153         private ProfileMode userProfileMode;
154
155         /**
156          * When this user has been updated
157          */
158         @Temporal (TemporalType.TIMESTAMP)
159         @Column (name = "user_updated")
160         private Calendar userUpdated;
161
162         /**
163          * Default constructor
164          */
165         public LoginUser () {
166                 // Default is invisible
167                 this.userProfileMode = ProfileMode.INVISIBLE;
168         }
169
170         @Override
171         public void copyAll (final User user) {
172                 // Copy also contact data
173                 this.getUserContact().copyAll(user.getUserContact());
174
175                 // Copy other data
176                 this.setUserConfirmKey(user.getUserConfirmKey());
177                 this.setUserName(user.getUserName());
178                 this.setUserEncryptedPassword(user.getUserEncryptedPassword());
179                 this.setUserAccountStatus(user.getUserAccountStatus());
180                 this.setUserCreated(user.getUserCreated());
181                 this.setUserLastLocked(user.getUserLastLocked());
182         }
183
184         @Override
185         public boolean equals (final Object object) {
186                 if (object == null) {
187                         return false;
188                 }
189                 if (this.getClass() != object.getClass()) {
190                         return false;
191                 }
192
193                 final User other = (User) object;
194
195                 return ((Objects.equals(this.getUserName(), other.getUserName())) &&
196                                 (Objects.equals(this.getUserId(), other.getUserId())));
197         }
198
199         @Override
200         public int hashCode () {
201                 int hash = 5;
202                 hash = 83 * hash + Objects.hashCode(this.getUserName());
203                 hash = 83 * hash + Objects.hashCode(this.getUserId());
204                 return hash;
205         }
206
207         @Override
208         public String getLastLockedReason () {
209                 return this.lastLockedReason;
210         }
211
212         @Override
213         public void setLastLockedReason (final String lastLockedReason) {
214                 this.lastLockedReason = lastLockedReason;
215         }
216
217         @Override
218         public UserAccountStatus getUserAccountStatus () {
219                 return this.userAccountStatus;
220         }
221
222         @Override
223         public void setUserAccountStatus (final UserAccountStatus userAccountStatus) {
224                 this.userAccountStatus = userAccountStatus;
225         }
226
227         @Override
228         public String getUserConfirmKey () {
229                 return this.userConfirmKey;
230         }
231
232         @Override
233         public void setUserConfirmKey (final String userConfirmKey) {
234                 this.userConfirmKey = userConfirmKey;
235         }
236
237         @Override
238         public Contact getUserContact () {
239                 return this.userContact;
240         }
241
242         @Override
243         public void setUserContact (final Contact userContact) {
244                 this.userContact = userContact;
245         }
246
247         @Override
248         public Calendar getUserCreated () {
249                 return this.userCreated;
250         }
251
252         @Override
253         public void setUserCreated (final Calendar userCreated) {
254                 this.userCreated = userCreated;
255         }
256
257         @Override
258         public String getUserEncryptedPassword () {
259                 return this.userEncryptedPassword;
260         }
261
262         @Override
263         public void setUserEncryptedPassword (final String userEncryptedPassword) {
264                 this.userEncryptedPassword = userEncryptedPassword;
265         }
266
267         @Override
268         public Long getUserId () {
269                 return this.userId;
270         }
271
272         @Override
273         public void setUserId (final Long userId) {
274                 this.userId = userId;
275         }
276
277         @Override
278         public Calendar getUserLastLocked () {
279                 return this.userLastLocked;
280         }
281
282         @Override
283         public void setUserLastLocked (final Calendar userLastLocked) {
284                 this.userLastLocked = userLastLocked;
285         }
286
287         @Override
288         public String getUserName () {
289                 return this.userName;
290         }
291
292         @Override
293         public void setUserName (final String userName) {
294                 this.userName = userName;
295         }
296
297         @Override
298         public ProfileMode getUserProfileMode () {
299                 return this.userProfileMode;
300         }
301
302         @Override
303         public void setUserProfileMode (final ProfileMode userProfileMode) {
304                 this.userProfileMode = userProfileMode;
305         }
306
307         @Override
308         public Calendar getUserUpdated () {
309                 return this.userUpdated;
310         }
311
312         @Override
313         public void setUserUpdated (final Calendar userUpdated) {
314                 this.userUpdated = userUpdated;
315         }
316
317 }