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