]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/main/Signup.java
assert a minimum age while signup
[gigi.git] / src / org / cacert / gigi / pages / main / Signup.java
1 package org.cacert.gigi.pages.main;
2
3 import java.io.IOException;
4 import java.io.PrintWriter;
5 import java.sql.SQLException;
6 import java.util.HashMap;
7 import java.util.Map;
8
9 import javax.servlet.http.HttpServletRequest;
10
11 import org.cacert.gigi.GigiApiException;
12 import org.cacert.gigi.database.GigiPreparedStatement;
13 import org.cacert.gigi.database.GigiResultSet;
14 import org.cacert.gigi.dbObjects.Name;
15 import org.cacert.gigi.dbObjects.User;
16 import org.cacert.gigi.email.EmailProvider;
17 import org.cacert.gigi.localisation.Language;
18 import org.cacert.gigi.output.DateSelector;
19 import org.cacert.gigi.output.template.Form;
20 import org.cacert.gigi.output.template.Template;
21 import org.cacert.gigi.pages.Page;
22 import org.cacert.gigi.util.CalendarUtil;
23 import org.cacert.gigi.util.HTMLEncoder;
24 import org.cacert.gigi.util.Notary;
25 import org.cacert.gigi.util.PasswordStrengthChecker;
26
27 public class Signup extends Form {
28
29     Name buildupName = new Name("", "", "", "");
30
31     String email = "";
32
33     private Template t;
34
35     boolean general = true, country = true, regional = true, radius = true;
36
37     public Signup(HttpServletRequest hsr) {
38         super(hsr);
39         t = new Template(Signup.class.getResource("Signup.templ"));
40     }
41
42     DateSelector myDoB = new DateSelector("day", "month", "year");
43
44     @Override
45     public void outputContent(PrintWriter out, Language l, Map<String, Object> outerVars) {
46         HashMap<String, Object> vars = new HashMap<String, Object>();
47         vars.put("fname", HTMLEncoder.encodeHTML(buildupName.getFname()));
48         vars.put("mname", HTMLEncoder.encodeHTML(buildupName.getMname()));
49         vars.put("lname", HTMLEncoder.encodeHTML(buildupName.getLname()));
50         vars.put("suffix", HTMLEncoder.encodeHTML(buildupName.getSuffix()));
51         vars.put("dob", myDoB);
52         vars.put("email", HTMLEncoder.encodeHTML(email));
53         vars.put("general", general ? " checked=\"checked\"" : "");
54         vars.put("country", country ? " checked=\"checked\"" : "");
55         vars.put("regional", regional ? " checked=\"checked\"" : "");
56         vars.put("radius", radius ? " checked=\"checked\"" : "");
57         vars.put("helpOnNames", String.format(l.getTranslation("Help on Names %sin the wiki%s"), "<a href=\"//wiki.cacert.org/FAQ/HowToEnterNamesInJoinForm\" target=\"_blank\">", "</a>"));
58         vars.put("csrf", getCSRFToken());
59         t.output(out, l, vars);
60     }
61
62     private void update(HttpServletRequest r) {
63         String fname = buildupName.getFname();
64         String lname = buildupName.getLname();
65         String mname = buildupName.getMname();
66         String suffix = buildupName.getSuffix();
67         if (r.getParameter("fname") != null) {
68             fname = r.getParameter("fname");
69         }
70         if (r.getParameter("lname") != null) {
71             lname = r.getParameter("lname");
72         }
73         if (r.getParameter("mname") != null) {
74             mname = r.getParameter("mname");
75         }
76         if (r.getParameter("suffix") != null) {
77             suffix = r.getParameter("suffix");
78         }
79         if (r.getParameter("email") != null) {
80             email = r.getParameter("email");
81         }
82         buildupName = new Name(fname, lname, mname, suffix);
83         general = "1".equals(r.getParameter("general"));
84         country = "1".equals(r.getParameter("country"));
85         regional = "1".equals(r.getParameter("regional"));
86         radius = "1".equals(r.getParameter("radius"));
87         try {
88             myDoB.update(r);
89         } catch (GigiApiException e) {
90         }
91     }
92
93     @Override
94     public synchronized boolean submit(PrintWriter out, HttpServletRequest req) {
95         update(req);
96         if (buildupName.getLname().trim().equals("")) {
97             outputError(out, req, "Last name were blank.");
98         }
99         if ( !myDoB.isValid()) {
100             outputError(out, req, "Invalid date of birth");
101         }
102
103         if ( !CalendarUtil.isOfAge(myDoB.getDate(), User.MINIMUM_AGE)) {
104             outputError(out, req, "Entered dated of birth is below the restricted age requirements.");
105         }
106
107         if ( !"1".equals(req.getParameter("tos_agree"))) {
108             outputError(out, req, "Acceptance of the ToS is required to continue.");
109         }
110         if (email.equals("")) {
111             outputError(out, req, "Email Address was blank");
112         }
113         String pw1 = req.getParameter("pword1");
114         String pw2 = req.getParameter("pword2");
115         if (pw1 == null || pw1.equals("")) {
116             outputError(out, req, "Pass Phrases were blank");
117         } else if ( !pw1.equals(pw2)) {
118             outputError(out, req, "Pass Phrases don't match");
119         }
120         int pwpoints = PasswordStrengthChecker.checkpw(pw1, buildupName, email);
121         if (pwpoints < 3) {
122             outputError(out, req, "The Pass Phrase you submitted failed to contain enough" + " differing characters and/or contained words from" + " your name and/or email address.");
123         }
124         if (isFailed(out)) {
125             return false;
126         }
127         try (GigiPreparedStatement q1 = new GigiPreparedStatement("SELECT * FROM `emails` WHERE `email`=? AND `deleted` IS NULL"); GigiPreparedStatement q2 = new GigiPreparedStatement("SELECT * FROM `certOwners` INNER JOIN `users` ON `users`.`id`=`certOwners`.`id` WHERE `email`=? AND `deleted` IS NULL")) {
128             q1.setString(1, email);
129             q2.setString(1, email);
130             GigiResultSet r1 = q1.executeQuery();
131             GigiResultSet r2 = q2.executeQuery();
132             if (r1.next() || r2.next()) {
133                 outputError(out, req, "This email address is currently valid in the system.");
134             }
135         }
136         try (GigiPreparedStatement q3 = new GigiPreparedStatement("SELECT `domain` FROM `baddomains` WHERE `domain`=RIGHT(?, LENGTH(`domain`))")) {
137             q3.setString(1, email);
138
139             GigiResultSet r3 = q3.executeQuery();
140             if (r3.next()) {
141                 String domain = r3.getString(1);
142                 outputError(out, req, "We don't allow signups from people using email addresses from %s", domain);
143             }
144         }
145         String mailResult = EmailProvider.FAIL;
146         try {
147             mailResult = HTMLEncoder.encodeHTML(EmailProvider.getInstance().checkEmailServer(0, email));
148         } catch (IOException e) {
149         }
150         if ( !mailResult.equals(EmailProvider.OK)) {
151             if (mailResult.startsWith("4")) {
152                 outputError(out, req, "The mail server responsible for your domain indicated" + " a temporary failure. This may be due to anti-SPAM measures, such" + " as greylisting. Please try again in a few minutes.");
153             } else {
154                 outputError(out, req, "Email Address given was invalid, or a test connection" + " couldn't be made to your server, or the server" + " rejected the email address as invalid");
155             }
156             if (mailResult.equals(EmailProvider.FAIL)) {
157                 outputError(out, req, "Failed to make a connection to the mail server");
158             } else {
159                 outputErrorPlain(out, mailResult);
160             }
161         }
162
163         if (isFailed(out)) {
164             return false;
165         }
166         if (RegisterPage.RATE_LIMIT.isLimitExceeded(req.getRemoteAddr())) {
167             outputError(out, req, "Rate Limit Exceeded");
168             return false;
169         }
170         try {
171             run(req, pw1);
172         } catch (SQLException e) {
173             e.printStackTrace();
174         } catch (GigiApiException e) {
175             e.format(out, Page.getLanguage(req));
176             return false;
177         }
178         return true;
179     }
180
181     private void run(HttpServletRequest req, String password) throws SQLException, GigiApiException {
182         User u = new User(email, password, buildupName, myDoB.getDate(), Page.getLanguage(req).getLocale());
183
184         try (GigiPreparedStatement ps = new GigiPreparedStatement("INSERT INTO `alerts` SET `memid`=?," + " `general`=?, `country`=?, `regional`=?, `radius`=?")) {
185             ps.setInt(1, u.getId());
186             ps.setBoolean(2, general);
187             ps.setBoolean(3, country);
188             ps.setBoolean(4, regional);
189             ps.setBoolean(5, radius);
190             ps.execute();
191         }
192         Notary.writeUserAgreement(u, "ToS", "account creation", "", true, 0);
193
194     }
195 }