-
Notifications
You must be signed in to change notification settings - Fork 505
Expand file tree
/
Copy pathRegister.java
More file actions
200 lines (189 loc) · 8.25 KB
/
Register.java
File metadata and controls
200 lines (189 loc) · 8.25 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package servlets;
import dbProcs.Getter;
import dbProcs.Setter;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.SQLException;
import jakarta.servlet.ServletException;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import jakarta.servlet.http.HttpSession;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import utils.OpenRegistration;
import utils.ShepherdLogManager;
import utils.Validate;
/**
* Control class for the Registration process. <br>
* <br>
* This file is part of the Security Shepherd Project.
*
* <p>The Security Shepherd project is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.<br>
*
* <p>The Security Shepherd project is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.<br>
*
* <p>You should have received a copy of the GNU General Public License along with the Security
* Shepherd project. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mark Denihan
*/
public class Register extends HttpServlet {
private static final long serialVersionUID = -2558345286276614261L;
private static final Logger log = LogManager.getLogger(Register.class);
private static String defaultClass = new String();
private static boolean isLoaded = false;
/**
* Initiated by register.jsp. If successful a player is added to the system, otherwise there is no
* change. Adding the player to the database is handled by the dbProcs.Setter class. Email is
* stored for future application expansion This function will request requests if the
* application's registration functionality has been marked as closed by administration.
*
* @param userName User's User Name
* @param passWord User's Password
* @param passWordConfirm Password Confirmation
* @param userAddress User's Email
* @param userAddressCnf User's Email Confirmation
*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// Setting IpAddress To Log and taking header for original IP if forwarded from
// proxy
ShepherdLogManager.setRequestIp(request.getRemoteAddr(), request.getHeader("X-Forwarded-For"));
log.debug("**** servlets.Register ***");
PrintWriter out = response.getWriter();
response.setCharacterEncoding("UTF-8");
request.setCharacterEncoding("UTF-8");
out.print(getServletInfo());
if (OpenRegistration.isEnabled()) {
HttpSession ses = request.getSession(true);
boolean notNull = false;
boolean notEmpty = false;
boolean validPasswords = false;
boolean validAddress = false;
boolean userValidate = false;
try {
log.debug("Getting ApplicationRoot");
String ApplicationRoot = getServletContext().getRealPath("");
log.debug("Servlet root = " + ApplicationRoot);
request.setCharacterEncoding("UTF-8");
log.debug("Ensuring not a CSRF");
String paramToken = (String) request.getParameter("csrfToken");
String sessToken = (String) ses.getAttribute("csrfToken");
if (paramToken.compareTo(sessToken) == 0) {
log.debug("Getting Registration Parameters");
String userName = (String) request.getParameter("userName");
log.debug("userName = " + userName);
String passWord = (String) request.getParameter("passWord");
log.debug("passWord retrieved");
String passWordConfirm = (String) request.getParameter("passWordConfirm");
log.debug("passWordConfirm retrieved");
String userAddress = (String) request.getParameter("userAddress");
log.debug("userAddress = " + userAddress);
String userAddressCnf = (String) request.getParameter("userAddressCnf");
log.debug("userAddressCnf = " + userAddressCnf);
// Validation
log.debug("Checking for nulls");
notNull = (userName != null && passWord != null);
log.debug("Ensuring strings are not empty");
notEmpty = (!userName.isEmpty() && !passWord.isEmpty());
log.debug("Validating passwords");
validPasswords = passWord.compareTo(passWordConfirm) == 0; // 0 returned if the same
log.debug("Validating addresses");
validAddress = userAddress.compareTo(userAddressCnf) == 0;
validAddress = (Validate.isValidEmailAddress(userAddress) && validAddress);
if (!validAddress) {
userAddress = new String();
}
boolean basicValidation = validPasswords && notNull && notEmpty;
if (basicValidation && !validAddress) {
userValidate = (Validate.isValidUser(userName, passWord));
} else {
userValidate = (Validate.isValidUser(userName, passWord, userAddress));
}
if (basicValidation && userValidate) {
// Data is good, Add user
// Any Class Set to Add them to?
if (!isLoaded) {
try {
defaultClass = Getter.getDefaultClass("");
isLoaded = true;
} catch (SQLException e) {
log.fatal("Could not load default class: " + e.toString());
throw new RuntimeException(e);
}
}
if (defaultClass.isEmpty()) {
log.debug("Adding player to database, with null classId");
Setter.userCreate(
ApplicationRoot, null, userName, passWord, "player", userAddress, false);
} else // defaultClass is not empty, so It must be set to a class!
{
log.debug("Adding player to database, to class " + defaultClass);
Setter.userCreate(
ApplicationRoot, defaultClass, userName, passWord, "player", userAddress, false);
}
response.sendRedirect("login.jsp");
} else {
// Validation Error Responses
if (!notNull || !notEmpty) {
log.error("Null values detected");
ses.setAttribute("errorMessage", "Invalid Request. Please try again");
} else if (!validPasswords) {
log.error("Passwords did not match");
ses.setAttribute("errorMessage", "Password fields did not match");
} else if (!validAddress) {
log.error("Invalid Addresses Detected");
ses.setAttribute("errorMessage", "Invalid Request. Please try again");
} else if (!userValidate) {
log.error("Invalid Addresses Detected");
ses.setAttribute("errorMessage", "");
}
response.sendRedirect("register.jsp");
}
} else {
log.debug("paramToken = " + paramToken);
log.debug("sessToken = " + sessToken);
}
} catch (Exception e) {
log.error("Registration Error: " + e.toString());
ses.setAttribute("errorMessage", "An error Occurred. Please try again");
response.sendRedirect("register.jsp");
}
} else {
out.write("Registration is not open");
}
log.debug("*** Register END ***");
}
/** Redirects to index.jsp */
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.sendRedirect("index.jsp");
}
public static String getDefaultClass() {
if (!isLoaded) {
try {
defaultClass = Getter.getDefaultClass("");
isLoaded = true;
} catch (SQLException e) {
log.fatal("Could not load default class: " + e.toString());
throw new RuntimeException(e);
}
}
return defaultClass;
}
public static void setDefaultClass(String theDefaultClass) {
defaultClass = theDefaultClass;
try {
Setter.setDefaultClass("", theDefaultClass);
} catch (SQLException e) {
log.fatal("Could not save default class: " + e.toString());
throw new RuntimeException(e);
}
isLoaded = true;
}
}